纽威
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.

668 lines
24 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. 
  2. @{
  3. ViewBag.Title = "SeachInventory";
  4. Layout = "~/Views/Shared/_Index.cshtml";
  5. }
  6. <link href="~/Content/js/select2/select2.min.css" rel="stylesheet" />
  7. <link href="~/Content/js/dialog/dialog.css" rel="stylesheet" />
  8. <script src="~/Content/js/datepicker/WdatePicker.js"></script>
  9. <script src="~/Content/js/select2/select2.min.js"></script>
  10. <style>
  11. .divbox{
  12. margin-left:20px;
  13. margin-top:10px;
  14. display:inline-block;
  15. float:left;
  16. }
  17. .divformValue{
  18. display:inline-block;
  19. float:left;
  20. }
  21. .divformTitle{
  22. display:inline-block;
  23. float:left;
  24. }
  25. /*.divformValue{
  26. display:inline-block;
  27. }*/
  28. </style>
  29. <script>
  30. var Type = '';
  31. debugger;
  32. $(function () {
  33. Extension();
  34. Init();
  35. });
  36. function Extension() {
  37. $.ajax({
  38. url: "/WMS/WMSCreateItemLot/SelectICSExtensionEnable" + "?" + Math.random(),
  39. dataType: "json",
  40. async: false,
  41. success: function (data) {
  42. debugger;
  43. if (data != null && data.length > 0) {
  44. for (var i = 0; i < data.length; i++) {
  45. if (data[i].ColCode == 'ProjectCode') { $("#ProjectCode").css('display', 'none'); }
  46. if (data[i].ColCode == 'BatchCode') { $("#BatchCode").css('display', 'none'); }
  47. if (data[i].ColCode == 'Version') { $("#Version").css('display', 'none'); }
  48. if (data[i].ColCode == 'Brand') { $("#Brand").css('display', 'none'); }
  49. if (data[i].ColCode == 'cFree1') { $("#cFree1").css('display', 'none'); }
  50. if (data[i].ColCode == 'cFree2') { $("#cFree2").css('display', 'none'); }
  51. if (data[i].ColCode == 'cFree3') { $("#cFree3").css('display', 'none'); }
  52. if (data[i].ColCode == 'cFree4') { $("#cFree4").css('display', 'none'); }
  53. if (data[i].ColCode == 'cFree5') { $("#cFree5").css('display', 'none'); }
  54. if (data[i].ColCode == 'cFree6') { $("#cFree6").css('display', 'none'); }
  55. if (data[i].ColCode == 'cFree7') { $("#cFree7").css('display', 'none'); }
  56. if (data[i].ColCode == 'cFree8') { $("#cFree8").css('display', 'none'); }
  57. if (data[i].ColCode == 'cFree9') { $("#cFree9").css('display', 'none'); }
  58. if (data[i].ColCode == 'cFree10') { $("#cFree10").css('display', 'none'); }
  59. }
  60. }
  61. }
  62. });
  63. }
  64. function Init() {
  65. document.getElementById("gridPanel").innerHTML = ' <span><strong>详细信息</strong></span> <table id="gridList"></table> ';//重置grid
  66. var LotNo = $("#txt_LotNo").val();
  67. $("#gridList").dataGrid({
  68. url: "/WMS/ICSMTDOC/GetRepertory" + "?LotNo=" + LotNo + "&" + Math.random(),
  69. height: $(window).height() - 20,
  70. width: $(window).width() - 300,
  71. colModel: [
  72. { label: '主键', name: 'ID', hidden: true, key: true },
  73. { label: '仓库', name: 'WarehouseCode', width: 100, align: 'left' },
  74. { label: '条码', name: 'LotNo', width: 100, align: 'left' },
  75. { label: '料品编码', name: 'InvCode', width: 100, align: 'left' },
  76. { label: '料品名称', name: 'InvName', width: 100, align: 'left' },
  77. { label: '料品描述', name: 'InvDesc', width: 100, align: 'left' },
  78. { label: '规格型号', name: 'InvStd', width: 100, align: 'left' },
  79. { label: '单位', name: 'InvUnit', width: 100, align: 'left' },
  80. { label: '总数量', name: 'Quantity', width: 100, align: 'left' },
  81. { label: '辅计量数量', name: 'Amount', width: 100, align: 'left' },
  82. ],
  83. shrinkToFit: false,//宽度自适应
  84. autowidth: true,
  85. gridComplete: function () {
  86. },
  87. rowNum: 10000,
  88. autoScroll: true,
  89. sortname: 'LotNO',
  90. sortorder: "desc",
  91. viewrecords: true,
  92. multiselect: true,
  93. })
  94. };
  95. function submitForm() {
  96. var rows = $("#gridList").jqGrid('getGridParam', 'selarrrow');
  97. if (rows.length <= 0) {
  98. $.modalAlertNew("WMS00080");
  99. return;
  100. }
  101. var InvCode = $("#txtInvCode").val();
  102. var Memo = $("#txtMemo").val();
  103. var ICSMTDOC = [];
  104. for (var i = 0; i < rows.length; i++) {
  105. var rowData = $("#gridList").jqGrid('getRowData', rows[i]);
  106. if (rowData.Amount=='') {
  107. var Amounts = 0;
  108. } else {
  109. var Amounts = rowData.Amount;
  110. }
  111. var obj = {
  112. WHCode: rowData.WarehouseCode,//仓库
  113. LotNo: rowData.LotNo,//条码
  114. Quantity: rowData.Quantity,//数量
  115. Amount: Amounts,//辅计量数量
  116. MTDOCQuantity: rowData.Quantity,//已转换数量
  117. ProjectCode: $("#txtProjectCode").val(),
  118. BatchCode: $("#txtBatchCode").val(),
  119. Version: $("#txtVersion").val(),
  120. Brand: $("#txtBrand").val(),
  121. cFree1: $("#txtcFree1").val(),
  122. cFree2: $("#txtcFree2").val(),
  123. cFree3: $("#txtcFree3").val(),
  124. cFree4: $("#txtcFree4").val(),
  125. cFree5: $("#txtcFree5").val(),
  126. cFree6: $("#txtcFree6").val(),
  127. cFree7: $("#txtcFree7").val(),
  128. cFree8: $("#txtcFree8").val(),
  129. cFree9: $("#txtcFree9").val(),
  130. cFree10: $("#txtcFree10").val(),
  131. }
  132. ICSMTDOC.push(obj);
  133. }
  134. $.modalConfirm("确定保存吗?", function (r) {
  135. if (r) {
  136. $.submitForm({
  137. url: "/WMS/ICSMTDOC/CreateICSMTDOC?InvCode=" + InvCode + "&Memo=" + Memo + "&" + Math.random(),
  138. param: { ICSMTDOC: JSON.stringify(ICSMTDOC) },
  139. success: function () {
  140. $.currentWindow().$("#gridList").trigger("reloadGrid");
  141. }
  142. })
  143. }
  144. });
  145. };
  146. //监听Check事件
  147. function OncheckBox1() {
  148. if ($("#InvCodebox").is(':checked')) {
  149. $('#txtInvCode').attr("disabled", false);
  150. } else {
  151. $("#txtInvCode").attr("disabled", "disabled");
  152. }
  153. }
  154. function OncheckBox2() {
  155. if ($("#BatchCodebox").is(':checked')) {
  156. $('#txtBatchCode').attr("disabled", false);
  157. } else {
  158. $("#txtBatchCode").attr("disabled", "disabled");
  159. }
  160. }
  161. function OncheckBoxProjectCode() {
  162. if ($("#ProjectCodebox").is(':checked')) {
  163. $('#txtProjectCode').attr("disabled", false);
  164. } else {
  165. $("#txtProjectCode").attr("disabled", "disabled");
  166. }
  167. }
  168. function OncheckBoxVersion() {
  169. if ($("#Versionbox").is(':checked')) {
  170. $('#txtVersion').attr("disabled", false);
  171. } else {
  172. $("#txtVersion").attr("disabled", "disabled");
  173. }
  174. }
  175. function OncheckBoxBrand() {
  176. if ($("#Brandbox").is(':checked')) {
  177. $('#txtBrand').attr("disabled", false);
  178. } else {
  179. $("#txtBrand").attr("disabled", "disabled");
  180. }
  181. }
  182. function OncheckBoxcFree1() {
  183. if ($("#cFree1box").is(':checked')) {
  184. $('#txtcFree1').attr("disabled", false);
  185. } else {
  186. $("#txtcFree1").attr("disabled", "disabled");
  187. }
  188. }
  189. function OncheckBoxcFree2() {
  190. if ($("#cFree2box").is(':checked')) {
  191. $('#txtcFree2').attr("disabled", false);
  192. } else {
  193. $("#txtcFree2").attr("disabled", "disabled");
  194. }
  195. }
  196. function OncheckBoxcFree3() {
  197. if ($("#cFree3box").is(':checked')) {
  198. $('#txtcFree3').attr("disabled", false);
  199. } else {
  200. $("#txtcFree3").attr("disabled", "disabled");
  201. }
  202. }
  203. function OncheckBoxcFree4() {
  204. if ($("#cFree4box").is(':checked')) {
  205. $('#txtcFree4').attr("disabled", false);
  206. } else {
  207. $("#txtcFree4").attr("disabled", "disabled");
  208. }
  209. }
  210. function OncheckBoxcFree5() {
  211. if ($("#cFree5box").is(':checked')) {
  212. $('#txtcFree5').attr("disabled", false);
  213. } else {
  214. $("#txtcFree5").attr("disabled", "disabled");
  215. }
  216. }
  217. function OncheckBoxcFree6() {
  218. if ($("#cFree6box").is(':checked')) {
  219. $('#txtcFree6').attr("disabled", false);
  220. } else {
  221. $("#txtcFree6").attr("disabled", "disabled");
  222. }
  223. }
  224. function OncheckBoxcFree7() {
  225. if ($("#cFree7box").is(':checked')) {
  226. $('#txtcFree7').attr("disabled", false);
  227. } else {
  228. $("#txtcFree7").attr("disabled", "disabled");
  229. }
  230. }
  231. function OncheckBoxcFree8() {
  232. if ($("#cFree8box").is(':checked')) {
  233. $('#txtcFree8').attr("disabled", false);
  234. } else {
  235. $("#txtcFree8").attr("disabled", "disabled");
  236. }
  237. }
  238. function OncheckBoxcFree9() {
  239. if ($("#cFree9box").is(':checked')) {
  240. $('#txtcFree9').attr("disabled", false);
  241. } else {
  242. $("#txtcFree9").attr("disabled", "disabled");
  243. }
  244. }
  245. function OncheckBoxcFree10() {
  246. if ($("#cFree10box").is(':checked')) {
  247. $('#txtcFree10').attr("disabled", false);
  248. } else {
  249. $("#txtcFree10").attr("disabled", "disabled");
  250. }
  251. }
  252. //物料
  253. function GetInventory() {
  254. $.modalOpen({
  255. id: "GetICSInventory",
  256. title: "形态转换",
  257. url: "/WMS/ICSMTDOC/GetICSInventory?"+ Math.random(),
  258. width: "1000px",
  259. height: "1000px",
  260. callBack: function (iframeId) {
  261. var obj = top.frames[iframeId].submitForm();
  262. $("#txtInvCode").val(obj.InvCode);
  263. top.frames[iframeId].Close();
  264. }
  265. })
  266. }
  267. //批次
  268. function GetBatchCode() {
  269. $.modalOpen({
  270. id: "GetBatchCode",
  271. title: "批次",
  272. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 2 + "&" + Math.random(),
  273. width: "1000px",
  274. height: "1000px",
  275. callBack: function (iframeId) {
  276. var obj = top.frames[iframeId].submitForm();
  277. $("#txtBatchCode").val(obj.Code);
  278. top.frames[iframeId].Close();
  279. }
  280. })
  281. }
  282. //项目号
  283. function GetProjectCode() {
  284. debugger;
  285. $.modalOpen({
  286. id: "GetProjectCode",
  287. title: "项目号",
  288. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 1 + "&" + Math.random(),
  289. width: "1000px",
  290. height: "1000px",
  291. callBack: function (iframeId) {
  292. var obj = top.frames[iframeId].submitForm();
  293. $("#txtProjectCode").val(obj.Code);
  294. top.frames[iframeId].Close();
  295. }
  296. })
  297. }
  298. //版本
  299. function GetVersion() {
  300. $.modalOpen({
  301. id: "GetVersion",
  302. title: "版本",
  303. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 3 + "&" + Math.random(),
  304. width: "1000px",
  305. height: "1000px",
  306. callBack: function (iframeId) {
  307. var obj = top.frames[iframeId].submitForm();
  308. $("#txtVersion").val(obj.Code);
  309. top.frames[iframeId].Close();
  310. }
  311. })
  312. }
  313. //厂牌
  314. function GetBrand() {
  315. $.modalOpen({
  316. id: "GetBrand",
  317. title: "版本",
  318. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 4 + "&" + Math.random(),
  319. width: "1000px",
  320. height: "1000px",
  321. callBack: function (iframeId) {
  322. var obj = top.frames[iframeId].submitForm();
  323. $("#txtBrand").val(obj.Code);
  324. top.frames[iframeId].Close();
  325. }
  326. })
  327. }
  328. //自由项1
  329. function GetcFree1() {
  330. $.modalOpen({
  331. id: "GetcFree1",
  332. title: "自由项1",
  333. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 5 + "&" + Math.random(),
  334. width: "1000px",
  335. height: "1000px",
  336. callBack: function (iframeId) {
  337. var obj = top.frames[iframeId].submitForm();
  338. $("#txtcFree1").val(obj.Code);
  339. top.frames[iframeId].Close();
  340. }
  341. })
  342. }
  343. //自由项2
  344. function GetcFree2() {
  345. $.modalOpen({
  346. id: "GetcFree2",
  347. title: "自由项2",
  348. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 6 + "&" + Math.random(),
  349. width: "1000px",
  350. height: "1000px",
  351. callBack: function (iframeId) {
  352. var obj = top.frames[iframeId].submitForm();
  353. $("#txtcFree2").val(obj.Code);
  354. top.frames[iframeId].Close();
  355. }
  356. })
  357. }
  358. //自由项3
  359. function GetcFree3() {
  360. $.modalOpen({
  361. id: "GetcFree3",
  362. title: "自由项3",
  363. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 7 + "&" + Math.random(),
  364. width: "1000px",
  365. height: "1000px",
  366. callBack: function (iframeId) {
  367. var obj = top.frames[iframeId].submitForm();
  368. $("#txtcFree3").val(obj.Code);
  369. top.frames[iframeId].Close();
  370. }
  371. })
  372. }
  373. //自由项4
  374. function GetcFree4() {
  375. $.modalOpen({
  376. id: "GetcFree4",
  377. title: "自由项4",
  378. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 8 + "&" + Math.random(),
  379. width: "1000px",
  380. height: "1000px",
  381. callBack: function (iframeId) {
  382. var obj = top.frames[iframeId].submitForm();
  383. $("#txtcFree4").val(obj.Code);
  384. top.frames[iframeId].Close();
  385. }
  386. })
  387. }
  388. //自由项5
  389. function GetcFree5() {
  390. $.modalOpen({
  391. id: "GetcFree5",
  392. title: "自由项5",
  393. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 9 + "&" + Math.random(),
  394. width: "1000px",
  395. height: "1000px",
  396. callBack: function (iframeId) {
  397. var obj = top.frames[iframeId].submitForm();
  398. $("#txtcFree5").val(obj.Code);
  399. top.frames[iframeId].Close();
  400. }
  401. })
  402. }
  403. //自由项6
  404. function GetcFree6() {
  405. $.modalOpen({
  406. id: "GetcFree6",
  407. title: "自由项6",
  408. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 10 + "&" + Math.random(),
  409. width: "1000px",
  410. height: "1000px",
  411. callBack: function (iframeId) {
  412. var obj = top.frames[iframeId].submitForm();
  413. $("#txtcFree6").val(obj.Code);
  414. top.frames[iframeId].Close();
  415. }
  416. })
  417. }
  418. //自由项7
  419. function GetcFree7() {
  420. $.modalOpen({
  421. id: "GetcFree7",
  422. title: "自由项7",
  423. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 11 + "&" + Math.random(),
  424. width: "1000px",
  425. height: "1000px",
  426. callBack: function (iframeId) {
  427. var obj = top.frames[iframeId].submitForm();
  428. $("#txtcFree7").val(obj.Code);
  429. top.frames[iframeId].Close();
  430. }
  431. })
  432. }
  433. //自由项8
  434. function GetcFree8() {
  435. $.modalOpen({
  436. id: "GetcFree8",
  437. title: "自由项8",
  438. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 12 + "&" + Math.random(),
  439. width: "1000px",
  440. height: "1000px",
  441. callBack: function (iframeId) {
  442. var obj = top.frames[iframeId].submitForm();
  443. $("#txtcFree8").val(obj.Code);
  444. top.frames[iframeId].Close();
  445. }
  446. })
  447. }
  448. //自由项9
  449. function GetcFree9() {
  450. $.modalOpen({
  451. id: "GetcFree9",
  452. title: "自由项9",
  453. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 13 + "&" + Math.random(),
  454. width: "1000px",
  455. height: "1000px",
  456. callBack: function (iframeId) {
  457. var obj = top.frames[iframeId].submitForm();
  458. $("#txtcFree9").val(obj.Code);
  459. top.frames[iframeId].Close();
  460. }
  461. })
  462. }
  463. //自由项10
  464. function GetcFree10() {
  465. $.modalOpen({
  466. id: "GetcFree10",
  467. title: "自由项10",
  468. url: "/WMS/ICSMTDOC/GetBatchCode?Type=" + 14 + "&" + Math.random(),
  469. width: "1000px",
  470. height: "1000px",
  471. callBack: function (iframeId) {
  472. var obj = top.frames[iframeId].submitForm();
  473. $("#txtcFree10").val(obj.Code);
  474. top.frames[iframeId].Close();
  475. }
  476. })
  477. }
  478. function Close() {
  479. $.modalClose();
  480. }
  481. function reloadData() {
  482. }
  483. </script>
  484. <div class="topPanel" style="height:50px">
  485. <div class="search">
  486. <table>
  487. <tr>
  488. <td>
  489. <label>条码:</label>
  490. </td>
  491. <td>
  492. <div class="input-group">
  493. <input id="txt_LotNo" type="text" class="form-control" placeholder="条码" style="width: 120px;">
  494. </div>
  495. </td>
  496. <td>
  497. <a id="Search" authorize="yes" style="margin-left:3px;" class="btn btn-primary" onclick="Init()"><i class="fa fa-pencil-square-o"></i>查询</a>
  498. </td>
  499. </tr>
  500. <tr></tr>
  501. </table>
  502. </div>
  503. </div>
  504. <div style="margin-right: 20px;">
  505. <table class="form">
  506. <thead>选择转换料品</thead>
  507. <tr>
  508. <th class="formTitle"><input id="InvCodebox" type="checkbox" onclick="OncheckBox1(this)"> 料品编码:</th>
  509. <td class="formValue">
  510. <input id="txtInvCode" type="text" disabled="disabled" class="form-control" onclick="GetInventory()" autocomplete="off" />
  511. </td>
  512. <th class="formTitle">转换原因:</th>
  513. <td class="formValue">
  514. <input id="txtMemo" type="text" class="form-control" />
  515. </td>
  516. </tr>
  517. </table>
  518. </div>
  519. <div style="height:135px" >
  520. <div style="width:260px" class="divbox" id="ProjectCode">
  521. <div class="formTitle divformTitle" style="width:75px"><input id="ProjectCodebox" type="checkbox" onclick="OncheckBoxProjectCode(this)"> 项目号:</div>
  522. <div class="input-group divformValue" >
  523. <input id="txtProjectCode" type="text" disabled="disabled" onclick="GetProjectCode()" autocomplete="off" />
  524. </div>
  525. </div>
  526. <div style="width:260px" class="divbox" id="BatchCode">
  527. <div class="formTitle divformTitle" style="width:75px"><input id="BatchCodebox" type="checkbox" onclick="OncheckBox2(this)"> 批次:</div>
  528. <div class="input-group divformValue">
  529. <input id="txtBatchCode" type="text" disabled="disabled" onclick="GetBatchCode()" autocomplete="off" />
  530. </div>
  531. </div >
  532. <div style="width:260px" class="divbox" id="Version">
  533. <div class="formTitle divformTitle" style="width:75px"><input id="Versionbox" type="checkbox" onclick="OncheckBoxVersion(this)"> 版本:</div>
  534. <div class="input-group divformValue">
  535. <input id="txtVersion" type="text" disabled="disabled" onclick="GetVersion()" autocomplete="off" />
  536. </div>
  537. </div>
  538. <div style="width:260px" class="divbox" id="Brand">
  539. <div class="formTitle divformTitle" style="width:75px"><input id="Brandbox" type="checkbox" onclick="OncheckBoxBrand(this)"> 厂牌:</div>
  540. <div class="input-group divformValue">
  541. <input id="txtBrand" type="text" disabled="disabled" onclick="GetBrand()" autocomplete="off" />
  542. </div>
  543. </div>
  544. <div style="width:260px" class="divbox" id="cFree1">
  545. <div class="formTitle divformTitle" style="width:75px"><input id="cFree1box" type="checkbox" onclick="OncheckBoxcFree1(this)"> 自由项1:</div>
  546. <div class="input-group divformValue">
  547. <input id="txtcFree1" type="text" disabled="disabled" onclick="GetcFree1()" autocomplete="off" />
  548. </div>
  549. </div>
  550. <div style="width:260px" class="divbox" id="cFree2">
  551. <div class="formTitle divformTitle" style="width:75px"><input id="cFree2box" type="checkbox" onclick="OncheckBoxcFree2(this)"> 自由项2:</div>
  552. <div class="input-group divformValue">
  553. <input id="txtcFree2" type="text" disabled="disabled" onclick="GetcFree2()" autocomplete="off" />
  554. </div>
  555. </div>
  556. <div style="width:260px" class="divbox" id="cFree3">
  557. <div class="formTitle divformTitle" style="width:75px"><input id="cFree3box" type="checkbox" onclick="OncheckBoxcFree2(this)"> 自由项3:</div>
  558. <div class="input-group divformValue">
  559. <input id="txtcFree3" type="text" disabled="disabled" onclick="GetcFree3()" autocomplete="off" />
  560. </div>
  561. </div>
  562. <div style="width:260px" class="divbox" id="cFree4">
  563. <div class="formTitle divformTitle" style="width:75px"><input id="cFree4box" type="checkbox" onclick="OncheckBoxcFree4(this)"> 自由项4:</div>
  564. <div class="input-group divformValue">
  565. <input id="txtcFree4" type="text" disabled="disabled" onclick="GetcFree4()" autocomplete="off" />
  566. </div>
  567. </div>
  568. <div style="width:260px" class="divbox" id="cFree5">
  569. <div class="formTitle divformTitle" style="width:75px"><input id="cFree5box" type="checkbox" onclick="OncheckBoxcFree5(this)"> 自由项5:</div>
  570. <div class="input-group divformValue">
  571. <input id="txtcFree5" type="text" disabled="disabled" onclick="GetcFree5()" autocomplete="off" />
  572. </div>
  573. </div>
  574. <div style="width:260px" class="divbox" id="cFree6">
  575. <div class="formTitle divformTitle" style="width:75px"><input id="cFree6box" type="checkbox" onclick="OncheckBoxcFree6(this)"> 自由项6:</div>
  576. <div class="input-group divformValue">
  577. <input id="txtcFree6" type="text" disabled="disabled" onclick="GetcFree6()" autocomplete="off" />
  578. </div>
  579. </div>
  580. <div style="width:260px" class="divbox" id="cFree7">
  581. <div class="formTitle divformTitle" style="width:75px"><input id="cFree7box" type="checkbox" onclick="OncheckBoxcFree7(this)"> 自由项7:</div>
  582. <div class="input-group divformValue">
  583. <input id="txtcFree7" type="text" disabled="disabled" onclick="GetcFree7()" autocomplete="off" />
  584. </div>
  585. </div>
  586. <div style="width:260px" class="divbox" id="cFree8">
  587. <div class="formTitle divformTitle" style="width:75px"><input id="cFree8box" type="checkbox" onclick="OncheckBoxcFree8(this)"> 自由项8:</div>
  588. <div class="input-group divformValue">
  589. <input id="txtcFree8" type="text" disabled="disabled" onclick="GetcFree8()" autocomplete="off" />
  590. </div>
  591. </div>
  592. <div style="width:260px" class="divbox" id="cFree9">
  593. <div class="formTitle divformTitle" style="width:75px"><input id="cFree9box" type="checkbox" onclick="OncheckBoxcFree9(this)"> 自由项9:</div>
  594. <div class="input-group divformValue">
  595. <input id="txtcFree9" type="text" disabled="disabled" onclick="GetcFree9()" autocomplete="off" />
  596. </div>
  597. </div>
  598. <div style="width:260px" class="divbox" id="cFree10">
  599. <div class="formTitle divformTitle" style="width:75px"><input id="cFree10box" type="checkbox" onclick="OncheckBoxcFree10(this)"> 自由项10:</div>
  600. <div class="input-group divformValue">
  601. <input id="txtcFree10" type="text" disabled="disabled" onclick="GetcFree10()" autocomplete="off" />
  602. </div>
  603. </div>
  604. </div>
  605. <div class="gridPanel" id="gridPanel" style="margin-top:10px">
  606. <table id="gridList"></table>
  607. <div id="gridPager"></div>
  608. </div>