自动化立体仓库 - WMS系统
#
luxiaotao1123
2022-12-08 557cda61a3c85a620335d28b9c0e1f0d482cd41e
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;
    }
}