feat(version1011):整机价格

This commit is contained in:
zzs 2024-10-14 10:55:42 +08:00 committed by ljw
parent 4d8f9c5f8b
commit fefb200142
2 changed files with 2 additions and 1 deletions

View File

@ -308,6 +308,7 @@ public class SalesOrderZJEdit extends AbstractBillPlugIn implements Plugin, Befo
ClientUtils.countRealCatAmountZJ(model, rowIndex);//整机合同整机非赠品行实际整车金额 ClientUtils.countRealCatAmountZJ(model, rowIndex);//整机合同整机非赠品行实际整车金额
ClientUtils.calculateSalesFCAStandardQingdaoUnitAmount(model, rowIndex);//销售FCA标配青岛金额 ClientUtils.calculateSalesFCAStandardQingdaoUnitAmount(model, rowIndex);//销售FCA标配青岛金额
ClientUtils.calculatePortAmt(model, rowIndex);//计算港杂费 ClientUtils.calculatePortAmt(model, rowIndex);//计算港杂费
ClientUtils.calcInlandTransportationAmt(model, rowIndex);//计算内陆运费
break; break;
case "yem_saamtpriceclause"://销售金额价格条款 case "yem_saamtpriceclause"://销售金额价格条款
ClientUtils.totalSaFobAmount(model, "yem_es_materialinfo", "yem_ifgift", "yem_saamtpriceclause", "yem_offeramount");//销售金额价格条款汇总表头 金额价格条款 ClientUtils.totalSaFobAmount(model, "yem_es_materialinfo", "yem_ifgift", "yem_saamtpriceclause", "yem_offeramount");//销售金额价格条款汇总表头 金额价格条款

View File

@ -2063,7 +2063,7 @@ public class ClientUtils {
price = queryIntervalPrice(subC, tonsqty); price = queryIntervalPrice(subC, tonsqty);
} }
BigDecimal calc = price.multiply(tonsqty); BigDecimal calc = price.multiply(tonsqty);
model.setValue("yem_inlandfreight", calc, idx); model.setValue("yem_inlandtransportation", calc, idx);
} }
} }