|
|
|
@ -385,6 +385,10 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
@ApiParam(value = "实际发运时间")
|
|
|
|
|
private String actualPlanTime;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "目的库位名称")
|
|
|
|
|
public String destLocateName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getRecommondLot() {
|
|
|
|
|
return recommondLot == null ? "无" : this.recommondLot;
|
|
|
|
@ -715,4 +719,12 @@ public WmsDocMovementDetails (String partNo,String orderNo) {
|
|
|
|
|
this.custNo = custNo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsDocMovementDetails(String orderNo, String srcZoneNo, String destZoneNo, String destLocateNo, String locateName) {
|
|
|
|
|
this.orderNo = orderNo;
|
|
|
|
|
this.srcZoneNo = srcZoneNo;
|
|
|
|
|
this.destZoneNo = destZoneNo;
|
|
|
|
|
this.destLocateNo = destLocateNo;
|
|
|
|
|
this.destLocateName = locateName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|