Commit b101face by liuyang

2024-09-03 生成销售开票去掉空判断

parent 60e6b5de
...@@ -268,7 +268,7 @@ public class ServiceHGCW010 extends ServiceBase { ...@@ -268,7 +268,7 @@ public class ServiceHGCW010 extends ServiceBase {
} }
catch (Exception e) { catch (Exception e) {
LogUtils.setMsg(inInfo, e, "生成收款单失败"); LogUtils.setMsg(inInfo, e, "生成销售开票失败");
} }
return inInfo; return inInfo;
} }
......
...@@ -786,7 +786,7 @@ public class HGCWTools { ...@@ -786,7 +786,7 @@ public class HGCWTools {
List<HGCW011> results = DaoBase.getInstance().query(HGCW011.QUERY,new HashMap<String,Object>(){ List<HGCW011> results = DaoBase.getInstance().query(HGCW011.QUERY,new HashMap<String,Object>(){
{put("settlementNumbers",settlementNumber);} {put("settlementNumbers",settlementNumber);}
}); });
AssertUtils.isEmpty(results, "找不到对应的销售开票记录!"); //AssertUtils.isEmpty(results, "找不到对应的销售开票记录!");
BigDecimal totalAmount = new BigDecimal("0"); BigDecimal totalAmount = new BigDecimal("0");
for (HGCW011 hgcw011: results) { for (HGCW011 hgcw011: results) {
totalAmount = totalAmount.add(hgcw011.getTotalContractPriceIncluding()); totalAmount = totalAmount.add(hgcw011.getTotalContractPriceIncluding());
......
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