Browse Source

生成标签bug

master_hella_20240701
zhang_li 4 months ago
parent
commit
74f36cecca
  1. 8
      src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/labelForm.vue

8
src/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/labelForm.vue

@ -336,7 +336,7 @@ const addT = (oneRow) => {
oneId.value++
oneRow.packageList.push({
id: oneId.value,
tPoNumber: (oneRow.packageList[oneRow.packageList.length - 1]?.tPoNumber || 0) + 1, //1
tPoNumber: oneRow?.packageList?.length>0?oneRow.packageList[oneRow.packageList.length - 1]?.tPoNumber + 1 :1, //1
xNumber: '',
qtyOne: ''
})
@ -355,9 +355,7 @@ const addX = (oneRow, oneIndex, twoRow, twoIndex, type) => {
//
twoRow.children.push({
id: twoId.value,
xPoNumber: twoRow?.children[twoRow.children.length - 1]?.xPoNumber
? twoRow?.children[twoRow.children.length - 1]?.xPoNumber
: 0 + 1,
xPoNumber: twoRow?.children?.length>0? twoRow?.children[twoRow.children.length - 1]?.xPoNumber + 1 :1,
qtyOne: ''
})
twoRow.xNumber = twoRow.children.length
@ -365,7 +363,7 @@ const addX = (oneRow, oneIndex, twoRow, twoIndex, type) => {
//
twoRow.children.push({
id: twoId.value,
xPoNumber: twoRow.children[twoRow.children.length - 1].xPoNumber + 1,
xPoNumber:twoRow.children.length>0? twoRow.children[twoRow.children.length - 1].xPoNumber + 1:1,
qtyTwo: ''
})
oneRow.allTuoQty = twoRow.children.length

Loading…
Cancel
Save