Browse Source

[feat] 工程管理

Bom前端列表页面新增加工方式筛选条件
修改半成品类型为加工方式
修改bom后端分页查询接口新增加工方式
dev
liuxiaoxu 2 months ago
parent
commit
00fdb375fa
  1. 12
      ruoyi-admin/src/main/resources/templates/erp/bom/bom.html

12
ruoyi-admin/src/main/resources/templates/erp/bom/bom.html

@ -39,6 +39,16 @@
</optgroup> </optgroup>
</select> </select>
</li> </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>
</li>
<li> <li>
<label>审核状态:</label> <label>审核状态:</label>
<select name="auditStatus" th:with="type=${@dict.getType('auditStatus')}"> <select name="auditStatus" th:with="type=${@dict.getType('auditStatus')}">
@ -158,7 +168,7 @@
{title: '描述',field: 'describe',width:80, {title: '描述',field: 'describe',width:80,
}, },
{ title: '品牌',field: 'brand', sortable: true,width: 70,}, { title: '品牌',field: 'brand', sortable: true,width: 70,},
{title: '半成品类型',field: 'processMethod',width: 120, {title: '加工方式',field: 'processMethod',width: 120,
formatter: function(value, row, index) {return $.table.selectDictLabel(processMethodDatas, value);; formatter: function(value, row, index) {return $.table.selectDictLabel(processMethodDatas, value);;
} }
}, },

Loading…
Cancel
Save