载具管理

This commit is contained in:
2026-01-09 16:56:56 +08:00
parent ba0bc562af
commit 71910b0894
5 changed files with 149 additions and 29 deletions

View File

@@ -56,7 +56,7 @@
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i">
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.bag_code === pkId}" @tap="toCheck(e)">
<td>{{i+1}}</td>
<td>{{e.bag_code}}</td>
<td>{{e.material_code}}</td>
@@ -96,6 +96,8 @@
num: null,
val1: '',
bagCode: '',
pkId: '',
pkObj: {},
dataList: [],
// dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
disabled: false
@@ -107,7 +109,7 @@
methods: {
toScanAdd () {
if (this.bagCode) {
this._getPalletAssembly(this.bagCode)
this._getPalletAssembly2(this.bagCode)
}
// uni.scanCode({
// success: (res) => {
@@ -127,7 +129,11 @@
if (!this.pkId) {
return
}
this.dataList = this.dataList.filter(item => item.mid !== this.pkObj.mid)
this.dataList = this.dataList.filter(item => item.bag_code !== this.pkObj.bag_code)
},
toCheck (e) {
this.pkId = this.pkId === e.bag_code ? '' : e.bag_code
this.pkObj = this.pkId === e.bag_code ? e : {}
},
toEmpty () {
this.val1 = ''
@@ -138,7 +144,28 @@
try {
let res = await getPalletAssembly(e)
if (res) {
this.dataList = [...this.dataList, ...res.data]
this.dataList = [...res.data]
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
} else {
this.dataList = []
}
} catch (e) {
this.dataList = []
}
},
async _getPalletAssembly2 (e) {
try {
let res = await getPalletAssembly(this.bagCode)
if (res) {
const existingItem = this.dataList.find(item => item.bag_code === res.data.bag_code)
if (!existingItem) {
this.dataList.push(res.data)
} else {
uni.showToast({
title: '袋码已存在,不能重复插入',
icon: 'none'
})
}
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
} else {
this.dataList = []