Refund.cshtml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. @model EMIS.ViewModel.FeeManage.RefundView
  2. @using EMIS.Web.Controls;
  3. @using Bowin.Web.Controls.Mvc;
  4. @{
  5. ViewBag.Title = "Refund";
  6. var url = ViewBag.Url;
  7. }
  8. @section scripts{
  9. <script type="text/javascript">
  10. var examinationRegistrationIDs = '@ViewBag.ExaminationRegistrationIDs';
  11. </script>
  12. <script src="~/Scripts/Business/ExaminationApply/Refund.js"></script>
  13. }
  14. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  15. @using (Html.BeginForm("Refund", "ExamineApply", new { MNU = Request["MNU"], WindowID = Request["WindowID"] }, FormMethod.Post, new { enctype = "multipart/form-data" }))
  16. {
  17. <div class="p_title">
  18. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  19. </div>
  20. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("Refund")</div>
  21. @Html.Hidden("SelectIDs")
  22. @Html.HiddenFor(x => x.ExaminationRegistrationID)
  23. @Html.HiddenFor(x => x.RecordStatus)
  24. @Html.Hidden("PayStatusID", (int)EMIS.ViewModel.EX_ExaminationRegistrationStatus.Paid)
  25. </div>
  26. <div class="search_list" id="content">
  27. <table cellpadding="0" cellspacing="0">
  28. <tr>
  29. <td>
  30. @Html.LabelFor(x => x.BankName):
  31. </td>
  32. <td>
  33. @Html.TextBoxFor(x => x.BankName, new TextBoxOptions { })
  34. <span id="lblBankName" style="display: none;"></span>
  35. </td>
  36. <td>
  37. @Html.LabelFor(x => x.CardNo):
  38. </td>
  39. <td>
  40. @Html.TextBoxFor(x => x.CardNo, new TextBoxOptions { })
  41. <span id="lblCardNo" style="display: none;"></span>
  42. </td>
  43. </tr>
  44. <tr>
  45. <td>
  46. @Html.LabelFor(x => x.RefundReason):
  47. </td>
  48. <td colspan="3">
  49. @Html.TextAreaFor(x => x.RefundReason, new { style = "width: 96%" })
  50. <span id="lblRefundReason" style="display: none;"></span>
  51. </td>
  52. </tr>
  53. </table>
  54. </div>
  55. }
  56. </div>