Browse Source

修改盘点

intex_online20250327
lijuncheng 3 weeks ago
parent
commit
052f792614
  1. 1
      src/api/httpRequest3.js
  2. 51
      src/common/balance.js
  3. 3
      src/mycomponents/scan/winComScanBalance.vue
  4. 3
      src/mycomponents/scan/winComScanBalanceLocation.vue
  5. 6
      src/mycomponents/scan/winScanPackAndLocation.vue
  6. 1
      src/mycomponents/scan/winScanPackAndLocationNoShow.vue
  7. 17
      src/pages/count/coms/comCountJobCard.vue
  8. 119
      src/pages/count/job/countLightDetail.vue

1
src/api/httpRequest3.js

@ -113,7 +113,6 @@ function service(options = {}) {
})
// #endif
// #ifdef H5
console.log("网s络H5", navigator.onLine)
if (navigator.onLine) {
uni.request(options);
} else {

51
src/common/balance.js

@ -132,7 +132,7 @@ export async function getManagementPrecisions(itemCodes, locationCode, callback)
})
}
//通过父包装查询
export function getBalanceByManagementPrecisionByPacking(label, packageInfo,locationCode, fromInventoryStatuses, callback) {
export function getBalanceByManagementPrecisionByPacking(label, packageInfo,locationCode, fromInventoryStatuses, pdaCountBalanceQuery,callback) {
let result = {
list: [],
success: true,
@ -147,25 +147,25 @@ export function getBalanceByManagementPrecisionByPacking(label, packageInfo,loca
let managementPrecision = res.data[0].ManagementPrecision;
switch (managementPrecision) {
case 'BY_PACKAGING':
byPacking(label, packageInfo,locationCode, fromInventoryStatuses, res => {
byPacking(label, packageInfo,locationCode, fromInventoryStatuses,pdaCountBalanceQuery, res => {
res.managementPrecision = managementPrecision;
callback(res);
});
break;
case 'BY_BATCH':
byBatch(label, locationCode, fromInventoryStatuses, res => {
byBatch(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, res => {
res.managementPrecision = managementPrecision;
callback(res);
});
break;
case 'BY_QUANTITY':
byQuantity(label, locationCode, fromInventoryStatuses, res => {
byQuantity(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, res => {
res.managementPrecision = managementPrecision;
callback(res);
});
break;
case 'BY_UNIQUEID':
byUniqueId(label, fromInventoryStatuses, res => {
byUniqueId(label, fromInventoryStatuses,pdaCountBalanceQuery, res => {
res.managementPrecision = managementPrecision;
callback(res);
});
@ -234,7 +234,7 @@ export function getBalanceByManagementPrecision(label,locationCode, fromInventor
* @param {Object} locationCode
* @param {Object} callback
*/
export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses, callback) {
export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses,pdaCountBalanceQuery, callback) {
let result = {
success: true,
message: '',
@ -281,7 +281,14 @@ export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses
value: status
})
}
if(pdaCountBalanceQuery){
filters.push({
column: "pdaCountBalanceQuery",
action: "==",
value: "true"
})
}
var params = {
@ -315,7 +322,7 @@ export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses
* @param {Object} locationCode
* @param {Object} callback
*/
export function byBatch(label, locationCode, fromInventoryStatuses, callback) {
export function byBatch(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, callback) {
var filters = []
filters.push({
column: "itemCode",
@ -346,6 +353,14 @@ export function byBatch(label, locationCode, fromInventoryStatuses, callback) {
value: status
})
}
if(pdaCountBalanceQuery){
filters.push({
column: "pdaCountBalanceQuery",
action: "==",
value: "true"
})
}
var params = {
filters: filters,
@ -382,7 +397,7 @@ export function byBatch(label, locationCode, fromInventoryStatuses, callback) {
* @param {Object} locationCode
* @param {Object} callback
*/
export function byQuantity(label, locationCode, fromInventoryStatuses, callback) {
export function byQuantity(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, callback) {
let result = {
success: true,
message: '',
@ -419,6 +434,14 @@ export function byQuantity(label, locationCode, fromInventoryStatuses, callback)
value: status
})
}
if(pdaCountBalanceQuery){
filters.push({
column: "pdaCountBalanceQuery",
action: "==",
value: "true"
})
}
var params = {
filters: filters,
@ -449,7 +472,7 @@ export function byQuantity(label, locationCode, fromInventoryStatuses, callback)
* @param {Object} locationCode
* @param {Object} callback
*/
export function byUniqueId(label, locationCode, fromInventoryStatuses, callback) {
export function byUniqueId(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, callback) {
let param = {
packingNumber: label.packingNumber
};
@ -474,6 +497,14 @@ export function byUniqueId(label, locationCode, fromInventoryStatuses, callback)
value: status
})
}
if(pdaCountBalanceQuery){
filters.push({
column: "pdaCountBalanceQuery",
action: "==",
value: "true"
})
}
var params = {
filters: filters,

3
src/mycomponents/scan/winComScanBalance.vue

@ -28,9 +28,6 @@
<script>
import winComScan from '@/mycomponents/scan/winComScan.vue'
import balanceSelect from '@/mycomponents/balance/balanceSelect.vue'
import {
getBalanceByManagementPrecisionByPacking,
} from '@/common/balance.js';
import {
getBalanceByParams,

3
src/mycomponents/scan/winComScanBalanceLocation.vue

@ -55,9 +55,6 @@
<script>
import winComScan from '@/mycomponents/scan/winComScan.vue'
import balanceSelect from '@/mycomponents/balance/balanceSelect.vue'
import {
getBalanceByManagementPrecisionByPacking,
} from '@/common/balance.js';
import {
getBalanceByParams,

6
src/mycomponents/scan/winScanPackAndLocation.vue

@ -130,6 +130,11 @@
type: Boolean,
default: false
},
pdaCountBalanceQuery: {
type: Boolean,
default: false
},
},
data() {
return {
@ -349,6 +354,7 @@
//
await getBalanceByManagementPrecisionByPacking(result.label, result.package, this.fromLocationCode, this
.balanceFromInventoryStatuses ? this.fromInventoryStatuses : undefined,
this.pdaCountBalanceQuery,
res => {
uni.hideLoading();
if (res.success) {

1
src/mycomponents/scan/winScanPackAndLocationNoShow.vue

@ -348,6 +348,7 @@
//
await getBalanceByManagementPrecisionByPacking(result.label, result.package, this.fromLocationCode, this
.balanceFromInventoryStatuses ? this.fromInventoryStatuses : undefined,
false,
res => {
uni.hideLoading();
if (res.success) {

17
src/pages/count/coms/comCountJobCard.vue

@ -11,6 +11,13 @@
<text class="card_content ">{{dataContent.countSplitCode}}</text>
</view>
<view class="card_view " style="margin-left:10rpx;padding: 8rpx;">
<text class="card_to_location " style="color: #3C9CFF font-weight: bold; " >管理精度</text>
<text class="card_content ">{{getManageMode(dataContent.manageMode)}}</text>
</view>
</job-com-main-card>
</template>
@ -44,7 +51,17 @@
},
isOpenCount(value) {
return value == "TRUE" ? "明盘" : "盲盘"
},
getManageMode(value){
var manageMode=""
if(value=='BY_BATCH'){
manageMode="按批次"
}else if(value=='BY_QUANTITY') {
manageMode="按数量"
}
return manageMode
}
}
}
</script>

119
src/pages/count/job/countLightDetail.vue

@ -7,7 +7,11 @@
<view class="" style="margin-left: 10rpx; margin-top: 10rpx;margin-bottom: 10rpx;">
<text style=" font-size: 32rpx; color: #6750F1">库位代码 </text>
<text style="font-size: 35rpx; font-weight: bold;">{{locationCode}}</text>
</view>
<view class="" style="margin-left: 10rpx; margin-top: 10rpx;margin-bottom: 10rpx;">
<text style=" font-size: 32rpx; color: #6750F1">管理精度 </text>
<text style="font-size: 35rpx; font-weight: bold;">{{getManageMode(manageMode)}}</text>
</view>
</view>
</view>
@ -45,6 +49,7 @@
<win-scan-button @goScan='openScanPopup'></win-scan-button>
<win-scan-pack-and-location :allowModifyLocation="false" ref="scanPopup" :noShowBalanceMessage="true"
:pdaCountBalanceQuery="true"
:isShowHistory="false" @getCountScanResult='getCountScanResult'>
</win-scan-pack-and-location>
<detail-info-popup ref="detailInfoPopup"></detail-info-popup>
@ -128,8 +133,8 @@
index: 0,
dataList: [],
managementList: [],
managementType: '',
isOpen: false
isOpen: false,
manageMode:""
};
},
@ -165,7 +170,15 @@
computed() {},
methods: {
getManageMode(value){
var manageMode=""
if(value=='BY_BATCH'){
manageMode="按批次"
}else if(value=='BY_QUANTITY') {
manageMode="按数量"
}
return manageMode
},
getDetail() {
var that = this;
uni.showLoading({
@ -179,6 +192,7 @@
} else {
that.jobContent = res.data;
that.jobContent.status = "2";
that.manageMode=that.jobContent.manageMode
that.locationCode = that.jobContent.locationCode;
that.dataList = res.data.subList;
@ -198,19 +212,25 @@
refreshData(recordList) {
//
var addList = []
this.dataList.forEach(mainItem => {
mainItem.recordList = [];
recordList.forEach(subItem => {
//recordList
if (mainItem.itemCode == subItem.itemCode &&
mainItem.batch == subItem.batch &&
mainItem.inventoryStatus == subItem.inventoryStatus)
{
recordList.forEach(subItem => {
if(this.manageMode=="BY_BATCH"){
let mainItem = this.dataList.find(r =>
r.itemCode == subItem.itemCode &&
r.batch == subItem.batch &&
r.inventoryStatus == subItem.inventoryStatus)
//
if (mainItem) {
mainItem.scaned = true;
mainItem.recordList = []
mainItem.recordList.push(subItem)
}else {
//
} else {
//
var detail = this.createBackAddDetailInfo(subItem)
if (!detail.recordList) {
detail.recordList = []
}
var recordItem = {
scaned: true,
isNewJobDetail: "true",
@ -231,18 +251,59 @@
balanceQty: subItem.balanceQty,
locationCode: subItem.locationCode
}
detail.recordList=[];
detail.recordList.push(recordItem)
addList.push(detail)
}
})
}else if(this.manageMode=="BY_QUANTITY"){
let mainItem = this.dataList.find(r =>
r.itemCode == subItem.itemCode &&
r.inventoryStatus == subItem.inventoryStatus)
//
if (mainItem) {
mainItem.scaned = true;
mainItem.recordList = []
mainItem.recordList.push(subItem)
} else {
//
var detail = this.createBackAddDetailInfo(subItem)
if (!detail.recordList) {
detail.recordList = []
}
var recordItem = {
scaned: true,
isNewJobDetail: "true",
itemCode: subItem.itemCode,
itemName: subItem.itemName,
itemDesc1: subItem.itemDesc1,
itemDesc2: subItem.itemDesc2,
packingNumber: subItem.packingNumber,
toPackingNumber: subItem.toPackingNumber,
toBatch: subItem.toBatch,
batch: subItem.batch,
inventoryStatus: subItem.inventoryStatus,
qty: subItem.qty,
handleQty: subItem.handleQty,
uom: subItem.uom,
packUnit: subItem.packUnit,
packQty: subItem.packQty,
balanceQty: subItem.balanceQty,
locationCode: subItem.locationCode
}
detail.recordList.push(recordItem)
addList.push(detail)
}
}
})
if (addList.length > 0) {
this.dataList = this.dataList.concat(addList)
}
this.updateList(false);
this.updateList(false);
},
@ -307,11 +368,10 @@
var batch = result.label.batch
var inventoryStatus = result.balance ? result.balance.inventoryStatus : "OK"
var qty = result.balance ? result.balance.qty : 0;
var handleQty =qty!=0?qty:result.label.qty
var handleQty = result.label.qty
var uom = pack.uom
var locationCode = this.locationCode
this.managementType = managementPrecision;
var recordItem = {
scaned: true,
@ -344,7 +404,7 @@
if (this.isOpen) {
this.isOpen = false
//
if (this.managementType == 'BY_BATCH') {
if (this.manageMode == 'BY_BATCH') {
//
let mainItem = this.dataList.find(r =>
r.itemCode == scanItem.itemCode &&
@ -398,11 +458,10 @@
detail.recordList.unshift(scanItem)
}
this.dataList.unshift(detail)
}
} else if (this.managementType == 'BY_QUANTITY') {
} else if (this.manageMode == 'BY_QUANTITY') {
let item = this.dataList.find(r =>
r.itemCode == scanItem.itemCode &&
r.locationCode == scanItem.locationCode &&
@ -420,10 +479,11 @@
res.locatioCode == scanItem.locatioCode &&
res.inventoryStatus == scanItem.inventoryStatus
)
subItem.toPackingNumber = "",
subItem.toBatch = ""
//
if (subItem) {
subItem.toPackingNumber = "",
subItem.toBatch = ""
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(scanItem.handleQty))
} else {
item.recordList.unshift(scanItem)
@ -443,10 +503,11 @@
res.batch == scanItem.batch &&
res.inventoryStatus == scanItem.inventoryStatus
)
subItem.toPackingNumber = "",
subItem.toBatch = ""
//
if (subItem) {
subItem.toPackingNumber = "",
subItem.toBatch = ""
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(scanItem.handleQty))
} else {
detail.recordList.unshift(scanItem)

Loading…
Cancel
Save