|
|
@ -2408,4 +2408,24 @@ public class WmsHqlPack {
|
|
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 物料关系查询条件封装
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param wmsPartRelation
|
|
|
|
|
|
|
|
* @return
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public static DdlPackBean packHqlWmsPartRelation(WmsPartRelation wmsPartRelation) {
|
|
|
|
|
|
|
|
DdlPackBean result = new DdlPackBean();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DdlPreparedPack.getStringRightLikerPack(wmsPartRelation.getPartNo(), "partNo", result);
|
|
|
|
|
|
|
|
DdlPreparedPack.getStringLikerPack(wmsPartRelation.getPartName(), "partName", result);
|
|
|
|
|
|
|
|
DdlPreparedPack.getStringLikerPack(wmsPartRelation.getAssociateCode(), "associateCoded", result);
|
|
|
|
|
|
|
|
DdlPreparedPack.getStringLikerPack(wmsPartRelation.getAssociateNameAdd(), "associateNameAdd", result);
|
|
|
|
|
|
|
|
DdlPreparedPack.getNumEqualPack(wmsPartRelation.getAssociateType(), "associateType", result);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getStringBuilderPack(wmsPartRelation, result);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|