@using ShwasherSys.Authorization.Permissions @using ShwasherSys.Models.Layout @using ShwasherSys.Models.Modal @{ /**/ ViewBag.ActiveMenu = PermissionNames.PagesFinshedStoreInfoFinshedOutStoreApplyMg; //The menu item will be active for this page. ViewBag.Title = "成品出库申请审核"; List applyStatus = ViewBag.FinshedApplyStatus; var searchForm = new SearchFormViewModal(new List() { new SearchItem("productionOrderNo","排产单号"), new SearchItem("productName","产品名称"), new SearchItem("model","规格"), new SearchItem("material","材质"), new SearchItem("surfaceColor","表色"), new SearchItem("rigidity","硬度"), new SearchItem("productNo","成品编码").SetSearchIcon("query_Product_modal"), new SearchItem("applyStatus","申请状态",FiledType.I,ExpType.Equal) .SetSearchItem(applyStatus), new SearchItem("customerName","客户名称"), new SearchItem("orderDate","订单日期",FiledType.Dnull,ExpType.GreaterOrEqual), new SearchItem("orderDate","到",FiledType.Dnull,ExpType.LessOrEqual), }, false); }
@Html.DropDownList("hide-ApplyStatus", applyStatus)
@Html.Action("ToolMenu", "Layout", new { pageName = ViewBag.ActiveMenu, searchForm })
@section modal{
@Html.Partial("Modals/Query/_Product", "KeyWords-7") } @section scripts { }