You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
3.5 KiB

1 year ago
  1. 
  2. @{
  3. ViewBag.Title = "Index";
  4. Layout = "~/Views/Shared/_Form.cshtml";
  5. }
  6. <style>
  7. #ISO {
  8. width: 10px;
  9. }
  10. </style>
  11. <link href="~/Content/js/select2/select2.min.css" rel="stylesheet" />
  12. <script src="~/Content/js/select2/select2.min.js"></script>
  13. <script>
  14. $(function () {
  15. GetTextValues();
  16. });
  17. function GetTextValues() {
  18. $.ajax({
  19. url: "/WMS/BasicSettings/GetINVEnable?" + Math.random(),
  20. type:"post",
  21. dataType: "json",
  22. async: false,
  23. success: function (data) {
  24. if (data.Msg != "")
  25. {
  26. $.modalAlert(data.Msg, "warning");
  27. return;
  28. }
  29. else
  30. {
  31. //是否IQC检验
  32. if (data.rows[0].InvIQC == '1') {
  33. $("#InvIQCYes").prop("checked", true);
  34. } else {
  35. $("#InvIQCNo").prop("checked", true);
  36. }
  37. //是否FQC检验
  38. if (data.rows[0].InvFQC == '1') {
  39. $("#InvFQCYes").prop("checked", true);
  40. } else {
  41. $("#InvFQCNo").prop("checked", true);
  42. }
  43. }
  44. }
  45. });
  46. }
  47. function submitForm() {
  48. var InvIQC = $('input[name="InvIQC"]:checked').val();//是否IQC检验
  49. var InvFQC = $('input[name="InvFQC"]:checked').val();//是否FQC检验
  50. if (InvIQC == "" || InvIQC == undefined) {
  51. $.modalAlertNew("WMS00027");
  52. return;
  53. }
  54. if (InvFQC == "" || InvFQC == undefined) {
  55. $.modalAlertNew("WMS00028");
  56. return;
  57. }
  58. if (!$('#form1').formValid()) {
  59. return false;
  60. }
  61. var objArr = {
  62. InvIQC: InvIQC,
  63. InvFQC: InvFQC,
  64. }
  65. debugger;
  66. $.submitForm({
  67. url: "/WMS/BasicSettings/UpdateINVEnable" + "?" + Math.random(),
  68. param: { keyValue: JSON.stringify(objArr) },
  69. success: function () {
  70. $.currentWindow().$("#gridList").trigger("reloadGrid");
  71. }
  72. })
  73. }
  74. </script>
  75. <form id="form1">
  76. <div style="padding-top: 20px; margin-right: 20px;">
  77. <table class="form">
  78. <tr>
  79. <th class="formTitle">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;是否IQC检验:</th>
  80. <td class="formValue">
  81. <div class="input-group" id="InvIQCchaeckbox">
  82. <input type="radio" name="InvIQC" value="1" id="InvIQCYes" style="width:60px" /><label for="cb-NoQuotedPrice">开启</label>
  83. <input type="radio" name="InvIQC" value="0" id="InvIQCNo" style="width:60px" /><label for="cb-QuotedPrice">关闭</label>
  84. </div>
  85. </td>
  86. </tr>
  87. <tr>
  88. <th class="formTitle">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;是否FQC检验:</th>
  89. <td class="formValue">
  90. <div class="input-group" id="InvFQCchaeckbox">
  91. <input type="radio" name="InvFQC" value="1" id="InvFQCYes" style="width:60px" /><label for="cb-NoQuotedPrice">开启</label>
  92. <input type="radio" name="InvFQC" value="0" id="InvFQCNo" style="width:60px" /><label for="cb-QuotedPrice">关闭</label>
  93. </div>
  94. </td>
  95. </tr>
  96. </table>
  97. </div>
  98. </form>