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.

366 lines
15 KiB

  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. var ID = '';
  15. $(function () {
  16. ID = $.request("ID");
  17. debugger;
  18. if (ID != '') {
  19. GetTextValues();
  20. }
  21. });
  22. function GetTextValues() {
  23. $.ajax({
  24. url: "/WMS/BasicSettings/GetInputValue?ID=" + ID,
  25. type:"post",
  26. dataType: "json",
  27. async: false,
  28. success: function (data) {
  29. $("#InvCode").val(data.rows[0].InvCode);
  30. $("#InvName").val(data.rows[0].InvName);
  31. $("#InvDesc").val(data.rows[0].InvDesc);
  32. $("#InvStd").val(data.rows[0].InvStd);
  33. $("#InvUnit").val(data.rows[0].InvUnit);
  34. $("#AmountUnit").val(data.rows[0].AmountUnit);
  35. $("#ClassName").val(data.rows[0].ClassName);
  36. $("#ClassCode").val(data.rows[0].ClassCode);
  37. $("#InvRate").val(data.rows[0].InvRate);
  38. $("#InvVersion").val(data.rows[0].InvVersion);
  39. $("#InvBrand").val(data.rows[0].InvBrand);
  40. $("#EffectiveDays").val(data.rows[0].EffectiveDays);
  41. $("#WHUser").val(data.rows[0].WHUser);
  42. //是否IQC检验
  43. if (data.rows[0].InvIQC == '1') {
  44. $("#InvIQCYes").prop("checked", true);
  45. } else {
  46. $("#InvIQCNo").prop("checked", true);
  47. }
  48. //是否FQC检验
  49. if (data.rows[0].InvFQC == '1') {
  50. $("#InvFQCYes").prop("checked", true);
  51. } else {
  52. $("#InvFQCNo").prop("checked", true);
  53. }
  54. //是否启用有效期
  55. if (data.rows[0].EffectiveEnable == '1') {
  56. $("#EffectiveEnableYes").prop("checked", true);
  57. } else {
  58. $("#EffectiveEnableNo").prop("checked", true);
  59. }
  60. //是否启用批次
  61. if (data.rows[0].BatchEnable == '1') {
  62. $("#BatchEnableYes").prop("checked", true);
  63. } else {
  64. $("#BatchEnableNo").prop("checked", true);
  65. }
  66. //是否自动分批
  67. if (data.rows[0].LotEnable == '1') {
  68. $("#LotEnableYes").prop("checked", true);
  69. } else {
  70. $("#LotEnableNo").prop("checked", true);
  71. }
  72. //是否自动打印
  73. if (data.rows[0].PrintEnable == '1') {
  74. $("#PrintEnableYes").prop("checked", true);
  75. } else {
  76. $("#PrintEnableNo").prop("checked", true);
  77. }
  78. //是否辅计量
  79. if (data.rows[0].AmountEnable == '1') {
  80. $("#AmountEnableYes").prop("checked", true);
  81. } else {
  82. $("#AmountEnableNo").prop("checked", true);
  83. }
  84. }
  85. });
  86. }
  87. function submitForm() {
  88. var InvCode = $("#InvCode").val();//物料代码必填
  89. var InvName = $("#InvName").val();//物料名称必填
  90. var InvDesc = $("#InvDesc").val();
  91. var ColName = $("#ColName").val();
  92. var InvStd = $("#InvStd").val();
  93. var InvUnit = $("#InvUnit").val();//主计量单位必填
  94. var AmountUnit = $("#AmountUnit").val();
  95. var ClassCode = $("#ClassCode").val();//大类编码必填
  96. var ClassName = $("#ClassName").val();//大类名称必填
  97. var InvRate = $("#InvRate").val();//固定换算率必填
  98. var InvVersion = $("#InvVersion").val();
  99. var InvBrand = $("#InvBrand").val();
  100. var EffectiveDays = $("#EffectiveDays").val();//必填
  101. var WHUser = $("#WHUser").val();
  102. var InvIQC = $('input[name="InvIQC"]:checked').val();//是否IQC检验
  103. var InvFQC = $('input[name="InvFQC"]:checked').val();//是否FQC检验
  104. var EffectiveEnable = $('input[name="EffectiveEnable"]:checked').val();//是否启用有效期
  105. var BatchEnable = $('input[name="BatchEnable"]:checked').val();//是否启用批次
  106. var LotEnable = $('input[name="LotEnable"]:checked').val();//是否自动分批
  107. var PrintEnable = $('input[name="PrintEnable"]:checked').val();//是否自动打印
  108. var AmountEnable = $('input[name="AmountEnable"]:checked').val();//是否辅计量
  109. if (InvIQC == "" || InvIQC == undefined) {
  110. $.modalAlertNew("WMS00027");
  111. return;
  112. }
  113. if (InvFQC == "" || InvFQC == undefined) {
  114. $.modalAlertNew("WMS00028");
  115. return;
  116. }
  117. if (EffectiveEnable == "" || EffectiveEnable == undefined) {
  118. $.modalAlertNew("WMS00029");
  119. return;
  120. }
  121. if (BatchEnable == "" || BatchEnable == undefined) {
  122. $.modalAlertNew("WMS00030");
  123. return;
  124. }
  125. if (LotEnable == "" || LotEnable == undefined) {
  126. $.modalAlertNew("WMS00031");
  127. return;
  128. }
  129. if (PrintEnable == "" || PrintEnable == undefined) {
  130. $.modalAlertNew("WMS00032");
  131. return;
  132. }
  133. if (!$('#form1').formValid()) {
  134. return false;
  135. }
  136. var objArr = {
  137. ID: ID,
  138. InvCode: InvCode,
  139. InvName: InvName,
  140. InvDesc: InvDesc,
  141. ColName: ColName,
  142. InvStd: InvStd,
  143. InvUnit: InvUnit,
  144. InvDesc: InvDesc,
  145. AmountUnit: AmountUnit,
  146. ClassCode: ClassCode,
  147. ClassName: ClassName,
  148. InvRate: InvRate,
  149. InvVersion: InvVersion,
  150. InvBrand: InvBrand,
  151. EffectiveDays: EffectiveDays,
  152. WHUser: WHUser,
  153. InvIQC: InvIQC,
  154. InvFQC: InvFQC,
  155. EffectiveEnable: EffectiveEnable,
  156. BatchEnable: BatchEnable,
  157. LotEnable: LotEnable,
  158. PrintEnable: PrintEnable,
  159. AmountEnable: AmountEnable
  160. }
  161. debugger;
  162. if (ID!="") {
  163. $.submitForm({
  164. url: "/WMS/BasicSettings/UpdateICSInventory" + "?" + Math.random(),
  165. param: { keyValue: JSON.stringify(objArr) },
  166. success: function () {
  167. $.currentWindow().$("#gridList").trigger("reloadGrid");
  168. }
  169. })
  170. } else {
  171. $.submitForm({
  172. url: "/WMS/BasicSettings/InsertICSInventory" + "?" + Math.random(),
  173. param: { keyValue: JSON.stringify(objArr) },
  174. success: function () {
  175. $.currentWindow().$("#gridList").trigger("reloadGrid");
  176. }
  177. })
  178. }
  179. }
  180. </script>
  181. <form id="form1">
  182. <div style="padding-top: 20px; margin-right: 20px;">
  183. <table class="form">
  184. <tr>
  185. <th class="formTitle">料品编码:</th>
  186. <td class="formValue">
  187. @*<select id="sel_InvCode" name="sel_InvCode" class="form-control select2" onchange="TxTValue()" style="width: 230px" placeholder="请选择物料代码..."></select>*@
  188. <input id="InvCode" name="InvCode" type="text" class="form-control required" style="width: 200px;" maxlength="500" placeholder="料品编码" />
  189. <input type="hidden" id="hidetext" />
  190. </td>
  191. </tr>
  192. <tr>
  193. <th class="formTitle">料品名称:</th>
  194. <td class="formValue">
  195. <input id="InvName" name="InvName" type="text" class="form-control required" style="width: 200px;" maxlength="500" placeholder="料品名称" />
  196. </td>
  197. </tr>
  198. <tr>
  199. <th class="formTitle">料品描述:</th>
  200. <td class="formValue">
  201. <input id="InvDesc" name="InvDesc" type="text" class="form-control " style="width: 200px;" maxlength="500" placeholder="料品描述" maxlength="500"/>
  202. </td>
  203. </tr>
  204. <tr>
  205. <th class="formTitle">规格型号:</th>
  206. <td class="formValue">
  207. <input id="InvStd" name="InvStd" type="text" class="form-control " style="width: 200px;" maxlength="500" placeholder="规格型号" maxlength="500"/>
  208. </td>
  209. </tr>
  210. <tr>
  211. <th class="formTitle">主计量单位:</th>
  212. <td class="formValue">
  213. <input id="InvUnit" name="InvUnit" type="text" class="form-control required" style="width: 200px;" maxlength="500" placeholder="主计量单位" />
  214. </td>
  215. </tr>
  216. <tr>
  217. <th class="formTitle">辅计量单位:</th>
  218. <td class="formValue">
  219. <input id="AmountUnit" name="AmountUnit" type="text" class="form-control" style="width: 200px;" maxlength="500" placeholder="辅计量单位" />
  220. </td>
  221. <tr>
  222. <th class="formTitle">大类编码:</th>
  223. <td class="formValue">
  224. <input id="ClassCode" name="ClassCode" type="text" class="form-control required" style="width: 200px;" maxlength="500" placeholder="大类编码" />
  225. </td>
  226. <tr>
  227. <th class="formTitle">大类名称:</th>
  228. <td class="formValue">
  229. <input id="ClassName" name="ClassName" type="text" class="form-control required" style="width: 200px;" maxlength="500" placeholder="大类名称" />
  230. </td>
  231. </tr>
  232. <tr>
  233. <th class="formTitle">固定换算率:</th>
  234. <td class="formValue">
  235. <input id="InvRate" name="InvRate" type="text" class="form-control required" style="width: 200px;" maxlength="500" placeholder="固定换算率" />
  236. </td>
  237. </tr>
  238. <tr>
  239. <th class="formTitle">版本:</th>
  240. <td class="formValue">
  241. <input id="InvVersion" name="InvVersion" type="text" class="form-control " style="width: 200px;" maxlength="500" placeholder="版本" />
  242. </td>
  243. </tr>
  244. <tr>
  245. <th class="formTitle">厂牌:</th>
  246. <td class="formValue">
  247. <input id="InvBrand" name="InvBrand" type="text" class="form-control" style="width: 200px;" maxlength="500" placeholder="厂牌" />
  248. </td>
  249. </tr>
  250. <tr>
  251. <th class="formTitle">有效期天数:</th>
  252. <td class="formValue">
  253. <input id="EffectiveDays" name="EffectiveDays" type="text" class="form-control required" style="width: 200px;" maxlength="10" placeholder="有效期天数" />
  254. </td>
  255. </tr>
  256. <tr>
  257. <th class="formTitle">仓管员:</th>
  258. <td class="formValue">
  259. <input id="WHUser" name="WHUser" type="text" class="form-control " style="width: 200px;" maxlength="10" placeholder="仓管员" />
  260. </td>
  261. </tr>
  262. <tr>
  263. <th class="formTitle">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;是否IQC检验:</th>
  264. <td class="formValue">
  265. <div class="input-group" id="InvIQCchaeckbox">
  266. <input type="radio" name="InvIQC" value="1" id="InvIQCYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label>
  267. <input type="radio" name="InvIQC" value="0" id="InvIQCNo" style="width:60px" /><label for="cb-QuotedPrice">否</label>
  268. </div>
  269. </td>
  270. </tr>
  271. <tr>
  272. <th class="formTitle">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;是否FQC检验:</th>
  273. <td class="formValue">
  274. <div class="input-group" id="InvFQCchaeckbox">
  275. <input type="radio" name="InvFQC" value="1" id="InvFQCYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label>
  276. <input type="radio" name="InvFQC" value="0" id="InvFQCNo" style="width:60px" /><label for="cb-QuotedPrice">否</label>
  277. </div>
  278. </td>
  279. </tr>
  280. <tr>
  281. <th class="formTitle">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;是否启用有效期:</th>
  282. <td class="formValue">
  283. <div class="input-group" id="EffectiveEnablechaeckbox">
  284. <input type="radio" name="EffectiveEnable" value="1" id="EffectiveEnableYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label>
  285. <input type="radio" name="EffectiveEnable" value="0" id="EffectiveEnableNo" style="width:60px" /><label for="cb-QuotedPrice">否</label>
  286. </div>
  287. </td>
  288. </tr>
  289. <tr>
  290. <th class="formTitle">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;是否启用批次:</th>
  291. <td class="formValue">
  292. <div class="input-group" id="BatchEnablechaeckbox">
  293. <input type="radio" name="BatchEnable" value="1" id="BatchEnableYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label>
  294. <input type="radio" name="BatchEnable" value="0" id="BatchEnableNo" style="width:60px" /><label for="cb-QuotedPrice">否</label>
  295. </div>
  296. </td>
  297. </tr>
  298. <tr>
  299. <th class="formTitle">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;是否自动分批:</th>
  300. <td class="formValue">
  301. <div class="input-group" id="LotEnablechaeckbox">
  302. <input type="radio" name="LotEnable" value="1" id="LotEnableYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label>
  303. <input type="radio" name="LotEnable" value="0" id="LotEnableNo" style="width:60px" /><label for="cb-QuotedPrice">否</label>
  304. </div>
  305. </td>
  306. </tr>
  307. <tr >
  308. <th class="formTitle">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;是否自动打印:</th>
  309. <td class="formValue">
  310. <div class="input-group" id="PrintEnablechaeckbox">
  311. <input type="radio" name="PrintEnable" value="1" id="PrintEnableYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label>
  312. <input type="radio" name="PrintEnable" value="0" id="PrintEnableNo" style="width:60px" /><label for="cb-QuotedPrice">否</label>
  313. </div>
  314. </td>
  315. </tr>
  316. <tr>
  317. <th class="formTitle">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;是否启用辅计量:</th>
  318. <td class="formValue">
  319. <div class="input-group" id="AmountEnablechaeckbox">
  320. <input type="radio" name="AmountEnable" value="1" id="AmountEnableYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label>
  321. <input type="radio" name="AmountEnable" value="0" id="AmountEnableNo" style="width:60px" /><label for="cb-QuotedPrice">否</label>
  322. </div>
  323. </td>
  324. </tr>
  325. </table>
  326. </div>
  327. </form>