2f7417e8129afdb02dbcb8a58e1c64c859898a6a.svn-base 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet type="text/css" href="../../css/body.css" ?>
  3. <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
  4. <xhtml:head>
  5. <xhtml:title>
  6. <![CDATA[炼钢作业 >> 板坯库管理 >> 板坯外销发运(UIG080010)]]>
  7. </xhtml:title>
  8. <model id="model1">
  9. <instance id="instance1">
  10. <root xmlns="">
  11. <searchData>
  12. <SLAB_NO/>
  13. <PICKSTORAGETIME/>
  14. <LISTNUMBER/>
  15. <TRAINWAGON/>
  16. <PACTNO/>
  17. <PLANDATE/>
  18. </searchData>
  19. <datagrid1/>
  20. <resData/>
  21. <reqData/>
  22. <saveData>
  23. <PLT_TRS_CAR_NO/>
  24. <PLT_TRS_WKSHIFT>1</PLT_TRS_WKSHIFT>
  25. <PLT_TRS_WKGROUP>甲</PLT_TRS_WKGROUP>
  26. <PLT_TRS_EMP_ID/>
  27. <NUMBER/>
  28. <PLAN_ID/>
  29. <BPH/>
  30. </saveData>
  31. <datagrid2/>
  32. <tempData/>
  33. <datagrid3/>
  34. <Updata>
  35. <rowStuts>u</rowStuts>
  36. </Updata>
  37. <BK/>
  38. </root>
  39. </instance>
  40. <script type="javascript" ev:event="xforms-ready">
  41. <![CDATA[
  42. ]]>
  43. </script>
  44. </model>
  45. <script type="javascript" src="../../js/boaCommon.js"/>
  46. <script type="javascript" src="../../js/b01.js"/>
  47. <script type="javascript">
  48. <![CDATA[
  49. function find()
  50. {
  51. model.removenode("/root/reqData");
  52. model.makeValue("/root/reqData/SLAB_NO" , input1.value);
  53. commSubmit("UIG080010-service" , "find" , "glueAction.do");
  54. model.copyNode("/root/datagrid1" , "/root/resData/UIG080010Result_VO");
  55. model.refresh();
  56. }
  57. //发运操作
  58. function save(){
  59. // 表格中的行数
  60. var gridRows = datagrid1.rows - datagrid1.fixedRows;
  61. //清空发送接点
  62. model.removenode("/root/reqData");
  63. model.makeNode("/root/reqData");
  64. //控制输入数据不能为空,前提是该行已经CHK 选择
  65. for(var i = datagrid1.fixedRows ; i < (gridRows + datagrid1.fixedRows) ; i++){
  66. if(datagrid1.valueMatrix(i,datagrid1.colRef("CHK")) == "Y" &&
  67. ( input8.value== "" || input3.value=="" ) ){
  68. alert(" 提交数据有误,发运号或车辆号不能有空值 ");return;
  69. }
  70. if(datagrid1.valueMatrix(i,datagrid1.colRef("CHK")) == "Y" &&
  71. ( datagrid1.valueMatrix(i,datagrid1.colRef("SLAB_OUT_TP")) == "不允许出库")){
  72. alert(" 坯料不允许出库,联系质检! ");return;
  73. }
  74. }
  75. model.removenode("/root/reqData");
  76. model.makeValue("/root/reqData/NUMBER",model.getValue("/root/saveData/NUMBER"));
  77. model.makeValue("/root/reqData/PLAN_ID" , input3.value);
  78. //window.alert(model.getValue("/root/saveData/NUMBER"));
  79. model.makeValue("/root/reqData/PLT_TRS_WKGROUP" , combo2.value);
  80. model.makeValue("/root/reqData/PLT_TRS_CAR_NO" , input8.value);
  81. model.makeValue("/root/reqData/PLT_TRS_WKSHIFT" , combo1.value);
  82. model.makeValue("/root/reqData/PLT_TRS_EMP_ID" , input11.value);
  83. model.makeNode("/root/reqData");
  84. for(var i=0;i<datagrid1.rows;i++){
  85. datagrid1.rowStatus(i) = 2;
  86. }
  87. model.refresh();
  88. //model.makeValue("/root/saveData/BPH", datagrid1.valueMatrix(datagrid1.row, datagrid1.colRef("SERIALNUMBER")));
  89. b01MultiUpdate(datagrid1,"/root/reqData","A",true,"rowStuts");//获得修改、插入、删除参数
  90. commSubmit("UIG080010-service","save","glueAction.do");
  91. model.copyNode("/root/BK" , "/root/resData/BK_VO");
  92. var messages = model.getValue("/root/resData/MESSAGES_VO/MESSAGES_Row");
  93. if(messages != "")
  94. {
  95. alert(messages);
  96. }
  97. BK.visible = true;button8.visible = true;
  98. datagrid1.clearStatus();
  99. find();
  100. }
  101. function saveback(){
  102. model.removenode("/root/reqData");
  103. model.makeNode("/root/reqData");
  104. for(var i=0;i<datagrid2.rows;i++){
  105. datagrid2.rowStatus(i) = 2;
  106. /*var chk = datagrid2.valueMatrix(i,datagrid2.colRef("CHK"));
  107. if(chk == "Y")
  108. {
  109. if(datagrid2.valueMatrix(i,datagrid2.colRef("MEMO")) == "")
  110. {
  111. alert("请输入退回原因!");
  112. return;
  113. }
  114. }*/
  115. }
  116. model.refresh();
  117. b01MultiUpdate(datagrid2,"/root/reqData","A",true,"rowStuts");//获得修改、插入、删除参数
  118. model.makeValue("/root/reqData/REG_NM",model.getValue("/root/initData/rcvInfo/REG_NM"));//getLoggingInInfo();//获取登录人信息
  119. commSubmit("UIG080010-service","saveBack","glueAction.do");
  120. model.copyNode("/root/BK" , "/root/resData/BK_VO");
  121. var messages = model.getValue("/root/resData/MESSAGES_VO/MESSAGES_Row");
  122. if(messages != "")
  123. {
  124. alert(messages);
  125. }
  126. BK.visible = true;button8.visible = true;
  127. datagrid2.clearStatus();
  128. find1();
  129. }
  130. function find1()
  131. {
  132. model.removenode("/root/reqData");
  133. model.makeValue("/root/reqData/PICKSTORAGETIME" , input2.value);
  134. model.makeValue("/root/reqData/LISTNUMBER" , input6.value);
  135. model.makeValue("/root/reqData/TRAINWAGON" , input4.value);
  136. model.makeValue("/root/reqData/PACTNO" , input5.value);
  137. commSubmit("UIG080010-service" , "find1" , "glueAction.do");
  138. model.copyNode("/root/datagrid2" , "/root/resData/UIG080010Result1_VO");
  139. model.refresh();
  140. }
  141. function find2()
  142. {
  143. model.removenode("/root/reqData");
  144. model.makeValue("/root/reqData/PLANDATE" , input10.value);
  145. commSubmit("UIG080010-service" , "find2" , "glueAction.do");
  146. model.copyNode("/root/datagrid3" , "/root/resData/UIG080010Result2_VO");
  147. model.refresh();
  148. }
  149. // function call_righ_UIG080010()
  150. // {
  151. // var rowId = datagrid2.row;
  152. // //设置跺位查询的默认跺位为 L 开头的炼钢板坯库
  153. // model.setValue("/root/tempData","L");
  154. // window.load("UIG040044.xrw","modal","", "left:600; top:78; width:320; height:480; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  155. // datagrid2.valueMatrix(rowId,datagrid2.colRef("BUTTRESS")) = model.getValue("/root/tempData");
  156. // model1.removenode("/root/tempData");
  157. // model1.makeNode("/root/tempData");
  158. //
  159. // }
  160. ]]>
  161. </script>
  162. </xhtml:head>
  163. <xhtml:body pagewidth="980" pageheight="620" guideline="1,71;" style="border-color:#c0c0c0; border-style:solid; ">
  164. <caption id="caption1" style="left:-1px; top:214px; width:45px; height:20px; font-weight:bold; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">板坯号</caption>
  165. <input id="input1" ref="/root/searchData/SLAB_NO" style="left:39px; top:214px; width:100px; height:20px; "/>
  166. <caption id="caption2" style="left:579px; top:214px; width:45px; height:20px; font-weight:bold; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">班次</caption>
  167. <caption id="caption3" style="left:684px; top:214px; width:45px; height:20px; font-weight:bold; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">班组</caption>
  168. <caption id="caption4" style="left:789px; top:214px; width:45px; height:20px; font-weight:bold; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">登录人</caption>
  169. <select1 id="combo1" ref="/root/saveData/PLT_TRS_WKSHIFT" appearance="minimal" style="left:624px; top:214px; width:40px; height:20px; ">
  170. <choices>
  171. <item>
  172. <label>早</label>
  173. <value>1</value>
  174. </item>
  175. <item>
  176. <label>中</label>
  177. <value>2</value>
  178. </item>
  179. <item>
  180. <label>晚</label>
  181. <value>3</value>
  182. </item>
  183. </choices>
  184. </select1>
  185. <select1 id="combo2" ref="/root/saveData/PLT_TRS_WKGROUP" appearance="minimal" style="left:729px; top:214px; width:40px; height:20px; ">
  186. <choices>
  187. <item>
  188. <label>甲</label>
  189. <value>甲</value>
  190. </item>
  191. <item>
  192. <label>已</label>
  193. <value>已</value>
  194. </item>
  195. <item>
  196. <label>丙</label>
  197. <value>丙</value>
  198. </item>
  199. <item>
  200. <label>丁</label>
  201. <value>丁</value>
  202. </item>
  203. </choices>
  204. </select1>
  205. <datagrid id="datagrid1" nodeset="/root/datagrid1/UIG080010Result_Row" scroll="both" allowuserresize="true" caption="选择^板坯号^钢码^合同号^炉次号^出库判定^板坯^板坯^板坯^板坯^板坯^堆置位置^外销日期^外观等级^成分判定等级^瑕疵代码1^瑕疵代码2^瑕疵代码3^瑕疵代码4^班次^班组^登录人^明细号^车辆号^发运号^热送区分|选择^板坯号^钢码^合同号^炉次号^出库判定^厚度^宽度^长度^重量^称重重量(吨)^堆置位置^外销日期^外观等级^成分判定等级^瑕疵代码1^瑕疵代码2^瑕疵代码3^瑕疵代码4^班次^班组^登录人^明细号^车辆号^发运号^热送区分" colsep="^" colwidth="31, 100, 75, 100, 81, 100, 39, 39, 38, 39, 100, 70, 100, 39, 45, 100, 100, 100, 100, 67, 69, 47, 100, 100, 100, 100" defaultrows="9" explorerbar="sortshow" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:-1px; top:244px; width:949px; height:195px; border-color:#000000; ">
  206. <col checkvalue="Y,N" ref="CHK" type="checkbox"/>
  207. <col editable="false" ref="SLAB_NO" type="input"/>
  208. <col editable="false" ref="STL_GRD" type="input"/>
  209. <col ref="L2_SCH_NO"/>
  210. <col editable="false" ref="CHARGE_NO" type="input"/>
  211. <col ref="SLAB_OUT_TP"/>
  212. <col editable="false" ref="SLAB_THK" type="input"/>
  213. <col editable="false" ref="SLAB_WTH" type="input"/>
  214. <col editable="false" ref="SLAB_LEN" type="input"/>
  215. <col editable="false" ref="SLAB_WGT" type="input"/>
  216. <col editable="false" ref="WEIGHT_WGT" type="input"/>
  217. <col editable="false" ref="CUR_LOAD_LOC" type="input"/>
  218. <col editable="false" ref="PLT_TRS_DTIME" type="input" format="yyyy-mm-dd hh:nn:ss"/>
  219. <col ref="EXTSHAPE_GRD"/>
  220. <col ref="SLAB_INGR_DEC_GRD"/>
  221. <col ref="CRK_CD1" type="output"/>
  222. <col ref="CRK_CD2" type="output"/>
  223. <col ref="CRK_CD3" type="output"/>
  224. <col ref="CRK_CD4" type="output"/>
  225. <col ref="PLT_TRS_WKSHIFT" visibility="hidden"/>
  226. <col ref="PLT_TRS_WKGROUP" visibility="hidden"/>
  227. <col ref="PLT_TRS_EMP_ID" visibility="hidden"/>
  228. <col ref="NUMBER" visibility="hidden"/>
  229. <col ref="PLT_TRS_CAR_NO" visibility="hidden"/>
  230. <col ref="PLAN_ID" visibility="hidden"/>
  231. <col ref="HCR_CLF"/>
  232. </datagrid>
  233. <caption id="caption5" style="left:0px; top:445px; width:60px; height:20px; font-weight:bold; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">外销日期</caption>
  234. <datagrid id="datagrid2" nodeset="/root/datagrid2/UIG080010Result1_Row" allowuserresize="true" caption="选择^板坯号^发运号^合同号^明细号^车辆号^发运时间^发运操作人^发运班次^发运班组^板坯^板坯^板坯^板坯^板坯^板坯退回放置位置^退回原因^炉号^收货单位^连铸号^产线^牌号^订货单位|选择^板坯号^发运号^合同号^明细号^车辆号^发运时间^发运操作人^发运班次^发运班组^厚度^宽度^长度^重量^过磅重量^板坯退回放置位置^退回原因^炉号^收货单位^连铸号^产线^牌号^订货单位" colsep="^" colwidth="43, 91, 100, 70, 83, 71, 100, 85, 72, 78, 32, 33, 33, 51, 100, 90, 100, 78, 100, 100, 100, 100, 100" defaultrows="18" explorerbar="sortshow" mergecellsfixedrows="bycolrec" rowsep="|" selectionmode="free" style="left:-1px; top:469px; width:949px; height:230px; border-color:#000000; ">
  235. <col checkvalue="Y,N" ref="CHK" type="checkbox"/>
  236. <col editable="false" ref="SERIALNUMBER" type="input"/>
  237. <col ref="PLANVEHICLEID" type="input"/>
  238. <col editable="false" ref="PACTNO" type="input"/>
  239. <col key="false" ref="LISTNUMBER" type="input"/>
  240. <col key="false" ref="TRAINWAGON" type="input"/>
  241. <col ref="PICKSTORAGETIME"/>
  242. <col key="false" ref="PICKSTORAGEMAN" type="input"/>
  243. <col key="false" ref="CLASSORDER" type="input"/>
  244. <col key="false" ref="CLASSTEAM" type="input"/>
  245. <col editable="false" ref="THICK" type="input"/>
  246. <col editable="false" ref="WIDTH" type="input"/>
  247. <col editable="false" ref="LENGTH" type="input"/>
  248. <col editable="false" ref="WEIGHT" type="input"/>
  249. <col key="false" ref="GBZL" type="input"/>
  250. <col ref="BUTTRESS" type="inputbutton" style="background-color:#ffff99; "/>
  251. <col editable="true" ref="MEMO" type="input" style="background-color:#ffff99; "/>
  252. <col ref="STOVENO"/>
  253. <col ref="INCEPTCORPNAME"/>
  254. <col ref="CCMID"/>
  255. <col ref="CXLY"/>
  256. <col ref="STEEL"/>
  257. <col ref="BUYERCODE"/>
  258. <script type="javascript" ev:event="xforms-deselect">
  259. <![CDATA[
  260. datagrid2.rowStatus(datagrid2.row) = 0;
  261. ]]>
  262. </script>
  263. </datagrid>
  264. <input id="input2" ref="/root/searchData/PICKSTORAGETIME" inputtype="date" style="left:60px; top:445px; width:100px; height:20px; "/>
  265. <caption id="caption7" style="left:334px; top:444px; width:45px; height:20px; font-weight:bold; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">车辆号</caption>
  266. <caption id="caption8" style="left:494px; top:444px; width:50px; height:20px; font-weight:bold; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">板坯号</caption>
  267. <caption id="caption9" style="left:179px; top:444px; width:45px; height:20px; font-weight:bold; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">发运号</caption>
  268. <input id="input4" ref="/root/searchData/TRAINWAGON" style="left:379px; top:444px; width:100px; height:20px; "/>
  269. <input id="input5" ref="/root/searchData/PACTNO" style="left:544px; top:444px; width:100px; height:20px; "/>
  270. <input id="input6" ref="/root/searchData/LISTNUMBER" style="left:224px; top:444px; width:100px; height:20px; "/>
  271. <button id="button1" style="left:664px; top:444px; width:55px; height:20px; background-color:#99ccff; border-style:solid; ">
  272. <caption>查询</caption>
  273. <script type="javascript" ev:event="onclick">
  274. <![CDATA[
  275. find1();
  276. ]]>
  277. </script>
  278. </button>
  279. <button id="button2" style="left:824px; top:444px; width:55px; height:20px; background-color:#99ccff; border-color:#000000; border-style:solid; ">
  280. <caption>退回</caption>
  281. <script type="javascript" ev:event="onclick">
  282. <![CDATA[
  283. saveback()
  284. ]]>
  285. </script>
  286. </button>
  287. <button id="button3" visibility="visible" style="left:149px; top:214px; width:45px; height:20px; background-color:#99ccff; border-style:solid; ">
  288. <caption>查询</caption>
  289. <script type="javascript" ev:event="onclick">
  290. <![CDATA[
  291. var name = model.getValue("/root/initData/rcvInfo/REG_NM");
  292. input11.value = name;
  293. find();
  294. ]]>
  295. </script>
  296. </button>
  297. <caption id="caption10" visibility="hidden" style="left:194px; top:204px; width:45px; height:20px; font-weight:bold; color:#000000; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">明细号</caption>
  298. <input id="input7" ref="/root/saveData/NUMBER" visibility="hidden" style="left:194px; top:224px; width:100px; height:20px; "/>
  299. <caption id="caption11" style="left:449px; top:214px; width:45px; height:20px; font-weight:bold; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">车辆号</caption>
  300. <input id="input8" ref="/root/saveData/PLT_TRS_CAR_NO" style="left:494px; top:214px; width:65px; height:20px; "/>
  301. <input id="input3" ref="/root/saveData/PLAN_ID" style="left:344px; top:214px; width:85px; height:20px; " editable="false"/>
  302. <caption id="caption6" style="left:299px; top:214px; width:45px; height:20px; font-weight:bold; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">发运号</caption>
  303. <datagrid id="datagrid3" nodeset="/root/datagrid3/UIG080010Result2_Row" allowuserresize="true" caption="选择^合同号^收货单位^到站^发运号^计划号^发运车数^排车量^排车日期^牌号^车牌号^发运类型^运输类型|选择^合同号^收货单位^到站^发运号^计划号^发运车数^排车量^排车日期^牌号^车牌号^发运类型^运输类型" colsep="^" colwidth="43, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100" defaultrows="18" explorerbar="sortshow" mergecellsfixedrows="bycolrec" rowsep="|" selectionmode="free" style="left:4px; top:25px; width:945px; height:175px; border-color:#000000; ">
  304. <col checkvalue="Y,N" ref="CHK" type="checkbox"/>
  305. <col key="false" ref="PACTNO" type="input"/>
  306. <col ref="INCEPTCORPNAME"/>
  307. <col ref="STATIONNAME"/>
  308. <col key="false" ref="ASKPLAN_ID" type="input"/>
  309. <col ref="PACTINDEXDETAIL"/>
  310. <col ref="SENDQUANTITY"/>
  311. <col ref="WEIGHT"/>
  312. <col ref="PLANDATE"/>
  313. <col ref="STEELCODE"/>
  314. <col ref="VECIHLENO"/>
  315. <col ref="NAME_ TRANSTYPE"/>
  316. <col ref="NAME_ TRAINTYPE"/>
  317. <script type="javascript" ev:event="onbuttonclick">
  318. <![CDATA[
  319. ]]>
  320. </script>
  321. <script type="javascript" ev:event="xforms-deselect">
  322. <![CDATA[
  323. datagrid2.rowStatus(datagrid2.row) = 0;
  324. ]]>
  325. </script>
  326. <script type="javascript" ev:event="onclick">
  327. <![CDATA[
  328. var fayunno = datagrid3.valueMatrix(datagrid3.row , datagrid3.colRef("ASKPLAN_ID"))
  329. var carno = datagrid3.valueMatrix(datagrid3.row , datagrid3.colRef("VECIHLENO"))
  330. input3.value = fayunno;
  331. input8.value = carno;
  332. ]]>
  333. </script>
  334. </datagrid>
  335. <caption id="caption12" style="left:0px; top:0px; width:45px; height:20px; font-weight:bold; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">发运号</caption>
  336. <input id="input9" style="left:45px; top:0px; width:100px; height:20px; "/>
  337. <caption id="caption13" style="left:160px; top:0px; width:60px; height:20px; font-weight:bold; vertical-align:middle; background-color:#99ccff; border-color:#000000; border-style:solid; ">排车时间</caption>
  338. <button id="button4" style="left:330px; top:0px; width:55px; height:20px; background-color:#99ccff; border-style:solid; ">
  339. <caption>查询</caption>
  340. <script type="javascript" ev:event="onclick">
  341. <![CDATA[
  342. find2();
  343. ]]>
  344. </script>
  345. </button>
  346. <input id="input10" ref="/root/searchData/PLANDATE" inputtype="date" style="left:220px; top:0px; width:105px; height:20px; "/>
  347. <button id="button5" visibility="hidden" style="left:244px; top:205px; width:30px; height:20px; background-color:#ccffff; border-style:solid; ">
  348. <caption>保存</caption>
  349. <script type="javascript" ev:event="onclick">
  350. <![CDATA[
  351. save();
  352. ]]>
  353. </script>
  354. </button>
  355. <button id="button6" visibility="hidden" style="left:469px; top:9px; width:100px; height:20px; ">
  356. <caption>button6</caption>
  357. <script type="javascript" ev:event="onclick">
  358. <![CDATA[
  359. find();
  360. ]]>
  361. </script>
  362. </button>
  363. <button id="button7" visibility="hidden" style="left:629px; top:9px; width:100px; height:20px; ">
  364. <caption>button7</caption>
  365. <script type="javascript" ev:event="onclick">
  366. <![CDATA[
  367. save();
  368. ]]>
  369. </script>
  370. </button>
  371. <datagrid id="BK" nodeset="/root/BK/BK_Row" visibility="hidden" scroll="vertical" caption="板坯号^操作情况" colsep="^" colwidth="141, 152" rowsep="|" style="left:284px; top:304px; width:335px; height:110px; ">
  372. <col ref="SLAB_NO" type="input"/>
  373. <col ref="TISHI" type="input"/>
  374. </datagrid>
  375. <button id="button8" visibility="hidden" style="left:579px; top:304px; width:25px; height:20px; ">
  376. <caption>╳</caption>
  377. <script type="javascript" ev:event="onclick">
  378. <![CDATA[
  379. BK.visible = false;
  380. button8.visible = false;
  381. ]]>
  382. </script>
  383. </button>
  384. <input id="input11" ref="/root/saveData/PLT_TRS_EMP_ID" style="left:834px; top:214px; width:100px; height:20px; "/>
  385. </xhtml:body>
  386. </xhtml:html>