47 lines
1.8 KiB
Plaintext
47 lines
1.8 KiB
Plaintext
@{
|
|
ViewBag.Title = "信用风险";
|
|
ViewBag.Menu = "结算财务-信用风险";
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
}
|
|
@section CSS{
|
|
<style>
|
|
</style>
|
|
}
|
|
@section JS{
|
|
<script type="text/javascript">
|
|
var page = {
|
|
ValueDate:'@valuedateBLL.ValueDate.ToString("yyyy-MM-dd")',
|
|
};
|
|
function ConfirmTemplateChoose() {
|
|
window.location.href = "/client/ClientTemplateChoose";
|
|
}
|
|
</script>
|
|
<script src="~/Scripts/app/tradeHelper.js?v=@HtmlUtil.JsVersion"></script>
|
|
<script src="~/Statics/libs/export/excellentexport.js?v=@(HtmlUtil.JsVersion)"></script>
|
|
<script src="~/Scripts/app/client/clientCreditRisk.js"></script>
|
|
}
|
|
|
|
<div class="searchdiv">
|
|
<div class="first-wrap-gtja">
|
|
|
|
@Html.MyAceDropdownInput("ClientIds", "客户名称", CurUser.GetClientSelectItems(CurUser.交易管理_查看所有交易), false, true, null, true)
|
|
@Html.MyAceDropdownInput("BoundSide", "资金流向", new List<SelectListItem>() { new SelectListItem() { Text = "北向", Value = "0" }, new SelectListItem() { Text = "南向", Value = "1" } }, false, true, null, false)
|
|
@Html.ShortInput("ValueDate", "结算日期:")
|
|
需要追保: @Html.CheckBox("NeedMarginCall", false)
|
|
@MyControls.SearchBtn()
|
|
@if (CurUser.结算管理_信用风险报告操作)
|
|
{
|
|
@MyControls.Btn("配置报告", "PopDesc()")
|
|
@MyControls.Btn("发送报告", "SendReport()")
|
|
@MyControls.Btn("设置客户邮件模板", "ConfirmTemplateChoose()")
|
|
}
|
|
@MyControls.Btn("导出", "downloadExcel()")
|
|
@MyControls.Btn("导出客户资金余额", "downloadClientCashRemian()")
|
|
</div>
|
|
</div>
|
|
|
|
<form target="_blank" method="post" id="exportForm" action="">
|
|
<input type="hidden" name="" value="" />
|
|
</form>
|
|
@Html.Raw(JqGridSimple.OutTable())
|