开发波次计划功能

yun-zuoyi
袁津哲 5 years ago
parent ffbd512b89
commit cb8a090aea

@ -48,5 +48,10 @@ public class WmsBusiType extends BaseBean {
@ApiParam("移动类型")
public Integer moveType;
/**
* 10-20-
*/
@Column(name = "IS_ENABLE_WAVE")
@ApiParam("是否启用波次计划")
public Integer isEnableWave;
}

@ -140,6 +140,11 @@ public class WmsDocMovementDetails extends BaseBean {
@ApiParam(value = "已移库数量", example = "1")
private Double moveQty;
@Column(name = "TASK_GENERATE_QTY", columnDefinition = "decimal(18,8)")
@ColumnDefault("0")
@ApiParam(value = "任务生成数量", example = "1")
private Double taskGenerateQty;
@Column(name = "SRC_AREA_NO")
@ApiParam("源库存地代码")
public String srcAreaNo;

@ -2877,4 +2877,18 @@ public class WmsHqlPack {
return result;
}
/**
*
* @param rule
* @return
*/
public static DdlPackBean packHqlWmsWaveRule(WmsWaveRule rule) {
DdlPackBean result = new DdlPackBean();
DdlPreparedPack.getStringEqualPack(rule.getRuleCode(), "ruleCode", result);
DdlPreparedPack.getStringBiggerPack(rule.getStartEffectDate(), "startEffectDate", result);
DdlPreparedPack.getStringSmallerPack(rule.getEndEffectDate(), "endEffectDate", result);
getStringBuilderPack(rule, result);
return result;
}
}

Loading…
Cancel
Save