Browse Source

生成标签bug

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

Loading…
Cancel
Save