Commit c3443676 authored by yanghao's avatar yanghao

chore: 出仓阶段入仓业务修改

parent 39ce7607
...@@ -3901,6 +3901,8 @@ public class OrderWarehouseInServiceImpl extends AbstractService<OrderWarehouseI ...@@ -3901,6 +3901,8 @@ public class OrderWarehouseInServiceImpl extends AbstractService<OrderWarehouseI
applyInfoList.removeIf(t -> t.getName().endsWith("入仓明细")); applyInfoList.removeIf(t -> t.getName().endsWith("入仓明细"));
// 设置差异对象 // 设置差异对象
updateReqVO.setApplyInfoVOList(applyInfoList); updateReqVO.setApplyInfoVOList(applyInfoList);
// 出货 入仓更新
updateReqVO.setIsShipmentUpdate(true);
String details = JSON.toJSONString(updateReqVO); String details = JSON.toJSONString(updateReqVO);
log.info("出货后入仓修改json = {}", details); log.info("出货后入仓修改json = {}", details);
......
...@@ -184,14 +184,6 @@ public class OrderWarehouseInController { ...@@ -184,14 +184,6 @@ public class OrderWarehouseInController {
} }
@GetMapping("/update-callback-when-shipment")
@ApiOperation("出货阶段-入仓修改回调")
public CommonResult<Boolean> updateCallbackWhenShipment(String formId, Integer result) {
orderWarehouseInService.updateApplyCallback(formId, result);
return success(true);
}
@PostMapping("/save-or-update-order-location") @PostMapping("/save-or-update-order-location")
@ApiOperation("新增/更新入仓储位") @ApiOperation("新增/更新入仓储位")
@Idempotent(timeout = 5) @Idempotent(timeout = 5)
......
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