12345678910111213141516171819202122232425262728293031323334353637383940 |
- @model EMIS.ViewModel.TeachingMaterial.StockInView
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- var schoolYear = ViewData["schoolYear"];
- ViewBag.Title = "AutoNewStockIn";
- }
- @section scripts{
- <script src="../../Scripts/Business/TeachingMaterial/StockIn.js" type="text/javascript"></script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Ajax.BeginForm(new AjaxOptions { Url = "/StockIn/AutoNewStockIn?schoolyearID=" + schoolYear, OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" }))
- {
- <div class="p_title">
- @*<div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
- 自动入库
- </div>*@
- <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("Auto")</div>
- </div>
- <div class="search_list">
- <table cellpadding="0" cellspacing="0" id="teachersOrdertable">
- <tr>
- <td>
- @Html.LabelFor(x => x.SchoolyearID):
- </td>
- <td>
- @Html.DropdownList(new DropdownListOptions
- {
- BindType = DropdownListBindType.PleaseSelect,
- ItemSourceUrl = Url.Content("~/SchoolYear/DropDownAfterCurrent"),
- ID = "SchoolyearDropdown",
- Name = "SchoolyearDropdown",
- SelectedValue = schoolYear
- })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|