|
@ -11,11 +11,11 @@ |
|
|
<div class="select-list"> |
|
|
<div class="select-list"> |
|
|
<ul> |
|
|
<ul> |
|
|
<li> |
|
|
<li> |
|
|
<label>领料单单号:</label> |
|
|
<label>领料单号:</label> |
|
|
<input type="text" name="requisitieCode"/> |
|
|
<input type="text" name="requisitieCode"/> |
|
|
</li> |
|
|
</li> |
|
|
<li> |
|
|
<li> |
|
|
<label>关联单号:</label> |
|
|
<label>关联订单号:</label> |
|
|
<input type="text" name="correlationCode"/> |
|
|
<input type="text" name="correlationCode"/> |
|
|
</li> |
|
|
</li> |
|
|
<li> |
|
|
<li> |
|
@ -41,7 +41,7 @@ |
|
|
<a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="system:empRequisiteOrder:add"> |
|
|
<a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="system:empRequisiteOrder:add"> |
|
|
<i class="fa fa-plus"></i> 添加 |
|
|
<i class="fa fa-plus"></i> 添加 |
|
|
</a> |
|
|
</a> |
|
|
<a class="btn btn-warning" onclick="exportExcel()" shiro:hasPermission="system:empRequisiteOrder:export"> |
|
|
<a class="btn btn-success" onclick="exportExcel()" shiro:hasPermission="system:empRequisiteOrder:export"> |
|
|
<i class="fa fa-download"></i> 导出 |
|
|
<i class="fa fa-download"></i> 导出 |
|
|
</a> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
@ -110,6 +110,16 @@ |
|
|
title: '流程实例类型', |
|
|
title: '流程实例类型', |
|
|
visible: false |
|
|
visible: false |
|
|
}, |
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
field: 'taskId', |
|
|
|
|
|
title: '当前任务ID', |
|
|
|
|
|
visible: false |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
field: 'todoUserId', |
|
|
|
|
|
title: '待办用户ID', |
|
|
|
|
|
visible: false |
|
|
|
|
|
}, |
|
|
{ |
|
|
{ |
|
|
field: 'applyUser', |
|
|
field: 'applyUser', |
|
|
title: '申请人ID', |
|
|
title: '申请人ID', |
|
@ -120,6 +130,9 @@ |
|
|
title: '当前任务名称', |
|
|
title: '当前任务名称', |
|
|
visible: false |
|
|
visible: false |
|
|
}, |
|
|
}, |
|
|
|
|
|
{title: '审核状态',field: 'auditStatus',visible: false, |
|
|
|
|
|
formatter: function(value, row, index) {return $.table.selectDictLabel(auditStatusDatas, value);} |
|
|
|
|
|
}, |
|
|
{ |
|
|
{ |
|
|
field: 'taskStatus', |
|
|
field: 'taskStatus', |
|
|
title: '当前状态', |
|
|
title: '当前状态', |
|
@ -167,19 +180,6 @@ |
|
|
title: '申请时间', |
|
|
title: '申请时间', |
|
|
align: 'center', |
|
|
align: 'center', |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
|
|
|
field: 'taskId', |
|
|
|
|
|
title: '当前任务ID', |
|
|
|
|
|
visible: false |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
field: 'todoUserId', |
|
|
|
|
|
title: '待办用户ID', |
|
|
|
|
|
visible: false |
|
|
|
|
|
}, |
|
|
|
|
|
{title: '审核状态',field: 'auditStatus',visible: false, |
|
|
|
|
|
formatter: function(value, row, index) {return $.table.selectDictLabel(auditStatusDatas, value);} |
|
|
|
|
|
}, |
|
|
|
|
|
{title: '领料员',field: 'createBy',align: 'center',}, |
|
|
{title: '领料员',field: 'createBy',align: 'center',}, |
|
|
{title: '不含税总价(RMB)',field: 'noRmbSum',visible: false}, |
|
|
{title: '不含税总价(RMB)',field: 'noRmbSum',visible: false}, |
|
|
{title: '含税总价(RMB)',field: 'rmbSum',visible: false}, |
|
|
{title: '含税总价(RMB)',field: 'rmbSum',visible: false}, |
|
@ -203,19 +203,20 @@ |
|
|
var todoUserIdList = row.todoUserId.split(","); |
|
|
var todoUserIdList = row.todoUserId.split(","); |
|
|
if(todoUserIdList.includes(loginName) || loginName == 'admin'){ |
|
|
if(todoUserIdList.includes(loginName) || loginName == 'admin'){ |
|
|
var nodeName = row.taskName=='驳回调整'?' 调整申请':' 审批'; |
|
|
var nodeName = row.taskName=='驳回调整'?' 调整申请':' 审批'; |
|
|
actions.push('<a class="btn btn-success btn-xs" href="javascript:void(0)" onclick="showVerifyDialog(\'' + prefix + '\',\'' + row.taskId + '\', \'' + row.taskName+"-"+"申请" + '\')"><i class="fa fa-edit"></i> '+nodeName+'</a> '); |
|
|
actions.push('<a href="javascript:void(0)" onclick="showVerifyDialog(\'' + prefix + '\',\'' + row.taskId + '\', \'' + row.taskName+"-"+"申请" + '\')"><i class="fa fa-edit"></i> '+nodeName+'</a> '); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
// 审批历史 |
|
|
// 审批历史 |
|
|
actions.push('<a class="btn btn-warning btn-xs" href="javascript:void(0)" onclick="showHistoryDialog(\'' + row.instanceId + '\')"><i class="fa fa-list"></i> 审批历史</a> '); |
|
|
actions.push('<a href="javascript:void(0)" onclick="showHistoryDialog(\'' + row.instanceId + '\')"><i class="fa fa-list"></i> 审批历史</a> '); |
|
|
// 进度查看 |
|
|
// 进度查看 |
|
|
actions.push('<a class="btn btn-info btn-xs" href="javascript:void(0)" onclick="showProcessImgDialog(\'' + row.instanceId + '\')"><i class="fa fa-image"></i> 进度查看</a> '); |
|
|
actions.push('<a href="javascript:void(0)" onclick="showProcessImgDialog(\'' + row.instanceId + '\')"><i class="fa fa-image"></i> 进度查看</a> '); |
|
|
} |
|
|
|
|
|
else if(row.auditStatus === "2"){ |
|
|
|
|
|
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.requisiteId + '\')"><i class="fa fa-edit"></i>编辑</a> '); |
|
|
|
|
|
} |
|
|
} |
|
|
actions.push('<a class="btn btn-primary btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.requisiteId + '\')"><i class="fa fa-search"></i>详情</a> '); |
|
|
// else if(row.auditStatus === "2"){ |
|
|
return actions.join(''); |
|
|
// actions.push('<a class="' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.requisiteId + '\')"><i class="fa fa-edit"></i>编辑</a> '); |
|
|
|
|
|
// } |
|
|
|
|
|
actions.push('<a href="javascript:void(0)" onclick="$.operate.detail(\'' + row.requisiteId + '\')"><i class="fa fa-search"></i>详情</a> '); |
|
|
|
|
|
var actionLinks = actions.join(''); |
|
|
|
|
|
return $.table.dropdownToggle(actionLinks); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
], |
|
|
], |
|
|