@{ ViewBag.Title = "交易预付金模板列表"; Layout = "~/Views/Shared/_MainLayout.cshtml"; } @section JS{ }
@Html.ShortInput("TradeNumber", "交易编号") @Html.MyAceDropdownInput("ClientId", "客户名称", ClientDataModel.GetAllClient(), false, true, null, false) @Html.SearchDateRange("TradeDate", "交易日期:") @Html.SearchDateRange("ExerciseDate", "到期日期:") @{ var types = ConsTrade.OptionTradeTypes.Concat(new[] { /*"结构化交易",*/ "黑箱结构" }).ToList(); } @Html.MyAceDropdownInput("TradeTypes", "结构类型", GlobalData.GetSelectItems(types)) @Html.MyAceDropdownInput("TradeStatus", "交易状态:", GlobalData.GetSelectItems(ConsTrade.AllTradeStatus), true) @Html.SearchDateRange("UnwindDate", "交易终止日") @Html.MyAceDropdownInput2("BuySell", "交易方向", GlobalData.GetSelectItems(new List { "买入", "卖出" })) @Html.MyAceDropdownInput2("InitialMargin", "初始预付金", new List { new SelectItem { Value = "0", Text = "全部" }, new SelectItem { Value = "1", Text = "=0" }, new SelectItem { Value = "2", Text = "!=0" } }) @Html.MyAceDropdownInput("MarginTemplate", "预付金模板", tradeController.GetTradeMarginTemplateList()) @Html.MyAceDropdownInput2("MarginRuleType", "预付金规则", margin_template_v2Controller.GetAllRuleType()) @Html.MyAceDropdownInput2("IsDefault", "全局组合", GlobalData.GetSelectItems(new Dictionary { { "否", "0" }, { "是", "1" } }))
@MyControls.SearchBtn()
@Html.Raw(JqGridSimple.OutTable())