Merge branch 'develop' into feature/NoScanning
This commit is contained in:
commit
ee7568d987
|
|
@ -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();
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue