供应商自助平台V1.0
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.
Go to file
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
api-admin 1.添加单据编辑功能相关接口 3 years ago
api-common 代码备份 3 years ago
scripts 仓库字段新增,根据当前仓库,用户等查询扫码单据,业务单据; 3 years ago
.gitignore first commit 4 years ago
README.md first commit 4 years ago
pom.xml 1.升级fastjson版本到2.x,修复安全漏洞 3 years ago

README.md

udiwms-java