Browse Source

修改盘点

intex_online20250327
lijuncheng 3 weeks ago
parent
commit
87b11e9105
  1. 8
      src/mycomponents/status/statusEdit.vue
  2. 170
      src/pages/count/job/countLightDetail.vue

8
src/mycomponents/status/statusEdit.vue

@ -12,8 +12,7 @@
<!-- u-button自带点击变换颜色 --> <!-- u-button自带点击变换颜色 -->
<u-button class="button" @tap="tagClick(item)" :key="index" <u-button class="button" @tap="tagClick(item)" :key="index"
:class="[mIndex==index ? 'active' : '']"> :class="[mIndex==index ? 'active' : '']">
<text :class="statusStyle(item.value)">{{item.text}}</text> <text :class="statusStyle(item.value)">{{item.label}}</text>
</u-button> </u-button>
</view> </view>
</view> </view>
@ -25,7 +24,8 @@
<script> <script>
import { import {
getInventoryStatusStyle getInventoryStatusStyle,
getInventoryStatusList
} from '@/common/directory.js'; } from '@/common/directory.js';
import { import {
@ -49,7 +49,7 @@
watch: { watch: {
status: { status: {
handler(newName, oldName) { handler(newName, oldName) {
this.list = getInventoryStatusArray(); this.list = getInventoryStatusList();
for (var i = 0; i < this.list.length; i++) { for (var i = 0; i < this.list.length; i++) {
if (this.list[i].value == this.status) { if (this.list[i].value == this.status) {
this.mIndex = i; this.mIndex = i;

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

@ -19,8 +19,7 @@
<uni-swipe-action ref="swipeAction"> <uni-swipe-action ref="swipeAction">
<uni-swipe-action-item> <uni-swipe-action-item>
<view class="uni-flex uni-row " <view class="uni-flex uni-row "
style="align-items: center; margin: 10rpx; border-radius: 10rpx ;" style="align-items: center; margin: 10rpx; border-radius: 10rpx ;">
>
<comCountDetailcards :ref="'countDetail_'+index" :dataContent="item" :index="index" <comCountDetailcards :ref="'countDetail_'+index" :dataContent="item" :index="index"
@editItem="editItem" :settingParam="jobContent" @remove="updateData" @editItem="editItem" :settingParam="jobContent" @remove="updateData"
@summCount="summCount" @currentCount="currentCount" @updateData="updateData"> @summCount="summCount" @currentCount="currentCount" @updateData="updateData">
@ -46,8 +45,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"
:isShowHistory="false" :isShowHistory="false" @getCountScanResult='getCountScanResult'>
@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>
<count-qty-edit ref="countQtyEdit" @confirm="editConfirm" @close="editClose" :isShowStatus="true" <count-qty-edit ref="countQtyEdit" @confirm="editConfirm" @close="editClose" :isShowStatus="true"
@ -131,8 +129,8 @@
dataList: [], dataList: [],
managementList: [], managementList: [],
managementType: '', managementType: '',
isOpen:false isOpen: false
}; };
}, },
onLoad(option) { onLoad(option) {
@ -201,56 +199,52 @@
refreshData(recordList) { refreshData(recordList) {
// //
var addList = [] var addList = []
recordList.forEach(subItem => {
let mainItem = this.dataList.find(r =>
r.itemCode == subItem.itemCode &&
r.batch == subItem.batch &&
r.inventoryStatus == subItem.inventoryStatus)
//
if (mainItem) {
mainItem.scaned = true;
if (!mainItem.recordList) {
mainItem.recordList = []
}
mainItem.recordList.push(subItem)
} else {
//
var detail = this.createBackAddDetailInfo(subItem)
if (!detail.recordList) { this.dataList.forEach(mainItem => {
detail.recordList = [] mainItem.recordList = [];
} recordList.forEach(subItem => {
var recordItem = { //recordList
scaned: true, if (mainItem.itemCode == subItem.itemCode &&
isNewJobDetail: "true", mainItem.batch == subItem.batch &&
itemCode: subItem.itemCode, mainItem.inventoryStatus == subItem.inventoryStatus)
itemName: subItem.itemName, {
itemDesc1: subItem.itemDesc1, mainItem.recordList.push(subItem)
itemDesc2: subItem.itemDesc2, }else {
packingNumber: subItem.packingNumber, //
toPackingNumber:subItem.toPackingNumber, var detail = this.createBackAddDetailInfo(subItem)
toBatch:subItem.toBatch, var recordItem = {
batch: subItem.batch, scaned: true,
inventoryStatus: subItem.inventoryStatus, isNewJobDetail: "true",
qty: subItem.qty, itemCode: subItem.itemCode,
handleQty: subItem.handleQty, itemName: subItem.itemName,
uom: subItem.uom, itemDesc1: subItem.itemDesc1,
packUnit: subItem.packUnit, itemDesc2: subItem.itemDesc2,
packQty: subItem.packQty, packingNumber: subItem.packingNumber,
balanceQty: subItem.balanceQty, toPackingNumber: subItem.toPackingNumber,
locationCode: subItem.locationCode 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=[];
detail.recordList.push(recordItem)
addList.push(detail)
} }
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);
}, },
@ -306,18 +300,20 @@
this.$refs.scanPopup.packLoseFocus(); this.$refs.scanPopup.packLoseFocus();
} }
}, },
getCountScanResult(result, managementPrecision) { getCountScanResult(result, managementPrecision) {
var itemCode = result.label.itemCode var itemCode = result.label.itemCode
var packingNumber = result.label.packingNumber var packingNumber = result.label.packingNumber
var pack = result.package var pack = result.package
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 : result.label.qty; var qty = result.balance ? result.balance.qty : 0;
var handleQty =qty!=0?qty:result.label.qty
var uom = pack.uom var uom = pack.uom
var locationCode = this.locationCode var locationCode = this.locationCode
this.managementType = managementPrecision; this.managementType = managementPrecision;
var recordItem = { var recordItem = {
scaned: true, scaned: true,
isNewJobDetail: "false", isNewJobDetail: "false",
@ -327,11 +323,11 @@
itemDesc2: pack.itemDesc2, itemDesc2: pack.itemDesc2,
packingNumber: packingNumber, packingNumber: packingNumber,
batch: batch, batch: batch,
toPackingNumber:packingNumber, toPackingNumber: packingNumber,
toBatch: batch, toBatch: batch,
inventoryStatus: inventoryStatus, inventoryStatus: inventoryStatus,
qty: qty, qty: qty,
handleQty: qty, handleQty: handleQty,
uom: uom, uom: uom,
packUnit: pack.packUnit, packUnit: pack.packUnit,
packQty: pack.packQty, packQty: pack.packQty,
@ -339,15 +335,15 @@
locationCode: locationCode locationCode: locationCode
} }
this.currentEditItem = recordItem; this.currentEditItem = recordItem;
this.isOpen=true this.isOpen = true
this.$refs.countQtyEdit.openEditPopupShowSeconds(recordItem, this.$refs.countQtyEdit.openEditPopupShowSeconds(recordItem,
null); null);
}, },
setData(scanItem){ setData(scanItem) {
if(this.isOpen){ if (this.isOpen) {
this.isOpen=false this.isOpen = false
// //
if (this.managementType == 'BY_BATCH') { if (this.managementType == 'BY_BATCH') {
// //
@ -356,13 +352,13 @@
r.locationCode == scanItem.locationCode && r.locationCode == scanItem.locationCode &&
r.batch == scanItem.batch && r.batch == scanItem.batch &&
r.inventoryStatus == scanItem.inventoryStatus) r.inventoryStatus == scanItem.inventoryStatus)
//,recordList //,recordList
if (mainItem) { if (mainItem) {
if (!mainItem.recordList) { if (!mainItem.recordList) {
mainItem.recordList = [] mainItem.recordList = []
} }
mainItem.scaned=true; mainItem.scaned = true;
var subItem = mainItem.recordList.find(res => var subItem = mainItem.recordList.find(res =>
res.itemCode == scanItem.itemCode && res.itemCode == scanItem.itemCode &&
res.locationCode == scanItem.locationCode && res.locationCode == scanItem.locationCode &&
@ -370,8 +366,8 @@
res.batch == scanItem.batch && res.batch == scanItem.batch &&
res.inventoryStatus == scanItem.inventoryStatus res.inventoryStatus == scanItem.inventoryStatus
) )
scanItem.toPackingNumber="" scanItem.toPackingNumber = ""
// //
if (subItem) { if (subItem) {
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(subItem.handleQty)) subItem.handleQty = calc.add(Number(subItem.handleQty), Number(subItem.handleQty))
@ -381,12 +377,12 @@
} else { } else {
//, //,
var detail = this.createAddDetailInfo(scanItem) var detail = this.createAddDetailInfo(scanItem)
scanItem.isNewJobDetail="true" scanItem.isNewJobDetail = "true"
if (!detail.recordList) { if (!detail.recordList) {
detail.recordList = [] detail.recordList = []
} }
var subItem = detail.recordList.find(res => var subItem = detail.recordList.find(res =>
res.itemCode == scanItem.itemCode && res.itemCode == scanItem.itemCode &&
res.locationCode == scanItem.locationCode && res.locationCode == scanItem.locationCode &&
@ -394,19 +390,19 @@
res.batch == scanItem.batch && res.batch == scanItem.batch &&
res.inventoryStatus == scanItem.inventoryStatus res.inventoryStatus == scanItem.inventoryStatus
) )
scanItem.toPackingNumber="" scanItem.toPackingNumber = ""
// //
if (subItem) { if (subItem) {
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)
} }
this.dataList.unshift(detail) this.dataList.unshift(detail)
} }
} else if (this.managementType == 'BY_QUANTITY') { } else if (this.managementType == 'BY_QUANTITY') {
let item = this.dataList.find(r => let item = this.dataList.find(r =>
r.itemCode == scanItem.itemCode && r.itemCode == scanItem.itemCode &&
@ -417,7 +413,7 @@
if (!item.recordList) { if (!item.recordList) {
item.recordList = [] item.recordList = []
} }
item.scaned=true; item.scaned = true;
var subItem = item.recordList.find(res => var subItem = item.recordList.find(res =>
res.itemCode == scanItem.itemCode && res.itemCode == scanItem.itemCode &&
res.packingNumber == scanItem.packingNumber && res.packingNumber == scanItem.packingNumber &&
@ -425,20 +421,20 @@
res.locatioCode == scanItem.locatioCode && res.locatioCode == scanItem.locatioCode &&
res.inventoryStatus == scanItem.inventoryStatus res.inventoryStatus == scanItem.inventoryStatus
) )
subItem.toPackingNumber="", subItem.toPackingNumber = "",
subItem.toBatch="" subItem.toBatch = ""
// //
if (subItem) { if (subItem) {
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)
} }
} else { } else {
//, //,
var detail = this.createAddDetailInfo(scanItem) var detail = this.createAddDetailInfo(scanItem)
if (!detail.recordList) { if (!detail.recordList) {
detail.recordList = [] detail.recordList = []
} }
@ -448,32 +444,32 @@
res.batch == scanItem.batch && res.batch == scanItem.batch &&
res.inventoryStatus == scanItem.inventoryStatus res.inventoryStatus == scanItem.inventoryStatus
) )
subItem.toPackingNumber="", subItem.toPackingNumber = "",
subItem.toBatch="" subItem.toBatch = ""
// //
if (subItem) { if (subItem) {
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)
} }
this.currentEditItem = scanItem; this.currentEditItem = scanItem;
} }
} }
this.updateList(true); this.updateList(true);
} }
}, },
updateList(isGetFocus) { updateList(isGetFocus) {
this.calcScanCount() this.calcScanCount()
this.calcQtyAndUpdateSatus() this.calcQtyAndUpdateSatus()
this.sortList(); this.sortList();
this.$forceUpdate() this.$forceUpdate()
if(isGetFocus){ if (isGetFocus) {
this.scanPopupLoseFocus() this.scanPopupLoseFocus()
} }
}, },
editConfirm(qty, inventoryStatus, mode) { editConfirm(qty, inventoryStatus, mode) {
// //
@ -533,7 +529,7 @@
// //
createAddDetailInfo(scanImte) { createAddDetailInfo(scanImte) {
var detail = { var detail = {
scaned:true, scaned: true,
isNewJobDetail: "true", isNewJobDetail: "true",
batch: scanImte.batch, batch: scanImte.batch,
countAllRecordList: [], countAllRecordList: [],
@ -557,7 +553,7 @@
// //
createBackAddDetailInfo(subItem) { createBackAddDetailInfo(subItem) {
var detail = { var detail = {
scaned:true, scaned: true,
isNewJobDetail: "true", isNewJobDetail: "true",
batch: subItem.batch, batch: subItem.batch,
countAllRecordList: [], countAllRecordList: [],
@ -613,7 +609,7 @@
this.dataList.forEach(item => { this.dataList.forEach(item => {
if (item.scaned && item.recordList && item.recordList.length > 0) { if (item.scaned && item.recordList && item.recordList.length > 0) {
submitData.recordList = submitData.recordList.concat(item.recordList) submitData.recordList = submitData.recordList.concat(item.recordList)
} }
}) })

Loading…
Cancel
Save