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