|
|
|
@ -11,6 +11,8 @@ import cn.estsh.i3plus.pojo.wms.bean.*;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.bean.dynamictable.WmsFieldInfo;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.bean.dynamictable.WmsSearchElementFunction;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.bean.plugin.BasPlugin;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.bean.template.BasImportTemplate;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.bean.template.BasImportTemplateDetails;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.dbinterface.WmsInterfaceDataMapper;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.engine.rule.EngineRulePersistence;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.engine.script.EngineScriptPersistence;
|
|
|
|
@ -3082,4 +3084,29 @@ public class WmsHqlPack {
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 导入模板信息分页查询条件
|
|
|
|
|
* @param template
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public static DdlPackBean packHqlBasImportTemplate(BasImportTemplate template) {
|
|
|
|
|
DdlPackBean result = new DdlPackBean();
|
|
|
|
|
DdlPreparedPack.getStringLikerPack(template.getTemplateName(), "templateName", result);
|
|
|
|
|
DdlPreparedPack.getStringEqualPack(template.getTemplateCode(), "templateCode", result);
|
|
|
|
|
getStringBuilderPack(template, result);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 导入模板明细信息分页查询条件
|
|
|
|
|
* @param details
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public static DdlPackBean packHqlBasImportTemplateDetails(BasImportTemplateDetails details) {
|
|
|
|
|
DdlPackBean result = new DdlPackBean();
|
|
|
|
|
DdlPreparedPack.getStringEqualPack(details.getTemplateCode(), "templateCode", result);
|
|
|
|
|
getStringBuilderPack(details, result);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|