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

This commit is contained in:
季圣华
2017-07-11 23:39:40 +08:00
parent ce419eca65
commit 606ac74d14
2 changed files with 5 additions and 1 deletions

View File

@@ -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;
}