@using ShwasherSys.Authorization.Permissions @using ShwasherSys.Models.Layout @using ShwasherSys.Models.Modal @{ /**/ ViewBag.ActiveMenu = PermissionNames.PagesProductInspectProductItemInspectMg; //The menu item will be active for this page. ViewBag.Title = "半成品入库检验"; List semiApplyStatus = ViewBag.SemiApplyStatus; List storeHouses = ViewBag.StoreHouses; var searchForm = new SearchFormViewModal(new List() { new SearchItem("productionOrderNo","排产单号"), new SearchItem("semiProductName","半成品名称"), new SearchItem("model","规格"), new SearchItem("material","材质"), new SearchItem("surfaceColor","表色"), new SearchItem("semiProductNo","半成品编码").SetSearchIcon("query_semiProduct_modal"), new SearchItem("partNo","零件号"), }, false); }
@Html.DropDownList("hide-ApplyStatus", semiApplyStatus) @Html.DropDownList("hide-StoreHouses", storeHouses)
@Html.Action("ToolMenu", "Layout", new { pageName = ViewBag.ActiveMenu, searchForm }) @**@
@section modal{
@Html.Partial("Modals/Query/_SemiProduct", "KeyWords-6") @Html.Partial("Modals/Query/_UnqualifiedProduct", "") } @section scripts { }