天津麦格纳看板BUG修复

yun-zuoyi
puxiao.liao 5 years ago
parent cd2076d66a
commit c0d52b93f7

@ -320,7 +320,7 @@ public class WmsDocMovementDetails extends BaseBean {
@Transient
@ApiParam(value = "订单总数量")
private Integer itemCount;
private Long itemCount;
@Transient
@ApiParam(value = "完成订单数量")
@ -381,9 +381,6 @@ public class WmsDocMovementDetails extends BaseBean {
@ApiParam(value = "最早需求时间")
private String firstTime;
@Transient
@ApiParam(value = "处理中/创建中订单总数量")
private Long handleItemCount;
public String getRecommondLot() {
return recommondLot == null ? "无" : this.recommondLot;
@ -494,7 +491,7 @@ public class WmsDocMovementDetails extends BaseBean {
}
public WmsDocMovementDetails(String createDatetime, String srcZoneNo, String srcLocateNo, String destLocateNo, String createUser, Integer itemStatus, String orderNo, Long handleItemCount, String planTime) {
public WmsDocMovementDetails(String createDatetime, String srcZoneNo, String srcLocateNo, String destLocateNo, String createUser, Integer itemStatus, String orderNo, String planTime, Long itemCount) {
this.createDatetime = createDatetime;
this.srcZoneNo = srcZoneNo;
this.srcLocateNo = srcLocateNo;
@ -502,8 +499,8 @@ public class WmsDocMovementDetails extends BaseBean {
this.createUser = createUser;
this.itemStatus = itemStatus;
this.orderNo = orderNo;
this.handleItemCount = handleItemCount;
this.planTime = planTime;
this.itemCount = itemCount;
}
public WmsDocMovementDetails (String orderNo, String srcZoneNo, String destZoneNo, String destLocateNo) {

Loading…
Cancel
Save