Commit 9bc7b6cb authored by tank.li@mushiny.com's avatar tank.li@mushiny.com

创建盘点任务

parent 165fc08e
......@@ -235,6 +235,9 @@ public class WMSService {
baseBpo.setTable(Sql_Table.WMS_ICQA_ORDERPOSITION);
baseBpo.addKV("ICQAID",orderId).addKV("ID",CommonUtils.genUUID())
.addKV("SKUID",CommonUtils.parseString("ID",map));
//增加几条字段
baseBpo.addKV("STATE",Sql_Table.NEW);
baseBpo.addKV("AMOUNT",0);//TODO当前库存
this.jdbcRepository.insertBusinessObject(baseBpo);
}
......@@ -269,6 +272,9 @@ public class WMSService {
baseBpo.setTable(Sql_Table.WMS_ICQA_ORDERPOSITION);
baseBpo.addKV("ICQAID",orderId).addKV("ID",CommonUtils.genUUID())
.addKV("SKUID",skuId);
//增加几条字段
baseBpo.addKV("STATE",Sql_Table.NEW);
baseBpo.addKV("AMOUNT",0);//TODO当前库存
this.jdbcRepository.insertBusinessObject(baseBpo);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment