add:PDA配盘入库功能
This commit is contained in:
@@ -96,13 +96,14 @@
|
||||
|
||||
<insert id="insertAllData">
|
||||
INSERT INTO md_pb_groupplate(
|
||||
group_id,storagevehicle_code,material_id,pcsn,qty,qty_unit_id,qty_unit_name,ext_code,load_port,create_id,create_name,create_time
|
||||
group_id,storagevehicle_code,material_id,material_code,pcsn,qty,qty_unit_id,qty_unit_name,ext_code,load_port,create_id,create_name,create_time
|
||||
) values
|
||||
<foreach collection="data" item="item" separator=",">
|
||||
(
|
||||
#{item.group_id},
|
||||
#{item.storagevehicle_code},
|
||||
#{item.material_id},
|
||||
#{item.material_code},
|
||||
#{item.pcsn},
|
||||
#{item.qty},
|
||||
#{item.qty_unit_id},
|
||||
|
||||
@@ -58,6 +58,7 @@ public class ProductGroupServiceImpl implements IProductGroupService {
|
||||
json.put("load_port", dto.getLoadPort());
|
||||
json.put("storagevehicle_code", dto.getPalletCode());
|
||||
json.put("material_id", bomData.getMaterialCode());
|
||||
json.put("material_code", bomData.getMaterialCode());
|
||||
json.put("pcsn", "");
|
||||
json.put("qty_unit_id", bomData.getUnit());
|
||||
json.put("qty_unit_name", bomData.getUnit());
|
||||
|
||||
Reference in New Issue
Block a user