|
|
|
@ -2,7 +2,6 @@ package cn.estsh.i3plus.pojo.wms.sqlpack;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.tool.HqlPack;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.bean.*;
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description : 仓库管理对象封装
|
|
|
|
@ -360,6 +359,12 @@ public class WmsHqlPack {
|
|
|
|
|
HqlPack.getStringLikerPack(basCustomer.getCustName(), "custName", result);
|
|
|
|
|
//客户全称
|
|
|
|
|
HqlPack.getStringLikerPack(basCustomer.getCustDesc(), "custDesc", result);
|
|
|
|
|
//客户地址
|
|
|
|
|
HqlPack.getStringLikerPack(basCustomer.getCustAddr(), "custAddr", result);
|
|
|
|
|
//聯係人
|
|
|
|
|
HqlPack.getStringLikerPack(basCustomer.getCustOwner(), "custOwner", result);
|
|
|
|
|
//電話號碼
|
|
|
|
|
HqlPack.getStringLikerPack(basCustomer.getCustTel(), "custTel", result);
|
|
|
|
|
return result.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|