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 // #endif
// #ifdef H5 // #ifdef H5
console.log("网s络H5", navigator.onLine)
if (navigator.onLine) { if (navigator.onLine) {
uni.request(options); uni.request(options);
} else { } 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 = { let result = {
list: [], list: [],
success: true, success: true,
@ -147,25 +147,25 @@ export function getBalanceByManagementPrecisionByPacking(label, packageInfo,loca
let managementPrecision = res.data[0].ManagementPrecision; let managementPrecision = res.data[0].ManagementPrecision;
switch (managementPrecision) { switch (managementPrecision) {
case 'BY_PACKAGING': case 'BY_PACKAGING':
byPacking(label, packageInfo,locationCode, fromInventoryStatuses, res => { byPacking(label, packageInfo,locationCode, fromInventoryStatuses,pdaCountBalanceQuery, res => {
res.managementPrecision = managementPrecision; res.managementPrecision = managementPrecision;
callback(res); callback(res);
}); });
break; break;
case 'BY_BATCH': case 'BY_BATCH':
byBatch(label, locationCode, fromInventoryStatuses, res => { byBatch(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, res => {
res.managementPrecision = managementPrecision; res.managementPrecision = managementPrecision;
callback(res); callback(res);
}); });
break; break;
case 'BY_QUANTITY': case 'BY_QUANTITY':
byQuantity(label, locationCode, fromInventoryStatuses, res => { byQuantity(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, res => {
res.managementPrecision = managementPrecision; res.managementPrecision = managementPrecision;
callback(res); callback(res);
}); });
break; break;
case 'BY_UNIQUEID': case 'BY_UNIQUEID':
byUniqueId(label, fromInventoryStatuses, res => { byUniqueId(label, fromInventoryStatuses,pdaCountBalanceQuery, res => {
res.managementPrecision = managementPrecision; res.managementPrecision = managementPrecision;
callback(res); callback(res);
}); });
@ -234,7 +234,7 @@ export function getBalanceByManagementPrecision(label,locationCode, fromInventor
* @param {Object} locationCode * @param {Object} locationCode
* @param {Object} callback * @param {Object} callback
*/ */
export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses, callback) { export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses,pdaCountBalanceQuery, callback) {
let result = { let result = {
success: true, success: true,
message: '', message: '',
@ -281,7 +281,14 @@ export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses
value: status value: status
}) })
} }
if(pdaCountBalanceQuery){
filters.push({
column: "pdaCountBalanceQuery",
action: "==",
value: "true"
})
}
var params = { var params = {
@ -315,7 +322,7 @@ export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses
* @param {Object} locationCode * @param {Object} locationCode
* @param {Object} callback * @param {Object} callback
*/ */
export function byBatch(label, locationCode, fromInventoryStatuses, callback) { export function byBatch(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, callback) {
var filters = [] var filters = []
filters.push({ filters.push({
column: "itemCode", column: "itemCode",
@ -346,6 +353,14 @@ export function byBatch(label, locationCode, fromInventoryStatuses, callback) {
value: status value: status
}) })
} }
if(pdaCountBalanceQuery){
filters.push({
column: "pdaCountBalanceQuery",
action: "==",
value: "true"
})
}
var params = { var params = {
filters: filters, filters: filters,
@ -382,7 +397,7 @@ export function byBatch(label, locationCode, fromInventoryStatuses, callback) {
* @param {Object} locationCode * @param {Object} locationCode
* @param {Object} callback * @param {Object} callback
*/ */
export function byQuantity(label, locationCode, fromInventoryStatuses, callback) { export function byQuantity(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, callback) {
let result = { let result = {
success: true, success: true,
message: '', message: '',
@ -419,6 +434,14 @@ export function byQuantity(label, locationCode, fromInventoryStatuses, callback)
value: status value: status
}) })
} }
if(pdaCountBalanceQuery){
filters.push({
column: "pdaCountBalanceQuery",
action: "==",
value: "true"
})
}
var params = { var params = {
filters: filters, filters: filters,
@ -449,7 +472,7 @@ export function byQuantity(label, locationCode, fromInventoryStatuses, callback)
* @param {Object} locationCode * @param {Object} locationCode
* @param {Object} callback * @param {Object} callback
*/ */
export function byUniqueId(label, locationCode, fromInventoryStatuses, callback) { export function byUniqueId(label, locationCode, fromInventoryStatuses,pdaCountBalanceQuery, callback) {
let param = { let param = {
packingNumber: label.packingNumber packingNumber: label.packingNumber
}; };
@ -474,6 +497,14 @@ export function byUniqueId(label, locationCode, fromInventoryStatuses, callback)
value: status value: status
}) })
} }
if(pdaCountBalanceQuery){
filters.push({
column: "pdaCountBalanceQuery",
action: "==",
value: "true"
})
}
var params = { var params = {
filters: filters, filters: filters,

3
src/mycomponents/scan/winComScanBalance.vue

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

3
src/mycomponents/scan/winComScanBalanceLocation.vue

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

6
src/mycomponents/scan/winScanPackAndLocation.vue

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

1
src/mycomponents/scan/winScanPackAndLocationNoShow.vue

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

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

@ -11,6 +11,13 @@
<text class="card_content ">{{dataContent.countSplitCode}}</text> <text class="card_content ">{{dataContent.countSplitCode}}</text>
</view> </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> </job-com-main-card>
</template> </template>
@ -44,7 +51,17 @@
}, },
isOpenCount(value) { isOpenCount(value) {
return value == "TRUE" ? "明盘" : "盲盘" return value == "TRUE" ? "明盘" : "盲盘"
},
getManageMode(value){
var manageMode=""
if(value=='BY_BATCH'){
manageMode="按批次"
}else if(value=='BY_QUANTITY') {
manageMode="按数量"
}
return manageMode
} }
} }
} }
</script> </script>

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

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

Loading…
Cancel
Save