Commit 2ae5bbdd authored by TIANZHI.HU's avatar TIANZHI.HU

对账单打印根据客户要求修改 add by 39135 HuTianzhi

parent 0a863b7e
...@@ -345,11 +345,16 @@ public class ConExportServiceImpl implements ConExportService { ...@@ -345,11 +345,16 @@ public class ConExportServiceImpl implements ConExportService {
cell.setCellStyle(contentTable); cell.setCellStyle(contentTable);
cell.setCellValue(new DecimalFormat().parse(map1.get("UNRECEIVED_AMOUNT").toString()).doubleValue());// 未收金额 cell.setCellValue(new DecimalFormat().parse(map1.get("UNRECEIVED_AMOUNT").toString()).doubleValue());// 未收金额
}else{ }else{
cell.setCellValue(""); cell.setCellValue("0");
} }
} }
} else { } else {
cell.setCellValue(""); // 未收金额 BigDecimal x = new BigDecimal(100);
if(x.compareTo((BigDecimal) map1.get("CF_ITEM")) ==0){
cell.setCellValue("");
}else{
cell.setCellValue("0"); // 未收金额
}
} }
cell.setCellStyle(contentTable); cell.setCellStyle(contentTable);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment