123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- @model EMIS.ViewModel.FeeManage.RefundView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "Refund";
- var url = ViewBag.Url;
- }
- @section scripts{
- <script type="text/javascript">
- var examinationRegistrationIDs = '@ViewBag.ExaminationRegistrationIDs';
- </script>
- <script src="~/Scripts/Business/ExaminationApply/Refund.js"></script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Html.BeginForm("Refund", "ExamineApply", new { MNU = Request["MNU"], WindowID = Request["WindowID"] }, FormMethod.Post, new { enctype = "multipart/form-data" }))
- {
- <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("Refund")</div>
- @Html.Hidden("SelectIDs")
- @Html.HiddenFor(x => x.ExaminationRegistrationID)
- @Html.HiddenFor(x => x.RecordStatus)
- @Html.Hidden("PayStatusID", (int)EMIS.ViewModel.EX_ExaminationRegistrationStatus.Paid)
- </div>
- <div class="search_list" id="content">
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- @Html.LabelFor(x => x.BankName):
- </td>
- <td>
- @Html.TextBoxFor(x => x.BankName, new TextBoxOptions { })
- <span id="lblBankName" style="display: none;"></span>
- </td>
- <td>
- @Html.LabelFor(x => x.CardNo):
- </td>
- <td>
- @Html.TextBoxFor(x => x.CardNo, new TextBoxOptions { })
- <span id="lblCardNo" style="display: none;"></span>
- </td>
- </tr>
- <tr>
- <td>
- @Html.LabelFor(x => x.RefundReason):
- </td>
- <td colspan="3">
- @Html.TextAreaFor(x => x.RefundReason, new { style = "width: 96%" })
- <span id="lblRefundReason" style="display: none;"></span>
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|