You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spms-java/api-admin
x_z 7938c80929 1.添加单据编辑功能相关接口
2.扫码单据和业务单据添加审核时间字段

----- 添加数据sql脚本 -----

-- 扫码单据表添加审核时间字段
ALTER TABLE `spms`.`io_order`
ADD COLUMN `auditTime` datetime NULL COMMENT '审核时间' AFTER `updateTime`;
-- 刷写审核时间字段
update io_order set auditTime = updateTime;

-- 业务单据表添加审核时间字段
ALTER TABLE `spms`.`stock_order`
ADD COLUMN `auditTime` datetime NULL COMMENT '审核时间' AFTER `updateTime`;

-- 刷写审核时间字段
update stock_order set auditTime = updateTime;
3 years ago
..
src 1.添加单据编辑功能相关接口 3 years ago
.gitignore 订单打印模板,内部码模板 4 years ago
pom.xml 代码备份 3 years ago