Browse Source

为出库查询添加使用部门(部门负责人字段所在部门)字段

lwx_dev
erdanergou 2 years ago
parent
commit
86f6101fff
  1. 6
      target/classes/templates/pages/application/form-step-look_back.html
  2. 1
      target/classes/templates/pages/depository/table-out.html

6
target/classes/templates/pages/application/form-step-look_back.html

@ -56,9 +56,13 @@
<td id="depositoryName" th:text="${record.getDepositoryName()}">外芯仓库</td>
</tr>
<tr th:style="'display:'+${adisplay}">
<td>部门</td>
<td>申请部门</td>
<td id="adminorg" th:text="${record.getAdminorgName()}">部门</td>
</tr>
<tr >
<td>使用部门</td>
<td id="useAdminorg" th:text="${record.getUseAdminorgName()}">部门</td>
</tr>
<tr th:style="'display:'+${cdisplay}">
<td>施工单位</td>
<td id="constructUnitId" th:text="${record.getConstructionUnitName()}">施工单位</td>

1
target/classes/templates/pages/depository/table-out.html

@ -189,6 +189,7 @@
},
{field: 'applicantName', width: 150, title: '申请人'},
{field: 'adminorgName', width: 150, title: '申请人部门'},
{field: 'useAdminorgName', width: 150, title: '使用部门'},
{field: 'applicantTime', width: 200, title: '申请时间', sort: true},
{
field: 'istransfer', title: '是否为转移申请', minWidth: 120, templet: function (d) {

Loading…
Cancel
Save