UIH020031.xrw 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="../../css/body.css" type="text/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[热轧作业>>热轧作业实绩>>轧钢实绩查询(UIH020031)]]>
  7. </xhtml:title>
  8. <model id="model1">
  9. <instance id="instance1">
  10. <root xmlns="">
  11. <reqData/>
  12. <resData/>
  13. <searchData>
  14. <ROLL_MANA_NO/>
  15. <OLD_SAMPL_NO/>
  16. <FROM_MILLTIME/>
  17. <TO_MILLTIME/>
  18. </searchData>
  19. <datagrid1/>
  20. <tempData/>
  21. </root>
  22. </instance>
  23. </model>
  24. <script type="javascript">
  25. <![CDATA[
  26. /*
  27. *查询函数
  28. */
  29. function find()
  30. {
  31. model.removenode("/root/reqData");
  32. model.makeNode("/root/reqData");
  33. var ROLL_MANA_NO = model.getValue("/root/searchData/ROLL_MANA_NO");
  34. /*
  35. if(ROLL_MANA_NO == ""){
  36. alert(" 轧辊单元信息不能为空,请输入相应的轧辊单元信息! ");
  37. }
  38. */
  39. model.duplicate("/root/reqData","/root/searchData/ROLL_MANA_NO");
  40. model.duplicate("/root/reqData","/root/searchData/OLD_SAMPL_NO");
  41. model.duplicate("/root/reqData","/root/searchData/FROM_MILLTIME");
  42. model.duplicate("/root/reqData","/root/searchData/TO_MILLTIME");
  43. commSubmit("UIH020031-service","find","glueAction.do");
  44. commAppendData("/root/datagrid1/SpecMillResult_VO","/root/resData/SpecMillResult_VO");
  45. model.refresh();
  46. }
  47. function excelExport(){
  48. return datagrid1;
  49. }
  50. function vDate(){
  51. //获取系统时间 格式yyyymmddhhmmss
  52. //获取系统时间
  53. var sysDate = new Date();
  54. var year = sysDate.getYear().toString();
  55. var month = (sysDate.getMonth()+1).toString();
  56. var date = sysDate.getDate().toString();
  57. var hours = sysDate.getHours().toString();
  58. var minutes = sysDate.getMinutes().toString();
  59. //这里不精确到秒,用00代替
  60. //var second = sysDate.getMilliseconds().toString();
  61. var zero = 0;
  62. //最终结果时间串
  63. var vSysDate = null;
  64. if(month<10){
  65. if(date<10){
  66. if(hours<10){
  67. if(minutes<10){
  68. vSysDate = year+zero+month+zero+date+zero+hours+zero+minutes;
  69. }else{
  70. vSysDate = year+zero+month+zero+date+zero+hours+minutes;
  71. }
  72. }else{
  73. if(minutes<10){
  74. vSysDate = year+zero+month+zero+date+hours+zero+minutes;
  75. }else{
  76. vSysDate = year+zero+month+zero+date+hours+minutes;
  77. }
  78. }
  79. }else{
  80. if(hours<10){
  81. if(minutes<10){
  82. vSysDate = year+zero+month+date+zero+hours+zero+minutes;
  83. }else{
  84. vSysDate = year+zero+month+date+zero+hours+minutes;
  85. }
  86. }else{
  87. if(minutes<10){
  88. vSysDate = year+zero+month+date+hours+zero+minutes;
  89. }else{
  90. vSysDate = year+zero+month+date+hours+minutes;
  91. }
  92. }
  93. }
  94. }else{
  95. if(date<10){
  96. if(hours<10){
  97. if(minutes<10){
  98. vSysDate = year+month+zero+date+zero+hours+zero+minutes;
  99. }else{
  100. vSysDate = year+month+zero+date+zero+hours+minutes;
  101. }
  102. }else{
  103. if(minutes<10){
  104. vSysDate = year+month+zero+date+hours+zero+minutes;
  105. }else{
  106. vSysDate = year+month+zero+date+hours+minutes;
  107. }
  108. }
  109. }else{
  110. if(hours<10){
  111. if(minutes<10){
  112. vSysDate = year+month+date+zero+hours+zero+minutes;
  113. }else{
  114. vSysDate = year+month+date+zero+hours+minutes;
  115. }
  116. }else{
  117. if(minutes<10){
  118. vSysDate = year+month+date+hours+zero+minutes;
  119. }else{
  120. vSysDate = year+month+date+hours+minutes;
  121. }
  122. }
  123. }
  124. }
  125. return vSysDate+zero+zero;
  126. }
  127. ]]>
  128. </script>
  129. <script type="javascript" src="../../js/boaCommon.js"/>
  130. </xhtml:head>
  131. <xhtml:body pageheight="620" guideline="2,619;2,619;" style="font-family:宋体; font-size:16pt; ">
  132. <caption id="caption2" class="cell" style="left:0px; top:5px; width:90px; height:20px; text-align:center; border-color:#000000; border-style:solid; ">轧辊单元</caption>
  133. <datagrid id="datagrid1" nodeset="/root/datagrid1/SpecMillResult_VO/SpecMillResult_Row" caption="轧辊单元^流水号^轧钢时间^生产流水号^钢卷号^板坯号^钢号^标准号^合同号^订单号^收货单位^合同单位^外观判定等级^综合判定结果^交货状态^加热炉^加热炉^加热炉^加热炉^加热炉^粗轧 ^粗轧 ^粗轧 ^粗轧 ^粗轧 ^精轧^精轧^精轧^精轧^精轧^精轧^精轧^精轧^精轧^精轧^精轧^精轧^精轧^精轧^精轧^精轧^卷取^卷取^卷取|轧辊单元^流水号^轧钢时间^生产流水号^钢卷号^板坯号^钢号^标准号^合同号^订单号^收货单位^合同单位^外观判定等级^综合判定结果^交货状态^均热段时间^均热段温度^在炉时间^装炉温度^出炉温度^R2出口实绩宽度^R2出口实绩厚度^R2出口实绩长度^R2出口实绩温度^R1出口实绩温度^入口温度^入口温度^入口温度^入口温度^出口温度^出口温度^出口温度^出口温度^厚度^厚度^厚度^厚度^宽度^宽度^宽度^宽度^卷取温度额定值^卷取温度平均值^钢卷外径|轧辊单元^流水号^轧钢时间^生产流水号^钢卷号^板坯号^钢号^标准号^合同号^订单号^收货单位^合同单位^外观判定等级^综合判定结果^交货状态^均热段时间^均热段温度^在炉时间^装炉温度^出炉温度^R2出口实绩宽度^R2出口实绩厚度^R2出口实绩长度^R2出口实绩温度^R1出口实绩温度^最大^最小^平均^额定^最大^最小^平均^额定^最大^最小^平均^额定^最大^最小^平均^额定^卷取温度额定值^卷取温度平均值^钢卷外径" colsep="^" colwidth="34, 36, 90, 90, 90, 90, 85, 85, 85, 85, 90, 90, 100, 100, 87, 54, 54, 60, 63, 60, 54, 54, 55, 65, 65, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 60, 65, 75" defaultrows="30" explorerbar="sortshow" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:35px; width:980px; height:565px; ">
  134. <col ref="ROLL_MANA_NO"/>
  135. <col ref="SEQ"/>
  136. <col editable="false" ref="MILL_DTIME" type="input" format="yyyy-mm-dd hh:mm:ss" style="background-color:#ffffff; "/>
  137. <col editable="false" ref="COIL_NO" type="input" style="background-color:#ffffff; ">
  138. <script type="javascript" ev:event="onclick">
  139. <![CDATA[
  140. // if(datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")) != "" || datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")) != null){
  141. // model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  142. // //replace 整体替换这个页面 modal 是打开一个新页面
  143. // window.load("UIH020030.xrw","modal","", "left:50; top:78; width:980; height:620; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  144. // }
  145. ]]>
  146. </script>
  147. </col>
  148. <col editable="false" ref="OLD_SAMPL_NO" type="input" style="background-color:#ffffff; "/>
  149. <col editable="false" ref="SLAB_NO" type="input" style="background-color:#ffffff; "/>
  150. <col editable="false" ref="STL_GRD" type="input" style="background-color:#ffffff; "/>
  151. <col editable="false" ref="SPEC_ABBSYM" type="input" style="background-color:#ffffff; "/>
  152. <col editable="false" ref="ORD_NO" type="input" style="background-color:#ffffff; "/>
  153. <col editable="false" ref="ORD_SEQ" type="input" style="background-color:#ffffff; "/>
  154. <col editable="false" ref="ORD_NM" type="input" style="background-color:#ffffff; "/>
  155. <col editable="false" ref="CUST_NM" type="input" style="background-color:#ffffff; "/>
  156. <col ref="EXTSHAPE_DEC_GRD"/>
  157. <col ref="TOT_DEC_GRD"/>
  158. <col editable="false" ref="PRODNM_CD" type="input" style="background-color:#ffffff; "/>
  159. <col ref="EQ_HT_TEMP" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  160. <script type="javascript" ev:event="onclick">
  161. <![CDATA[
  162. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  163. //replace 整体替换这个页面 modal 是打开一个新页面
  164. window.load("UIH020035.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  165. ]]>
  166. </script>
  167. </col>
  168. <col ref="EQ_HT_INFUR_HOUR" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  169. <script type="javascript" ev:event="onclick">
  170. <![CDATA[
  171. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  172. //replace 整体替换这个页面 modal 是打开一个新页面
  173. window.load("UIH020035.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  174. ]]>
  175. </script>
  176. </col>
  177. <col ref="INFUR_HOUR" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  178. <script type="javascript" ev:event="onclick">
  179. <![CDATA[
  180. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  181. //replace 整体替换这个页面 modal 是打开一个新页面
  182. window.load("UIH020035.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  183. ]]>
  184. </script>
  185. </col>
  186. <col ref="CHRGING_BEF_TEMP" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  187. <script type="javascript" ev:event="onclick">
  188. <![CDATA[
  189. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  190. //replace 整体替换这个页面 modal 是打开一个新页面
  191. window.load("UIH020035.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  192. ]]>
  193. </script>
  194. </col>
  195. <col ref="EXTRACT_AVG_TEMP" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  196. <script type="javascript" ev:event="onclick">
  197. <![CDATA[
  198. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  199. //replace 整体替换这个页面 modal 是打开一个新页面
  200. window.load("UIH020035.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  201. ]]>
  202. </script>
  203. </col>
  204. <col ref="RM_EXT_AVG_WTH" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  205. <script type="javascript" ev:event="onclick">
  206. <![CDATA[
  207. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  208. //replace 整体替换这个页面 modal 是打开一个新页面
  209. window.load("UIH020032.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  210. ]]>
  211. </script>
  212. </col>
  213. <col ref="RM_EXT_AVG_THK" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  214. <script type="javascript" ev:event="onclick">
  215. <![CDATA[
  216. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  217. //replace 整体替换这个页面 modal 是打开一个新页面
  218. window.load("UIH020032.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  219. ]]>
  220. </script>
  221. </col>
  222. <col ref="RM_EXT_AVG_LEN" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  223. <script type="javascript" ev:event="onclick">
  224. <![CDATA[
  225. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  226. //replace 整体替换这个页面 modal 是打开一个新页面
  227. window.load("UIH020032.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  228. ]]>
  229. </script>
  230. </col>
  231. <col ref="R1_EXT_TEMP" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  232. <script type="javascript" ev:event="onclick">
  233. <![CDATA[
  234. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  235. //replace 整体替换这个页面 modal 是打开一个新页面
  236. window.load("UIH020032.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  237. ]]>
  238. </script>
  239. </col>
  240. <col ref="R2_EXT_TEMP" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  241. <script type="javascript" ev:event="onclick">
  242. <![CDATA[
  243. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  244. //replace 整体替换这个页面 modal 是打开一个新页面
  245. window.load("UIH020032.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  246. ]]>
  247. </script>
  248. </col>
  249. <col ref="F1_ENT_TEMP_MAX" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  250. <script type="javascript" ev:event="onclick">
  251. <![CDATA[
  252. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  253. //replace 整体替换这个页面 modal 是打开一个新页面
  254. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  255. ]]>
  256. </script>
  257. </col>
  258. <col ref="F1_ENT_TEMP_MIN" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  259. <script type="javascript" ev:event="onclick">
  260. <![CDATA[
  261. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  262. //replace 整体替换这个页面 modal 是打开一个新页面
  263. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  264. ]]>
  265. </script>
  266. </col>
  267. <col ref="F1_ENT_TEMP_AVG" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  268. <script type="javascript" ev:event="onclick">
  269. <![CDATA[
  270. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  271. //replace 整体替换这个页面 modal 是打开一个新页面
  272. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  273. ]]>
  274. </script>
  275. </col>
  276. <col ref="F1_ENT_TEMP" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  277. <script type="javascript" ev:event="onclick">
  278. <![CDATA[
  279. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  280. //replace 整体替换这个页面 modal 是打开一个新页面
  281. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  282. ]]>
  283. </script>
  284. </col>
  285. <col ref="FM_EXT_STRIP_TEMP_MAX" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  286. <script type="javascript" ev:event="onclick">
  287. <![CDATA[
  288. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  289. //replace 整体替换这个页面 modal 是打开一个新页面
  290. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  291. ]]>
  292. </script>
  293. </col>
  294. <col ref="FM_EXT_STRIP_TEMP_MIN" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  295. <script type="javascript" ev:event="onclick">
  296. <![CDATA[
  297. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  298. //replace 整体替换这个页面 modal 是打开一个新页面
  299. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  300. ]]>
  301. </script>
  302. </col>
  303. <col ref="FM_EXT_STRIP_TEMP_AVG" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  304. <script type="javascript" ev:event="onclick">
  305. <![CDATA[
  306. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  307. //replace 整体替换这个页面 modal 是打开一个新页面
  308. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  309. ]]>
  310. </script>
  311. </col>
  312. <col ref="FM_EXT_STRIP_TEMP" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  313. <script type="javascript" ev:event="onclick">
  314. <![CDATA[
  315. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  316. //replace 整体替换这个页面 modal 是打开一个新页面
  317. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  318. ]]>
  319. </script>
  320. </col>
  321. <col ref="FM_EXT_STRIP_THK_MAX" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  322. <script type="javascript" ev:event="onclick">
  323. <![CDATA[
  324. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  325. //replace 整体替换这个页面 modal 是打开一个新页面
  326. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  327. ]]>
  328. </script>
  329. </col>
  330. <col ref="FM_EXT_STRIP_THK_MIN" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  331. <script type="javascript" ev:event="onclick">
  332. <![CDATA[
  333. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  334. //replace 整体替换这个页面 modal 是打开一个新页面
  335. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  336. ]]>
  337. </script>
  338. </col>
  339. <col ref="FM_EXT_STRIP_THK_AVG" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  340. <script type="javascript" ev:event="onclick">
  341. <![CDATA[
  342. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  343. //replace 整体替换这个页面 modal 是打开一个新页面
  344. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  345. ]]>
  346. </script>
  347. </col>
  348. <col ref="FM_EXT_STRIP_THK" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  349. <script type="javascript" ev:event="onclick">
  350. <![CDATA[
  351. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  352. //replace 整体替换这个页面 modal 是打开一个新页面
  353. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  354. ]]>
  355. </script>
  356. </col>
  357. <col ref="FM_EXT_STRIP_WTH_MAX" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  358. <script type="javascript" ev:event="onclick">
  359. <![CDATA[
  360. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  361. //replace 整体替换这个页面 modal 是打开一个新页面
  362. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  363. ]]>
  364. </script>
  365. </col>
  366. <col ref="FM_EXT_STRIP_WTH_MIN" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  367. <script type="javascript" ev:event="onclick">
  368. <![CDATA[
  369. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  370. //replace 整体替换这个页面 modal 是打开一个新页面
  371. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  372. ]]>
  373. </script>
  374. </col>
  375. <col ref="FM_EXT_STRIP_WTH_AVG" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  376. <script type="javascript" ev:event="onclick">
  377. <![CDATA[
  378. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  379. //replace 整体替换这个页面 modal 是打开一个新页面
  380. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  381. ]]>
  382. </script>
  383. </col>
  384. <col ref="FM_EXT_STRIP_WTH" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  385. <script type="javascript" ev:event="onclick">
  386. <![CDATA[
  387. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  388. //replace 整体替换这个页面 modal 是打开一个新页面
  389. window.load("UIH020033.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  390. ]]>
  391. </script>
  392. </col>
  393. <col ref="DC_TEMP" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  394. <script type="javascript" ev:event="onclick">
  395. <![CDATA[
  396. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  397. //replace 整体替换这个页面 modal 是打开一个新页面
  398. window.load("UIH020034.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  399. ]]>
  400. </script>
  401. </col>
  402. <col ref="DC_TEMP_AVG" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  403. <script type="javascript" ev:event="onclick">
  404. <![CDATA[
  405. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  406. //replace 整体替换这个页面 modal 是打开一个新页面
  407. window.load("UIH020034.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  408. ]]>
  409. </script>
  410. </col>
  411. <col ref="COIL_OUTDIA" style="text-decoration:underline; color:#ff00ff; text-align:right; cursor:hand; ">
  412. <script type="javascript" ev:event="onclick">
  413. <![CDATA[
  414. model.setValue("/root/tempData",datagrid1.valueMatrix(datagrid1.row,datagrid1.colRef("COIL_NO")));
  415. //replace 整体替换这个页面 modal 是打开一个新页面
  416. window.load("UIH020034.xrw","modal","", "left:50; top:78; width:1000; height:650; sysmenu:visible; min:visible; max:true; resize:true; caption:visible;");
  417. ]]>
  418. </script>
  419. </col>
  420. </datagrid>
  421. <line id="line2" style="x1:0px; y1:30px; x2:979px; y2:30px; "/>
  422. <input id="input1" ref="/root/searchData/ROLL_MANA_NO" style="left:90px; top:5px; width:105px; height:20px; background-color:#ffff99; ">
  423. <hint>
  424. <![CDATA[请输入轧制计划号(如:A0086)]]>
  425. </hint>
  426. </input>
  427. <caption id="caption1" class="cell" style="left:200px; top:5px; width:75px; height:20px; font-weight:bold; border-color:#000000; ">轧钢时间</caption>
  428. <line id="line1" style="x1:380px; y1:15px; x2:385px; y2:15px; "/>
  429. <input id="input2" ref="/root/searchData/FROM_MILLTIME" inputtype="date" format="yyyy-mm-dd" style="left:277px; top:5px; width:103px; height:20px; background-color:#ffff99; "/>
  430. <input id="input3" ref="/root/searchData/TO_MILLTIME" inputtype="date" format="yyyy-mm-dd" style="left:385px; top:5px; width:103px; height:20px; background-color:#ffff99; "/>
  431. <caption id="caption3" class="cell" style="left:495px; top:5px; width:90px; height:20px; text-align:center; border-color:#000000; border-style:solid; ">钢卷号</caption>
  432. <input id="input4" ref="/root/searchData/OLD_SAMPL_NO" style="left:585px; top:5px; width:105px; height:20px; background-color:#ffff99; ">
  433. <hint>
  434. <![CDATA[请输入轧制计划号(如:A0086)]]>
  435. </hint>
  436. </input>
  437. </xhtml:body>
  438. </xhtml:html>