@using Resources @using Weee.Models @model Qcarbon.ViewModels.admin.companyAdminAccessVM @{ ViewBag.Title = "一般公司管理者權限設定"; Layout = "~/Areas/Admin/Views/Shared/_AdminLayout.cshtml"; } @using (Html.BeginForm()) { @Html.AntiForgeryToken() @Html.HiddenFor(model => model.userId) @Html.HiddenFor(model => model.companyID)

@ViewBag.Title

@Html.ValidationSummary(true, "", new { @class = "text-danger font-weight-bold" }) @if (!string.IsNullOrWhiteSpace(ViewBag.OKmsg)) { } else if (!string.IsNullOrWhiteSpace(ViewBag.errMsg)) { }
@Html.DisplayNameFor(model => model.companyName)
@Model.companyName
@Html.DisplayNameFor(model => model.companyDescription)
@Model.companyDescription
@Html.DisplayNameFor(model => model.userName)
@Model.userName
@Html.DisplayNameFor(model => model.AccountType)
@Html.RadioButtonFor(model => model.AccountType, ACCOUNT_TYPE.ORGANICATION12) 組織型C1C2 @Html.RadioButtonFor(model => model.AccountType, ACCOUNT_TYPE.ORGANIZATION_ONLY) 僅組織型 @Html.RadioButtonFor(model => model.AccountType, ACCOUNT_TYPE.FULL_FUNCTION) 完整功能
@Html.DisplayNameFor(model => model.activeStartDate)
@Html.TextBoxFor(model => model.activeStartDate, new { @class = "form-control" })
@Html.DisplayNameFor(model => model.activeEndDate)
@Html.TextBoxFor(model => model.activeEndDate, new { @class = "form-control" })
@Html.DisplayNameFor(model => model.lcaLimit)
@Html.TextBoxFor(model => model.lcaLimit, new { @class = "form-control", type = "number" })
@Html.DisplayNameFor(model => model.lcaQuantity)
@Model.lcaQuantity
@Html.DisplayNameFor(model => model.listReportLimit)
@Html.TextBoxFor(model => model.listReportLimit, new { @class = "form-control", type = "number" })
@Html.DisplayNameFor(model => model.listReportQuantity)
@Model.listReportQuantity
@Html.DisplayNameFor(model => model.lcaUserLimit)
@Html.TextBoxFor(model => model.lcaUserLimit, new { @class = "form-control", type = "number" })
@Html.DisplayNameFor(model => model.lcaUserQuantity)
@Model.lcaUserQuantity
@Html.DisplayNameFor(model => model.supplierLimit)
@Html.TextBoxFor(model => model.supplierLimit, new { @class = "form-control", type = "number" })
@Html.DisplayNameFor(model => model.supplierQuantity)
@Model.supplierQuantity
}