|
|
|
@ -987,4 +987,22 @@ public class WmsHqlPack {
|
|
|
|
|
|
|
|
|
|
return result.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 作业步骤 查询
|
|
|
|
|
*
|
|
|
|
|
* @param wmsActionStepCall
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public static String packHqlWmsActionStepCall(WmsActionStepCall wmsActionStepCall) {
|
|
|
|
|
StringBuffer result = new StringBuffer();
|
|
|
|
|
|
|
|
|
|
//查询参数封装
|
|
|
|
|
HqlPack.getNumEqualPack(wmsActionStepCall.getAsId(), "asId", result);
|
|
|
|
|
HqlPack.getNumEqualPack(wmsActionStepCall.getAmId(), "amId", result);
|
|
|
|
|
|
|
|
|
|
getStringBuilderPack(wmsActionStepCall, result);
|
|
|
|
|
|
|
|
|
|
return result.toString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|