Commit 606ac74d authored by 季圣华's avatar 季圣华
Browse files

优化单位信息,将非会员设为系统项

parent ce419eca
......@@ -28,7 +28,7 @@ public class SupplierAction extends BaseAction<SupplierModel>
{
private SupplierIService supplierService;
private SupplierModel model = new SupplierModel();
private final static Integer ISYSTEM = 1;
/**
* 增加供应商
* @return
......@@ -456,6 +456,7 @@ public class SupplierAction extends BaseAction<SupplierModel>
condition.put("phonenum_s_like", model.getPhonenum());
condition.put("email_s_like", model.getEmail());
condition.put("description_s_like", model.getDescription());
condition.put("isystem_n_eq", ISYSTEM);
condition.put("id_s_order", "desc");
return condition;
}
......
......@@ -168,6 +168,9 @@
//初始化表格数据
function initTableData()
{
//改变宽度和高度
$("#searchPanel").panel({width:webW-2});
$("#tablePanel").panel({width:webW-2});
$('#tableData').datagrid({
//title:'单位列表',
//iconCls:'icon-save',
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment