src/main/java/com/zy/common/service/erp/ErpService.java
@@ -119,4 +119,13 @@ return erpSqlServer.update(sql) > 0; } /** * 新增 VoucherDetail 表 */ public boolean insertVoucherDetail(VoucherDetail voucherDetail){ String sql = "update VoucherDetail set LastUpdatedDate = ''{1}'' where VoucherID = ''{0}''"; sql = MessageFormat.format(sql, voucherID, DateUtils.convert(new Date())); return erpSqlServer.update(sql) > 0; } }