@model StockCommissionConfig @{ ViewBag.Title = "股票交易成本设置"; Layout = "~/Views/Shared/_InfoLayout.cshtml"; bool isClientEdit = CurUser.客户管理.客户修改; } @section JS{ } @section CSS{ } @using (Html.BeginForm("stockCommissionSetUpEdit", "client", FormMethod.Post, new { id = "stockCommissionSetUpEditForm" })) {
@Html.HiddenFor(model => model.id) @Html.HiddenFor(model => model.EncryptId) @Html.HiddenFor(model => model.ExchangeAccountCode)
@Html.MyDropdownFor1(m => m.StampDutyType, GlobalData.GetSelectItems(StockCommissionConfig.CommissionTypeList), new { @onchange = "changeStampDutyType()" }, "", true, true)
@Html.MyDecimalFor(m => m.StampDuty)
@Html.MyDecimalFor(m => m.MinStampDuty)
@Html.MyDropdownFor1(m => m.CommissionType, GlobalData.GetSelectItems(StockCommissionConfig.CommissionTypeList), new { @onchange = "changeCommissionType()" }, "", true, true)
@Html.MyDecimalFor(m => m.Commission)
@Html.MyDecimalFor(m => m.MinCommission)
@Html.MyDropdownFor1(m => m.TransferFeeType, GlobalData.GetSelectItems(StockCommissionConfig.CommissionTypeList), new { @onchange = "changeTransferFeeType()" }, "", true, true)
@Html.MyDecimalFor(m => m.TransferFee)
@Html.MyDecimalFor(m => m.MinTransferFee)
@Html.MyDropdownFor1(m => m.OtherExpensesType, GlobalData.GetSelectItems(StockCommissionConfig.CommissionTypeList), new { @onchange = "changeOtherExpensesType()" }, "", true, true)
@Html.MyDecimalFor(m => m.OtherExpenses)
@Html.MyDecimalFor(m => m.MinOtherExpenses)
@Html.MyDecimalFor(m => m.MaxOtherExpenses)
@Html.DropDownListFor(n => n.Enabled, GlobalData.QiYongTypes())
}
@MyControls.Btn("保存", "saveStockCommissionSetUp()") @MyControls.Btn("关闭", "layer.closeMe();")