@using ShwasherSys.Authorization.Permissions @using ShwasherSys.Models.Layout @using ShwasherSys.Models.Modal @{ /**/ ViewBag.ActiveMenu = PermissionNames.PagesPackInfoToBePackageInfoMg; //The menu item will be active for this page. ViewBag.Title = "产品待包装信息"; string employee = ViewBag.Employee; List productApplyStatus = ViewBag.ProductApplyStatus; List applyStatus = ViewBag.ApplyStatus; List closeStatus = new List() { new SelectListItem(){Text = @"未关闭",Value = "false",Selected = true}, new SelectListItem(){Text = @"已关闭",Value = "true"} }; var searchForm = new SearchFormViewModal(new List() { new SearchItem("productionOrderNo","排产单号"), new SearchItem("productName","产品名称"), new SearchItem("model","规格"), new SearchItem("material","材质"), new SearchItem("applyDate", "申请日期",FiledType.Dnull,ExpType.GreaterOrEqual), new SearchItem("applyDate", "到",FiledType.Dnull,ExpType.LessOrEqual), new SearchItem("semiProductNo","半成品编码").SetSearchIcon("query_semiProduct_modal"), new SearchItem("applyStatus","申请状态" ) .SetSearchItem(applyStatus), new SearchItem("isClose","关闭状态" ,FiledType.B,ExpType.Equal) .SetSearchItem(closeStatus), }, false); } @section css{ }
@Html.DropDownList("hide-ApplyStatus", applyStatus) @Html.DropDownList("hide-ProductApplyStatus", productApplyStatus)
@Html.Action("ToolMenu", "Layout", new { pageName = ViewBag.ActiveMenu, searchForm })
@section modal{ @Html.Partial("Modals/Query/_SemiProduct", "KeyWords-6") @Html.Partial("Modals/Query/_Product", "productNo,productName") } @section scripts { }