@{
ViewBag.Title = "资信等级有效期管理";
Layout = "~/Views/Shared/_MainLayout.cshtml";
var list = CurUser.Roles.Select(s => s.Id).ToList();
string rolesStr = string.Join(",", list);
}
@section CSS{
}
@section JS{
}
@Html.MyAceDropdownInput("ClientId", "客户名称", CurUser.GetClientSelectItems(), true, true, null, false)
@Html.SearchDateRange("RatingDeadLine", "评级终止日")
@Html.MyAceDropdownInput("ProcessStatus", "审批状态", GlobalData.AllCreditProcessStatus())
只显示目前没有有效评级的客户: @Html.CheckBox("ShowExpiredRecords", false)
@MyControls.SearchBtn()
@if (CurUser.客户管理.资信评级修改)
{
@MyControls.Btn("新增", "startAddcredit()")
}
@MyControls.Btn("导出", "exportToCsv()")
@Html.Raw(JqGridSimple.OutTable())