|
@@ -882,7 +882,11 @@ public class ExecutorMeter extends FormulaExecutor {
|
|
payItemZj.add(sjzf);
|
|
payItemZj.add(sjzf);
|
|
}
|
|
}
|
|
midPayItemList.forEach(e->{
|
|
midPayItemList.forEach(e->{
|
|
- InterimPaymentCertificate ipc = paymentCertificateMap.get(e.getPayNumber());
|
|
|
|
|
|
+ String payNumber=e.getPayNumber();
|
|
|
|
+ if(e.getPayName().contains("暂定")){
|
|
|
|
+ payNumber="ZLJE";
|
|
|
|
+ }
|
|
|
|
+ InterimPaymentCertificate ipc = paymentCertificateMap.get(payNumber);
|
|
if(ipc==null){
|
|
if(ipc==null){
|
|
/*浙江的按照实际的计量单元去显示*/
|
|
/*浙江的按照实际的计量单元去显示*/
|
|
if(!MeterInfo.MB_ZJ.equals(tec.meterInfo.getTemplate())) {
|
|
if(!MeterInfo.MB_ZJ.equals(tec.meterInfo.getTemplate())) {
|
|
@@ -894,7 +898,7 @@ public class ExecutorMeter extends FormulaExecutor {
|
|
}
|
|
}
|
|
});
|
|
});
|
|
if(payItemZj.size()>0){
|
|
if(payItemZj.size()>0){
|
|
- dataList.stream().filter(t->t.getFormName()!=null&&t.getFormName().contains("暂定金")).findFirst().ifPresent(t->{
|
|
|
|
|
|
+/* dataList.stream().filter(t->t.getFormName()!=null&&t.getFormName().contains("暂定金")).findFirst().ifPresent(t->{
|
|
t.setFormName("暂定金额");
|
|
t.setFormName("暂定金额");
|
|
t.setChapterSeq("");
|
|
t.setChapterSeq("");
|
|
t.setCurrentPeriodPay("");
|
|
t.setCurrentPeriodPay("");
|
|
@@ -903,7 +907,7 @@ public class ExecutorMeter extends FormulaExecutor {
|
|
t.setPreviousPeriodEndChangeMoney("");
|
|
t.setPreviousPeriodEndChangeMoney("");
|
|
t.setCurrentPeriodChangeMoney("");
|
|
t.setCurrentPeriodChangeMoney("");
|
|
t.setCurrentPeriodEndChangeMoney("");
|
|
t.setCurrentPeriodEndChangeMoney("");
|
|
- });
|
|
|
|
|
|
+ });*/
|
|
dataList.addAll(payItemZj);
|
|
dataList.addAll(payItemZj);
|
|
/*生成中期支付证书可编辑列表*/
|
|
/*生成中期支付证书可编辑列表*/
|
|
/*合并手写内容*/
|
|
/*合并手写内容*/
|