Browse Source

完善采购申请管理

master
yunuo970428 9 months ago
parent
commit
5d27188d0e
  1. 2
      yxt-as-ui/src/views/purchase/procurement/procurementAdd.vue
  2. 2
      yxt-as-ui/src/views/purchase/procurement/procurementInfo.vue
  3. 2
      yxt-as-ui/src/views/workFlow/caigouFlow/procurementDaiBan.vue
  4. 2
      yxt-as-ui/src/views/workFlow/caigouFlow/procurementEdit.vue
  5. 2
      yxt-as-ui/src/views/workFlow/caigouFlow/procurementYiBan.vue

2
yxt-as-ui/src/views/purchase/procurement/procurementAdd.vue

@ -371,7 +371,7 @@ export default {
if (this.formobj.pmsPurchaseBillDetailList.length > 0) {
this.formobj.pmsPurchaseBillDetailList.forEach((e) => {
if (e.goodsSpuName !== '') {
cg = Math.round((parseFloat(cg) + parseFloat(e.amount !== '' ? e.amount : '0')) * 100) / 100
cg = Math.round((parseFloat(cg) + parseFloat(e.amount === null ? '0' : e.amount !== '' ? e.amount : '0')) * 100) / 100
}
})
}

2
yxt-as-ui/src/views/purchase/procurement/procurementInfo.vue

@ -274,7 +274,7 @@ export default {
if (this.formobj.pmsPurchaseBillDetailList.length > 0) {
this.formobj.pmsPurchaseBillDetailList.forEach((e) => {
if (e.goodsSpuName !== '') {
cg = Math.round((parseFloat(cg) + parseFloat(e.amount !== '' ? e.amount : '0')) * 100) / 100
cg = Math.round((parseFloat(cg) + parseFloat(e.amount === null ? '0' : e.amount !== '' ? e.amount : '0')) * 100) / 100
}
})
}

2
yxt-as-ui/src/views/workFlow/caigouFlow/procurementDaiBan.vue

@ -380,7 +380,7 @@ export default {
if (this.formobj.pmsPurchaseBillDetailList.length > 0) {
this.formobj.pmsPurchaseBillDetailList.forEach((e) => {
if (e.goodsSpuName !== '') {
cg = Math.round((parseFloat(cg) + parseFloat(e.amount !== '' ? e.amount : '0')) * 100) / 100
cg = Math.round((parseFloat(cg) + parseFloat(e.amount === null ? '0' : e.amount !== '' ? e.amount : '0')) * 100) / 100
}
})
}

2
yxt-as-ui/src/views/workFlow/caigouFlow/procurementEdit.vue

@ -387,7 +387,7 @@ export default {
if (this.formobj.pmsPurchaseBillDetailList.length > 0) {
this.formobj.pmsPurchaseBillDetailList.forEach((e) => {
if (e.goodsSpuName !== '') {
cg = Math.round((parseFloat(cg) + parseFloat(e.amount !== '' ? e.amount : '0')) * 100) / 100
cg = Math.round((parseFloat(cg) + parseFloat(e.amount === null ? '0' : e.amount !== '' ? e.amount : '0')) * 100) / 100
}
})
}

2
yxt-as-ui/src/views/workFlow/caigouFlow/procurementYiBan.vue

@ -309,7 +309,7 @@ export default {
if (this.formobj.pmsPurchaseBillDetailList.length > 0) {
this.formobj.pmsPurchaseBillDetailList.forEach((e) => {
if (e.goodsSpuName !== '') {
cg = Math.round((parseFloat(cg) + parseFloat(e.amount !== '' ? e.amount : '0')) * 100) / 100
cg = Math.round((parseFloat(cg) + parseFloat(e.amount === null ? '0' : e.amount !== '' ? e.amount : '0')) * 100) / 100
}
})
}

Loading…
Cancel
Save