给供应商查询增加联系人的参数

This commit is contained in:
jishenghua
2025-04-13 17:04:28 +08:00
parent 29ac8d4e29
commit c5324f4ef1
4 changed files with 9 additions and 3 deletions

View File

@@ -69,9 +69,10 @@ public class SupplierController extends BaseController {
HttpServletRequest request)throws Exception {
String supplier = StringUtil.getInfo(search, "supplier");
String type = StringUtil.getInfo(search, "type");
String contacts = StringUtil.getInfo(search, "contacts");
String phonenum = StringUtil.getInfo(search, "phonenum");
String telephone = StringUtil.getInfo(search, "telephone");
List<Supplier> list = supplierService.select(supplier, type, phonenum, telephone);
List<Supplier> list = supplierService.select(supplier, type, contacts, phonenum, telephone);
return getDataTable(list);
}