Ver código fonte

资产验收打印表单中添加财务处审核

金隅分支
zhangli 3 anos atrás
pai
commit
58732962c4
1 arquivos alterados com 8 adições e 1 exclusões
  1. +8
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.cshtml

+ 8
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.cshtml Ver arquivo

@@ -53,6 +53,8 @@
<tr>
<td> 校领导审核(签字):</td>
<td><span id="xld"></span></td>
<td> 财务处审核(签字):</td>
<td><span id="cwc"></span></td>
</tr>
</table>
</div>
@@ -209,7 +211,7 @@
$('#t_tbody').html(html);

if (TaskLogData && TaskLogData.data) {
var bmgl = "", bmuser = '', cwuser = '', sbgl = '', sbgluser = '', xld = '';
var bmgl = "", bmuser = '', cwuser = '', sbgl = '', sbgluser = '', xld = '', cwc='';
for (var i = 0; i < TaskLogData.data.length; i++) {
var item = TaskLogData.data[i];
if (item && item.F_NodeId) {
@@ -237,6 +239,10 @@
if (item.F_NodeId == '199c2bd4-46d7-2142-2429-a9bb429181bf') {
xld = getUser(item.F_CreateUserId, item.F_CreateUserName);
}
//财务处审核
if (item.F_NodeId == '391378d7-439a-0a63-89d5-8444b717f784') {
cwc = getUser(item.F_CreateUserId, item.F_CreateUserName);
}
}
}

@@ -246,6 +252,7 @@
$('#sbgl').html(sbgl);
$('#sbgluser').html(sbgluser);
$('#xld').html(xld);
$('#cwc').html(cwc);
}

}


Carregando…
Cancelar
Salvar