修改选择物料controller接口,去除权限; 新增物料搜索栏加工方式下拉框搜索功能;
@ -114,7 +114,7 @@ public class ErpMaterialController extends BaseController
}
/**
* 物料信息审核,通过物料查询*/
@RequiresPermissions("erp:material:list")
// @RequiresPermissions("erp:material:list")
@PostMapping("/selectList")
@ResponseBody
public TableDataInfo selectList(ErpMaterialVo erpMaterialVo)
@ -19,6 +19,13 @@
<label>物料名称:</label>
<input type="text" name="materialName"/>
</li>
<li>
<label>加工方式:</label>
<select name="processMethod" th:with="type=${@dict.getType('processMethod')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
<label>审核状态:</label>
<select name="auditStatus" th:with="type=${@dict.getType('auditStatus')}">