@model ApprovalGrade
@{
ViewBag.Title = "簿记账户 | 簿记审批编辑";
Layout = "~/Views/Shared/_InfoLayout.cshtml";
var pageObj = new
{
IsNew = Model.id == 0,
HasGroup = ConsUserGroup.HasGroup,
TraderNames = Model.TraderNames,
assetId = Model.AssetId,
IsDongGuan = PS.Config.Company == CompanyEnum.东莞
};
}
@section CSS{
}
@section JS{
}
@using (Html.BeginForm("approvalGradeEdit", "approvalGrade", FormMethod.Post, new { id = "approvalGradeEditForm", autocomplete = "off" }))
{
@Html.HiddenFor(model => model.EncryptId)
@Html.TextBoxFor(model => model.id, new { hidden = "hidden" })
@Html.MyTextFor(model => model.TraderNames)
@Html.MyDropdownFor(model => model.RoleId,YLErp.Web.Controllers.AccountOpeningProcessController.GetRoles(), appendBlank: false)
@Html.MyDropdownFor(model => model.Rule, System.Web.Mvc.Html.EnumHelper.GetSelectList(typeof(RuleEnum)), htmlAttributes: new { onchange = "changeRule()" }, appendBlank: false)
@Html.MyTextFor(model => model.DeltaCashScale)
@MyControls.Btn("保存", "saveassetunit()")
@MyControls.Btn("关闭", "layer.closeMe()")
}