@using IwbZero.AppServiceBase @using ShwasherSys.Authorization.Permissions @using ShwasherSys.Models.Layout @using ShwasherSys.Models.Modal @{ /**/ ViewBag.ActiveMenu = PermissionNames.PagesProductionInfoProductionOutStoreApplyMg; //The menu item will be active for this page. ViewBag.Title = "外协加工出库申请"; List processTypeItems = ViewBag.ProcessTypeItems; 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("semiProductNo","半成品编码").SetSearchIcon("query_semiProduct_modal"), new SearchItem("applyStatus","申请状态" ) .SetSearchItem(applyStatus), new SearchItem("isClose","关闭状态" ,FiledType.Bnull,ExpType.Equal) .SetSearchItem(closeStatus) }, false); } @section css{ }
@Html.DropDownList("hide-ApplyStatus", applyStatus) @Html.DropDownList("hide-StoreHouses", storeHouses)
@Html.Action("ToolMenu", "Layout", new { pageName = ViewBag.ActiveMenu, searchForm })
@section modal{
@{ List searchListDto = new List(); searchListDto.Add(new MultiSearchDto() { ExpType = 1, FieldType = 1, KeyWords = "4", KeyField = "StoreHouseId" }); } @Html.Partial("Modals/Query/_SemiCurrentStoreEx", new QueryParamModel(targetDom: "6:quantity|maxQuantity", searchList: searchListDto))
@Html.Partial("Modals/Query/_SemiProduct", "KeyWords-2") @Html.Partial("Modals/Query/_SemiProductEx", "eaSemiProductNo") @Html.Partial("Modals/Query/_OutFactory", "outsourcingFactory,outsourcingFactoryName") } @section scripts { }