查验接口增加备注字段

release
WangQi 2 years ago
parent cdfdf12dd8
commit 84156e43df
  1. 2
      dxhy-erp/src/main/java/com/dxhy/erp/controller/SDNYMainProcessController.java

@ -561,6 +561,8 @@ public class SDNYMainProcessController extends AbstractController {
checkInvoice.put("totalTax", checkInvoice.getString("taxAmount")); checkInvoice.put("totalTax", checkInvoice.getString("taxAmount"));
checkInvoice.put("amountTax", checkInvoice.getString("totalAmount")); checkInvoice.put("amountTax", checkInvoice.getString("totalAmount"));
checkInvoice.put("totalAmount", checkInvoice.getString("invoiceAmount")); checkInvoice.put("totalAmount", checkInvoice.getString("invoiceAmount"));
// 增加备注字段
checkInvoice.put("remarks", checkInvoice.getString("remark"));
//添加非空判断 //添加非空判断
String invoiceCode = null; String invoiceCode = null;
if (checkInvoice.get("invoiceCode") != null) { if (checkInvoice.get("invoiceCode") != null) {

Loading…
Cancel
Save