Merge branch 'develop' into feature/NoScanning

This commit is contained in:
曹鹏飞 2026-06-03 10:18:00 +08:00
commit ee7568d987
3 changed files with 6 additions and 4 deletions

View File

@ -1195,7 +1195,7 @@ public class NormalPGIController extends BaseController {
content.setReceiveType("BY_DELIVERY"); content.setReceiveType("BY_DELIVERY");
content.setLineVOList(new ArrayList<>()); content.setLineVOList(new ArrayList<>());
dto.setContent(content); dto.setContent(content);
dto.setCode("SCAN_RCV_RECEIVE_TO_SRM"); dto.setCode("WMS_RCV_RECEIVE_TO_SRM");
qcDto.setPushDto(dto); qcDto.setPushDto(dto);
} }
srmPushDto = qcDto.getPushDto(); srmPushDto = qcDto.getPushDto();

View File

@ -98,6 +98,7 @@ public class OutAssistanceController extends BaseController {
@Resource @Resource
private IOptRecordService optRecordService; private IOptRecordService optRecordService;
@Resource @Resource
private IWmsOutProduceService outProduceService; private IWmsOutProduceService outProduceService;

View File

@ -452,9 +452,9 @@ public class StructuralPackageOrderController extends BaseController {
// 获取托盘号如果物料项有关联的托盘则使用托盘号否则为空 // 获取托盘号如果物料项有关联的托盘则使用托盘号否则为空
if (item.getTrayId() != null) { if (item.getTrayId() != null) {
WmsStructuralPackageOrderTray tray = trays.stream() WmsStructuralPackageOrderTray tray = trays.stream()
.filter(t -> t.getId().equals(item.getTrayId())) .filter(t -> t.getId().equals(item.getTrayId()))
.findFirst() .findFirst()
.orElse(null); .orElse(null);
if (tray != null) { if (tray != null) {
ivo.setNo(tray.getNo()); ivo.setNo(tray.getNo());
} else { } else {
@ -519,6 +519,7 @@ public class StructuralPackageOrderController extends BaseController {
/** /**
* 获取托盘零件列表 * 获取托盘零件列表
*
* @param id 订单id * @param id 订单id
*/ */
@GetMapping("getItems") @GetMapping("getItems")