Commit 2b2e76ac authored by shenshaokai's avatar shenshaokai

Merge branch 'fix-20221102' into 'jinfa-20221102'

fix: 新增合同-采购物料-交货日期bug修改 See merge request project/jinfa-platform!509
parents 5e10fe37 1cb6aef0
......@@ -576,7 +576,8 @@ const FormList = (props: any) => {
// i.isHasTax = form.getFieldValue('isHasTax' + i.newId) || undefined
// i.taxRate = form.getFieldValue('taxRate' + i.newId) || ''
// i.price = form.getFieldValue('price' + i.newId) || ''
i.bidAmount = (i.bidCount && i.price) ? new BigNumber(+i.bidCount).multipliedBy(i.price).toNumber().toFixed(2) : ''
i.bidAmount = (i.bidCount && i.price) ? new BigNumber(+i.bidCount).multipliedBy(i.price).toNumber().toFixed(2) : '';
form.setFieldsValue({ [`advanceDeliveryDate${k}`]: i.advanceDeliveryDate ? moment(i.advanceDeliveryDate) : null })
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment