|
|
@@ -91,13 +91,13 @@ Ext.define('saas.view.document.product.FormController', {
|
|
|
}],
|
|
|
//窗口字段设置
|
|
|
dbSearchFields:[{
|
|
|
- emptyText:'输入仓库编号或仓库名称',
|
|
|
+ emptyText:'输入仓库编号或仓库名称或仓库类型',
|
|
|
xtype : "textfield",
|
|
|
name : "wh_code",
|
|
|
allowBlank : true,
|
|
|
columnWidth : 0.25,
|
|
|
getCondition:function(v){
|
|
|
- return "wh_code like '%" + v + "%' or wh_description like '%"+ v +"%'";
|
|
|
+ return "wh_code like '%" + v + "%' or wh_description like '%"+ v +"%' or wh_type like '%" + v + "%'";
|
|
|
}
|
|
|
}],
|
|
|
//窗口列设置
|
|
|
@@ -113,7 +113,12 @@ Ext.define('saas.view.document.product.FormController', {
|
|
|
"dataIndex": "wh_code",
|
|
|
"width": 100,
|
|
|
"xtype": "",
|
|
|
- }, {
|
|
|
+ },{
|
|
|
+ "text": "仓库类型",
|
|
|
+ "flex": 1,
|
|
|
+ "dataIndex": "wh_type",
|
|
|
+ "xtype": "",
|
|
|
+ },{
|
|
|
"text": "仓库名称",
|
|
|
"flex": 1,
|
|
|
"dataIndex": "wh_description",
|