- 黑名单新增、删除、批量导入、批量移出在配置审批节点后,审批通过才生效 - 新增黑名单待提交后可提交审批;仅首节点未审批时可撤回,进入后续节点禁止撤回 - 增加黑名单审批列表、审批弹窗、审批操作日志及状态筛选 - 支持审批配置中的“黑名单审批”流程及对应菜单、模块权限、操作权限 - 黑名单审批中禁止同名记录覆盖备注;已在黑名单中的同名导入会明确提示本次将修改备注 - 未配置审批节点时保持原有直接生效行为 - 增加黑名单审批状态机单测,39/39 通过 - 修正撤回全部失败时仍提示“撤回审批成功”的问题
15 lines
555 B
Plaintext
15 lines
555 B
Plaintext
@model IEnumerable<YLErp.DBModels.ClientBlackLog>
|
|
@{
|
|
ViewBag.Title = "黑名单操作历史";
|
|
Layout = "~/Views/Shared/_InfoLayout.cshtml";
|
|
}
|
|
<table class="table table-bordered">
|
|
<thead><tr><th>时间</th><th>操作人</th><th>操作内容</th><th>说明</th></tr></thead>
|
|
<tbody>
|
|
@foreach (var item in Model ?? Enumerable.Empty<YLErp.DBModels.ClientBlackLog>())
|
|
{
|
|
<tr><td>@item.OptDate.ToString("yyyy-MM-dd HH:mm:ss")</td><td>@item.OptName</td><td>@item.OptType</td><td>@item.Changes</td></tr>
|
|
}
|
|
</tbody>
|
|
</table>
|