|
|
|
@ -126,8 +126,8 @@ public class ProductionReturnServiceImpl implements ProductionReturnService { |
|
|
|
|
|
|
|
@Override |
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
public boolean confirmInboundStorage(String site, String buNo, String orderNo, String locationCode, String userName) { |
|
|
|
logger.info("开始确认生产退仓上架,生产订单号: {}, 库位号: {}", orderNo, locationCode); |
|
|
|
public boolean confirmInboundStorage(String site, String buNo, String orderNo, String locationCode, String userName, String actionType) { |
|
|
|
logger.info("开始确认生产退仓上架,生产订单号: {}, 库位号: {}, 动作类型: {}", orderNo, locationCode, actionType); |
|
|
|
|
|
|
|
try { |
|
|
|
// 调用存储过程 GetSaveLabelVerification |
|
|
|
@ -140,7 +140,7 @@ public class ProductionReturnServiceImpl implements ProductionReturnService { |
|
|
|
params.add(""); // 参数6: 空字符串 |
|
|
|
params.add(""); // 参数7: 空字符串 |
|
|
|
params.add(locationCode); // 参数8: 库位 |
|
|
|
params.add("生产退仓"); // 参数9: 生产退仓 |
|
|
|
params.add(actionType); // 参数9: 生产退仓 或 申请单退仓 |
|
|
|
params.add(userName); // 参数10: 当前登陆人 |
|
|
|
|
|
|
|
List<Map<String, Object>> resultList = procedureMapper.getProcedureData("GetSaveLabelVerification", params); |
|
|
|
|