yun-zuoyi
于学杰 6 years ago
commit 9282edf93a

@ -29,7 +29,7 @@ public class WmsActionResponseBean<Obj> implements Serializable {
public Map<String, Obj> barCode;
@ApiParam("进度")
public String percent ="消息提示:";
public String percent = "消息提示:";
@ApiParam("当前步骤")
public Integer currentStep;
@ -97,6 +97,9 @@ public class WmsActionResponseBean<Obj> implements Serializable {
@ApiParam(value = "是否完成流程操作")
public Boolean isComplete = false;
@ApiParam(value = "交易类型信息")
public WmsTransType wmsTransType;
public WmsActionResponseBean(Boolean codeStatus, String message) {
this.codeStatus = codeStatus;
this.message = message;

@ -13,6 +13,7 @@ import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Index;
import javax.persistence.Table;
import java.math.BigDecimal;
/**
* @Description :
@ -137,6 +138,10 @@ public class WmsTaskDetails extends BaseBean {
return this.qty == null ? 0 : this.qty;
}
public String getQtyTxt(){
return new BigDecimal(getQty() + "").stripTrailingZeros().toPlainString();
}
public Double getTransQty() {
return this.transQty == null ? 0 : this.transQty;
}

@ -89,4 +89,11 @@ public class WmsZones extends BaseBean {
@Transient
@ApiParam(value ="子存储区列表")
private List<WmsZones> childList;
public WmsZones(String zoneNo){
this.zoneNo = zoneNo;
}
public WmsZones(){}
}

@ -1998,5 +1998,23 @@ public class WmsHqlPack {
return result;
}
/**
*
*
* @param zoneNoList
*@param wmsZones
* @param locateType
* @return
*/
public static DdlPackBean packLocateNoByZoneNo(List<String> zoneNoList , WmsZones wmsZones , Integer locateType) {
DdlPackBean result = new DdlPackBean();
//查询参数封装
DdlPreparedPack.getInPackList(zoneNoList, "zoneNo", result);
DdlPreparedPack.getNumEqualPack(locateType, "locateType", result);
getStringBuilderPack(wmsZones, result);
return result;
}
}

Loading…
Cancel
Save