出库单添加车次;

This commit is contained in:
王奎兴
2026-06-03 15:30:19 +08:00
parent 0dd6615af7
commit dc14e04d9d
12 changed files with 31 additions and 28 deletions
@@ -229,6 +229,7 @@ public class ReservationStockInOrderImpl extends ServiceImpl<ReservationStockInO
reservationStockOutOrderDO.setRoute(deliveryHeader.getDeliveryLineNo());
reservationStockOutOrderDO.setReservationOrderSource("数据导入");
reservationStockOutOrderDO.setOutboundDate(deliveryHeader.getDeliveryDate());
reservationStockOutOrderDO.setTrainNo(deliveryHeader.getTrainNumber());
int index = 1;
List<ReservationOutMaterialDetailDO> reservationOutMaterialDetailDOList = new ArrayList<>();
for (ProductDetail productDetail : productDetailList) {
@@ -482,4 +482,8 @@ public class ReservationStockOutOrder extends BaseVOEntity {
@Excel(name = "运输业务单号")
private String businessNumber;
@ApiModelProperty("车次")
@Excel(name = "车次")
private Integer trainNo;
}
@@ -499,4 +499,7 @@ public class ReservationStockOutOrderPO extends BaseVOEntity {
@ApiModelProperty("NC客户编码")
private String customerNcCode;
@ApiModelProperty("车次")
@Excel(name = "车次")
private Integer trainNo;
}
@@ -534,4 +534,7 @@ public class ReservationStockOutOrderDO extends BaseVOEntity {
@ApiModelProperty("NC客户编码")
private String customerNcCode;
@ApiModelProperty("车次")
@Excel(name = "车次")
private Integer trainNo;
}
@@ -523,4 +523,7 @@ public class ReservationStockOutOrderDTO extends ReservationStockOutOrderBaseDTO
@ApiModelProperty("NC客户编码")
private String customerNcCode;
@ApiModelProperty("车次")
@Excel(name = "车次")
private Integer trainNo;
}