fix:
--投保金额(USD)取值逻辑调整:原逻辑:取投保金额(原币种),调整后:取订舱投保金额(原币种)
This commit is contained in:
parent
33f00e23ff
commit
05b1f43eca
@ -127,7 +127,7 @@ public class ShippingDetialToStoraConvert extends AbstractConvertPlugIn
|
|||||||
|
|
||||||
if ("USD".equals(currency)) {
|
if ("USD".equals(currency)) {
|
||||||
// 投保金额(美元)
|
// 投保金额(美元)
|
||||||
addNew.set("yem_usacreditamt_cd", storageAmount);
|
addNew.set("yem_usacreditamt_cd", storageAmount.multiply(yemRaprate).divide(new BigDecimal(100) ,2));
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
storageAmount = BigDecimal.ZERO;
|
storageAmount = BigDecimal.ZERO;
|
||||||
|
Loading…
Reference in New Issue
Block a user