update: 收货补单中预估总价和货款金额保留整数
This commit is contained in:
parent
66e4bfcb47
commit
f645f70ca9
|
@ -449,7 +449,7 @@ watch(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
model1.order.totalPrice =
|
model1.order.totalPrice =
|
||||||
(model1.order.price || 0) * (model1.order.netWeight || 0);
|
Math.floor((model1.order.price || 0) * (model1.order.netWeight || 0)) ;
|
||||||
// 货款金额默认=预估总价,当系统自动算出预估总价时,值需同步
|
// 货款金额默认=预估总价,当系统自动算出预估总价时,值需同步
|
||||||
model1.order.balanceTotalPrice = model1.order.totalPrice;
|
model1.order.balanceTotalPrice = model1.order.totalPrice;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue