@using ShwasherSys.Authorization.Permissions @using ShwasherSys.Models.Layout @using ShwasherSys.Models.Modal @{ ViewBag.Title = "生产完成入库申请"; ViewBag.ActiveMenu = PermissionNames.PagesProductionInfoProductionEnterStoreApplyMg; //The menu item will be active for this page. List applyStatus = ViewBag.ApplyStatus; List storeHouses = ViewBag.StoreHouses; 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("partNo","零件号"), new SearchItem("semiProductName","产品名称"), new SearchItem("model","规格"), new SearchItem("semiProductNo","半成品编码").SetSearchIcon("query_semiProduct_modal"), new SearchItem("applyStatus","申请状态" ) .SetSearchItem(applyStatus), new SearchItem("isClose","关闭状态" ,FiledType.Bnull,ExpType.Equal) .SetSearchItem(closeStatus), }, false); }
@Html.DropDownList("hide-ApplyStatus", applyStatus) @Html.DropDownList("hide-StoreHouses", storeHouses)
@Html.Action("ToolMenu", "Layout", new { pageName = ViewBag.ActiveMenu, searchForm })
@section modal{
@Html.Partial("Modals/Query/_SemiProduct", "KeyWords-5") } @section scripts { }