@model EMIS.ViewModel.TeachingMaterial.StockInView @using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ var schoolYear = ViewData["schoolYear"]; ViewBag.Title = "AutoNewStockIn"; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { Url = "/StockIn/AutoNewStockIn?schoolyearID=" + schoolYear, OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
@*
自动入库
*@
@Html.ContextMenuBar("Auto")
@Html.LabelFor(x => x.SchoolyearID): @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ItemSourceUrl = Url.Content("~/SchoolYear/DropDownAfterCurrent"), ID = "SchoolyearDropdown", Name = "SchoolyearDropdown", SelectedValue = schoolYear })
}