Commit 806f38b32db18bd01ef4595dbc84b4c710418b1a

Authored by mahuandong
1 parent c7a0e440

入库单添加重置按钮,入库单历史添加上游单号搜索

src/main/resources/templates/receipt/receiptContainerHeader/receiptContainerHeader.html
... ... @@ -50,6 +50,7 @@
50 50 </li>
51 51 <li>
52 52 <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
  53 + <a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset('receiptContainerHeader-form')"><i class="fa fa-refresh"></i>&nbsp;重置</a>
53 54 <!--<a class="btn btn-success btn-rounded btn-sm" onclick="$.table.exportExcel()" shiro:hasPermission="receipt:receiptHeader:export"><i class="fa fa-download"></i>&nbsp;导出</a>-->
54 55 </li>
55 56 </ul>
... ...
src/main/resources/templates/receipt/receiptDetail/receiptDetail.html
... ... @@ -24,6 +24,7 @@
24 24 <!--</li>-->
25 25 <li>
26 26 <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
  27 + <a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset('receiptDetail-form')"><i class="fa fa-refresh"></i>&nbsp;重置</a>
27 28 <!--<a class="btn btn-success btn-rounded btn-sm" onclick="$.table.exportExcel()" shiro:hasPermission="receipt:receiptDetail:export"><i class="fa fa-download"></i>&nbsp;导出</a>-->
28 29 </li>
29 30 </ul>
... ...
src/main/resources/templates/receipt/receiptHeader/receiptHeader.html
... ... @@ -36,7 +36,7 @@
36 36 入库单号:<input type="text" name="code"/>
37 37 </li>
38 38 <li>
39   - 上游单号:<input type="text" name="sourceCode"/>
  39 + 上游单号:<input type="text" name="referCode"/>
40 40 </li>
41 41 <li>
42 42 货主:<select id="companyCode" name="companyCode" th:with="list=${@companyService.getCode()}">
... ... @@ -72,6 +72,7 @@
72 72 </li>
73 73 <li>
74 74 <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
  75 + <a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset('receiptHeader-form')"><i class="fa fa-refresh"></i>&nbsp;重置</a>
75 76 </li>
76 77 </ul>
77 78 </div>
... ...
src/main/resources/templates/receipt/receiptHeaderHistory/receiptHeaderHistory.html
... ... @@ -21,6 +21,9 @@
21 21 入库单号:<input type="text" name="code"/>
22 22 </li>
23 23 <li>
  24 + 上游单号:<input type="text" name="referCode"/>
  25 + </li>
  26 + <li>
24 27 <!--入库类型:<input type="text" name="sourceCode"/>-->
25 28 入库类型:<select name="type" th:with="type=${@receiptTypeService.getType()}">
26 29 <option value="">所有</option>
... ...