Compare commits

...

2 Commits

Author SHA1 Message Date
陈绍鑫 20773066ee Merge remote-tracking branch 'origin/main' into main 2025-11-04 12:32:21 +08:00
陈绍鑫 29287d8d04 提交人:陈绍鑫
日期:2025/10/31 18:30
内容:担保合同表单插件
2025-11-04 12:32:15 +08:00
1 changed files with 5 additions and 2 deletions

View File

@ -228,7 +228,10 @@ public class GuaranteeContractFeeDetailPlugin extends AbstractBillPlugIn {
String shkd_feeoppunit = (String) map.get("shkd_feeoppunit"); String shkd_feeoppunit = (String) map.get("shkd_feeoppunit");
this.getModel().setValue("shkd_jtfeeoppunit", Long.parseLong(shkd_feeoppunit),index);//对方单位 this.getModel().setValue("shkd_jtfeeoppunit", Long.parseLong(shkd_feeoppunit),index);//对方单位
String shkd_feeoppbebank = (String) map.get("shkd_feeoppbebank"); String shkd_feeoppbebank = (String) map.get("shkd_feeoppbebank");
this.getModel().setValue("shkd_jtfeeoppbebank", Long.parseLong(shkd_feeoppbebank),index);//对方开户银行 if (shkd_feeoppbebank!=null){
this.getModel().setValue("shkd_jtfeeoppbebank", Long.parseLong(shkd_feeoppbebank),index);//对方开户银行
}
// this.getModel().setValue("shkd_jtfeeoppbebank", Long.parseLong(shkd_feeoppbebank),index);//对方开户银行
String shkd_feeoppacctbank = (String) map.get("shkd_feeoppacctbank"); String shkd_feeoppacctbank = (String) map.get("shkd_feeoppacctbank");
if (shkd_feeoppacctbank!=null){ if (shkd_feeoppacctbank!=null){
this.getModel().setValue("shkd_jtfeeoppacctbank", Long.parseLong(shkd_feeoppacctbank),index);//对方开户银行 this.getModel().setValue("shkd_jtfeeoppacctbank", Long.parseLong(shkd_feeoppacctbank),index);//对方开户银行
@ -380,7 +383,7 @@ public class GuaranteeContractFeeDetailPlugin extends AbstractBillPlugIn {
entry.set("srcbillno", dataEntity.getString("billno")); entry.set("srcbillno", dataEntity.getString("billno"));
entry.set("srcbillid", dataEntity.getLong("id")); entry.set("srcbillid", dataEntity.getLong("id"));
entry.set("feeratio", 100); entry.set("feeratio", 100);
entry.set("excrate", BigDecimal.valueOf(1)); entry.set("excrate", BigDecimal.valueOf(1));//汇率
entry.set("feedetailamt", seldata.getBigDecimal("shkd_jtfeeamt")); entry.set("feedetailamt", seldata.getBigDecimal("shkd_jtfeeamt"));
entry.set("remark", dataEntity.getString("description")); entry.set("remark", dataEntity.getString("description"));
entry.set("id", seldata.getLong("shkd_jtdbhtfyid")); entry.set("id", seldata.getLong("shkd_jtdbhtfyid"));