Files
zszq-trs/YLErpWeb/Views/clientApproval/editclientList.cshtml
T
2024-05-09 14:06:26 +08:00

80 lines
3.4 KiB
Plaintext

@{
ViewBag.Title = "客户审批-信息变更审批";
ViewBag.Menu = "客户管理-客户审批";
Layout = "~/Views/Shared/_MainLayout.cshtml";
var pageObj = new
{
approvalList = CurUser.风险控制_接口审批列表,
approvalMode = YLErp.PS.Config.ClientElement.InterfaceApprovalMode,
roles = CurUser.Roles.Select(s => s.Id).ToList(),
isZhaoZheng = YLErp.PS.Config.Company == CompanyEnum.招证,
isDongWu = YLErp.PS.Config.Company == CompanyEnum.东吴,
ViewTagPermission = CurUser.客户管理.客户标签查看权限,
TabIndex = 2,
configcolumn_name = configcolumn_data.客户编辑审批,
};
}
@section CSS{
<link href="~/Style/Css/bankcardView.css" />
<link href="~/Style/Css/clientsettag.css?v=@(HtmlUtil.JsVersion)" rel="stylesheet" />
<style>
.tag-item { height: 17px; line-height: 14px; }
.tag-add { height: 17px; line-height: 14px; }
.tag-context { padding: 0px; }
.bootstrap-select.show-tick .dropdown-menu li a span.text { max-width: 300px; overflow: hidden; text-overflow: ellipsis; }
.OptName-wrap, .date-wrap { display: none !important; }
.spanNone { display: none; }
.no-skin { position: initial !important; }
</style>
}
@section JS{
<script>
const page = @Json.Serialize(pageObj);
var extendFieldName = '@(PS.Config.Is中财 ? "投资知识" : "风险偏好")';
function jqGridInit() {
@Html.Raw(JqGridSimple.OutGrid("/clientApproval/editclientListQuery", isMultiSelect: true, rowNum: 500, height: "500px"));
}
</script>
<script src="/front/clientEditConfig"></script>
<script src="~/scripts/app/client/clientapproval.js?v=@(HtmlUtil.JsVersion)"></script>
}
<div class="searchdiv">
@Html.ShortInput("Name", "客户名称")
@Html.ShortInput("LicenseCode", "证照编号")
@Html.MyAceDropdownInput("ProperClientClass", "适当性类型", DictionaryBLL.GetList("适当性客户分类", false, "", true))
@if (!PS.Config.Is格林大华)
{
@Html.MyAceDropdownInput("CustomerManagerIds", "客户经理", ClientDataModel.GetAllCustomerManager())
}
else
{
@Html.ShortInput("CustomerManagerString", "客户经理")
}
@Html.MyAceDropdownInput("Groupid", "审批组", ClientDataModel.GetApprovalgroups())
@Html.MyAceDropdownInput("ProcessStatus", "客户状态", ClientDataModel.GetProcessStatusForQuery())
@Html.MyAceDropdownInput("TraderIds", "审批提交人", GlobalData.GetAllTrader())
@Html.SearchDateRange("ApprovaOptDate", "提交时间")
@if (pageObj.ViewTagPermission)
{
@Html.MyAceDropdownInput("TagIds", "客户标签", TagController.GetTradeTagList(CurUser, YLErp.Enums.TagTypeEnum.Customer))
}
@Html.MyAceDropdownInput2("IsTradeCredit", "期权费授信", GlobalData.GetYesList())
@MyControls.SearchBtn()
</div>
<div class="tabbable">
<ul id="myTab" class="nav-main">
<li>
<a href="/clientApproval/openingclientList">开户审批</a>
</li>
<li class='active'>
<a href="/clientApproval/editclientList">信息变更审批</a>
</li>
<div style="width:30px;display:inline;position:fixed;right:45px;margin-top:-5px;" onclick="showcolumnChooser();return false;">
<img src="~/Images/configure.png" />
</div>
</ul>
</div>
@Html.Raw(JqGridSimple.OutTable())