|
@@ -4,6 +4,7 @@ import nc.bs.framework.common.NCLocator;
|
|
|
import nc.itf.uap.IUAPQueryBS;
|
|
|
import nc.itf.uap.pf.IPfExchangeService;
|
|
|
import nc.jdbc.framework.processor.BeanProcessor;
|
|
|
+import nc.vo.bd.bankaccount.BankAccSubVO;
|
|
|
import nc.vo.cdmc.cdm.repayintst.AggRepayIntstVO;
|
|
|
import nc.vo.cdmc.cdm.repayintst.RepayIntstVO;
|
|
|
import nc.vo.cmp.informer.InformerVO;
|
|
@@ -14,6 +15,8 @@ import nccloud.framework.web.action.itf.ICommonAction;
|
|
|
import nccloud.framework.web.container.IRequest;
|
|
|
import nccloud.framework.web.convert.translate.Translator;
|
|
|
import nccloud.framework.web.processor.template.BillCardConvertProcessor;
|
|
|
+import nccloud.framework.web.ui.model.row.Cell;
|
|
|
+import nccloud.framework.web.ui.model.row.Row;
|
|
|
import nccloud.framework.web.ui.pattern.billcard.BillCard;
|
|
|
import nccloud.framework.web.ui.pattern.billcard.BillCardFormulaHandler;
|
|
|
import nccloud.web.ifac.pub.util.NCCPageInfoUtil;
|
|
@@ -58,9 +61,12 @@ public class InformerToRepayintstAction implements ICommonAction{
|
|
|
repayintstvo.setSrcbillno(informervo.getVbillno());
|
|
|
repayintstvo.setVdef7(informervo.getMoneyy().toString());//上游金额
|
|
|
repayintstvo.setVdef4(informervo.getBankrelated_code());//对账标识码
|
|
|
+ repayintstvo.setLoandate(informervo.getInfodate());//付息日期
|
|
|
+ repayintstvo.setLoanunitid(informervo.getBankaccount());//本方账户
|
|
|
aggrepayintstvo.setParent(repayintstvo);
|
|
|
BillCardConvertProcessor processor = new BillCardConvertProcessor();
|
|
|
billCard = processor.convert("36630BLPI_CARD", aggrepayintstvo);
|
|
|
+
|
|
|
Translator translator = new Translator();
|
|
|
translator.translate(billCard);
|
|
|
BillCardFormulaHandler handler = new BillCardFormulaHandler(billCard);
|
|
@@ -71,6 +77,10 @@ public class InformerToRepayintstAction implements ICommonAction{
|
|
|
} catch (BusinessException var15) {
|
|
|
ExceptionUtils.wrapException(var15);
|
|
|
}
|
|
|
+
|
|
|
+ Row[] rows=billCard.getHead().getModel().getRows();
|
|
|
+ Cell cell=rows[0].getValues().get("loanunitid");
|
|
|
+ cell.setDisplay(informervo.getBankaccount());
|
|
|
return billCard;
|
|
|
}
|
|
|
|