| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?xml-stylesheet type="text/css" href="../../css/body.css" ?>
- <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">
- <xhtml:head>
- <xhtml:title>
- <![CDATA[热轧作业>>钢卷库管理>>钢卷库堆放现况(UIH050040)]]>
- </xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <searchData>
- <COIL_ADDR/>
- </searchData>
- <formData>
- <form0>
- <coil121/>
- <coil122/>
- <coil111/>
- <coil112/>
- <coil221/>
- <coil222/>
- <coil211/>
- <coil212/>
- <coil321/>
- <coil322/>
- <coil311/>
- <coil312/>
- <coil421/>
- <coil422/>
- <coil411/>
- <coil412/>
- <coil521/>
- <coil522/>
- <coil511/>
- <coil512/>
- <coil621/>
- <coil622/>
- <coil611/>
- <coil612/>
- <coil721/>
- <coil722/>
- <coil711/>
- <coil712/>
- <coil821/>
- <coil822/>
- <coil811/>
- <coil812/>
- <coil131/>
- <coil132/>
- <coil231/>
- <coil232/>
- <coil331/>
- <coil332/>
- <coil431/>
- <coil432/>
- <coil531/>
- <coil532/>
- <coil631/>
- <coil632/>
- <coil731/>
- <coil732/>
- </form0>
- </formData>
- <gridData/>
- <resData/>
- <reqData/>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- var PARENT_WINDOW = window.opener;
- //从UIH050020获取钢卷要移送地址的库跨 ,区 号 以及列号值
- var tempYardAddr3 = PARENT_WINDOW.model.getValue("/root/childPagesYardArr");
- model.setValue("/root/searchData/COIL_ADDR",tempYardAddr3);
- model.refresh();
-
- model.removenode("/root/reqData");
- model.makeNode("/root/reqData");
-
- commSendReq("/root/searchData");
- commSubmit("UIH050040-service","find","glueAction.do");
-
- commAppendData("/root/gridData/COIL_List_VO","/root/resData/COIL_List_VO");
-
- //给节点符值
- var fromResNode = instance1.selectSingleNode("/root/resData/COIL_NO_List_VO").childNodes.length;
- for(var i = 1;i<= fromResNode;i++)
- {
- //获取每块钢卷的地址和编号
- coilAddrValue = model.getValue("/root/resData/COIL_NO_List_VO/COIL_NO_List_Row[" + i + "]/YARD_ADDR");
- coilValue = model.getValue("/root/resData/COIL_NO_List_VO/COIL_NO_List_Row[" + i + "]/COIL_NO");
- //绑定获得的地跟值
- model.setValue("/root/formData/form0/coil" +coilAddrValue.substr(6,3),coilValue);
- document.all("img0"+coilAddrValue.substr(6,3)).visible = true;
- }
- model.refresh();
- ]]>
- </script>
- </model>
- <script type="javascript">
- <![CDATA[
- //全局变量
- var PARENT_WINDOW = window.opener;
-
- //查询
- function find(){
- //清除form01节点下的所有节点值
- var node0 = instance1.selectSingleNode("/root/formData/form0");
- var nodeset0 = node0.childNodes;
- while (childNode = nodeset0.nextNode())
- {
- childNode.value = "";
- }
- //修改所有钢卷堆放位置图片显示为false
- var all = document.all;
- for(var i=0;i<all.length;i++)
- {
- var id = all.item(i).attribute("id");
- if(id == null) id = "null";
- if(id.substr(0,3) == "img" && id.substr(5,2) != "")
- {
- document.all(id).visible = false;
- }
- }
-
- //清空发送接点
- model.removenode("/root/reqData");
- model.makeNode("/root/reqData");
-
- var COIL_ADDR = model.getValue("/root/searchData/COIL_ADDR");
- //判断存放位置是否为空,如果为空的话给予提示
- if(COIL_ADDR == ""){
- alert(" 存放位置选择不能为空,请输入需要的存放位置! ");
- return;
- }
-
- model1.duplicate("/root/reqData","/root/searchData/COIL_ADDR");
-
- commSubmit("UIH050040-service","find","glueAction.do");
-
- commAppendData("/root/datagrid1/COIL_List_VO","/root/resData/COIL_List_VO");
-
- //给节点符值
- var fromResNode = instance1.selectSingleNode("/root/resData/COIL_NO_List_VO").childNodes.length;
-
- for(var i = 1;i<= fromResNode;i++)
- {
- //获取每块钢卷的地址和编号
- coilAddrValue = model.getValue("/root/resData/COIL_NO_List_VO/COIL_NO_List_Row[" + i + "]/YARD_ADDR");
- coilValue = model.getValue("/root/resData/COIL_NO_List_VO/COIL_NO_List_Row[" + i + "]/COIL_NO");
- //绑定获得的地跟值
- model.setValue("/root/formData/form0/coil"+coilAddrValue.substr(6,3),coilValue);
- document.all("img0" + coilAddrValue.substr(6,3)).visible = true;
- }
- model.refresh();
- }
-
- /*
- *选定要移动的钢卷,这里新增三层的判断情况
- */
- function selectCoil()
- {
- //获取当前焦点的控件 ,判断是否是input控件
- var data = event.focus;
- if(data.substr(0,5) == "input")
- {
- var nodePath = document.all(data).attribute("ref");
- var nodeValue = model.getValue(nodePath);
- var tag = nodePath.substr((nodePath.length -2),1);
-
- // alert("nodePath : "+nodePath);
- // alert("nodeValue : "+nodeValue);
- // alert("tag : "+tag);
- // alert("nodePathaaaaaa : "+nodePath.length);
- // alert("1111111111111 : "+Number(nodePath.substr((nodePath.length -3),1))+1);
-
- //判断获得焦点的地址是否已经放置钢卷
- if(nodeValue != "")
- {
- alert("该位置已经放置钢卷!","错误",5);
- return;
- }
- //放置钢卷位置是第一层还是第二层,如果是第二层则需判断第一层是否有钢卷,如果没有则不能放置,不能出现飞到空中的钢卷
- //这里还需要加上对第三层的判断,并且进行相应的处理
- if(tag == "3"){
- //如果是三层的情况,判断下面两个位置是否存在钢卷。并且还需要判断相应的第一层是否存在钢卷
- var leftStoreXpath2 = "";
- var rtStoreXpath2 = "";
- var leftStoreXpath1 = "";
- var mdStoreXpath1 = "";
- var rtStoreXpath1 = "";
-
- //如果是三层的第一个位置,则二层的21、22.一层的11、12和下一个区域的11必须存在值
- if(nodePath.substr((nodePath.length -1),1) == 1){
- lftFstStoreXpath2 = nodePath.substr(0,(nodePath.length -2)) + "21";
- rtFstStoreXpath2 = nodePath.substr(0,(nodePath.length -2)) + "22";
- leftStoreXpath1 = nodePath.substr(0,(nodePath.length -2)) + "11";
- mdStoreXpath1 = nodePath.substr(0,(nodePath.length -2)) + "12";
- rtStoreXpath1 = nodePath.substr(0,(nodePath.length -3))+(Number(nodePath.substr((nodePath.length -3),1))+1).toString()+"11";
- }else if(nodePath.substr((nodePath.length -1),1) == 2){
- //如果是第三层的第二个位置,则二层的22、和下个区域的21以及下个区域的11、22必须存在值
- lftFstStoreXpath2 = nodePath.substr(0,(nodePath.length -2)) + "22";
- rtFstStoreXpath2 = nodePath.substr(0,(nodePath.length -3)) +(Number(nodePath.substr((nodePath.length -3),1))+1).toString()+"21";
- leftStoreXpath1 = nodePath.substr(0,(nodePath.length -2)) + "12";
- mdStoreXpath1 = nodePath.substr(0,(nodePath.length -3)) + (Number(nodePath.substr((nodePath.length -3),1))+1).toString()+"11";
- rtStoreXpath1 = nodePath.substr(0,(nodePath.length -3)) + (Number(nodePath.substr((nodePath.length -3),1))+1).toString()+"12";
- }
-
- // alert("lftFstStoreXpath2 : "+lftFstStoreXpath2);
- // alert("rtFstStoreXpath2 : "+rtFstStoreXpath2);
- // alert("leftStoreXpath1 : "+leftStoreXpath1);
- // alert("mdStoreXpath1 : "+mdStoreXpath1);
- // alert("rtStoreXpath1 : "+rtStoreXpath1);
-
-
-
- if(model1.getValue(lftFstStoreXpath2) =="" || model1.getValue(rtFstStoreXpath2) =="" || model1.getValue(leftStoreXpath1) =="" || model1.getValue(mdStoreXpath1) =="" || model1.getValue(rtStoreXpath1) ==""){
- alert(" 钢卷非法移动!! ");
- return;
- }
-
- }
- //两层的情况,除了判断下面有无钢卷。还要判断上面是否存在钢卷
- if(tag == "2"){
-
- var lftFstXpath1 = "";
- var rtFstXpath1 = "";
- var lftFstXpath3 = "";
- var rtFstXpath3 = "";
-
- //如果放置钢卷的位置是一个跺位的第2层的第一个位置,则他下面两个钢卷位置是同一跺位
- //他上面的两个卷是上个区域的32和自己的31
- if(nodePath.substr((nodePath.length -1),1) == 1){
- lftFstXpath1 = nodePath.substr(0,(nodePath.length -2)) + "11";
- rtFstXpath1 = nodePath.substr(0,(nodePath.length -2)) + "12";
-
- lftFstXpath3 = nodePath.substr(0,(nodePath.length -3)) + (Number(nodePath.substr((nodePath.length -3),1))-1).toString()+"32";
- rtFstXpath3 = nodePath.substr(0,(nodePath.length -2)) +"31";
- }
- /*如果放置光卷的位置是一个跺位的第2层的第二个位置,则其下面第一层两个钢卷分别是下一个跺位一层的第1个位置,
- 和当前跺位一层的第2个位置*/
- else if(nodePath.substr((nodePath.length -1),1) == 2){
- lftFstXpath1 = nodePath.substr(0,(nodePath.length -2)) + "12";
- rtFstXpath1 = nodePath.substr(0,(nodePath.length -3)) + (nodePath.substr((nodePath.length -3),1)-(-1)) + "11";
-
- lftFstXpath3 = nodePath.substr(0,(nodePath.length -2))+"31";
- rtFstXpath3 = nodePath.substr(0,(nodePath.length -2)) +"32";
- }
-
- if(model1.getValue(lftFstXpath1) =="" || model1.getValue(rtFstXpath1) == ""){
- alert(" 放置位置的下面不存在钢卷,请确认后重新选择!!! ");
- return;
- }
- if(model1.getValue(lftFstXpath3) != "" || model1.getValue(rtFstXpath3) != ""){
- alert(" 放置位置上面存在钢卷,请确认后重新选择!");
- return;
- }
- }
-
- //对第一层的钢卷进行处理,他的上面是不能存在钢卷的
- if(tag == "1"){
- var lftXpath2 = "";
- var rtXpath2 = "";
- var lftXpath3 = "";
- var rtXpath3 = "";
- var mdXpath3 = "";
-
- if(nodePath.substr((nodePath.length -1),1) == 1){
- //如果是区域一层一个,则前一个区域的22,31,32以及本区域的21,31不能存在钢卷
- lftXpath2 = nodePath.substr(0,(nodePath.length -3)) + (Number(nodePath.substr((nodePath.length -3),1))-1).toString()+"21";
- rtXpath2 = nodePath.substr(0,(nodePath.length -2)) + "21";
-
- lftXpath3 = nodePath.substr(0,(nodePath.length -3)) + (Number(nodePath.substr((nodePath.length -3),1))-1).toString()+"31";
- rtXpath3 = nodePath.substr(0,(nodePath.length -2)) +"31";
- mdXpath3 = nodePath.substr(0,(nodePath.length -3)) + (Number(nodePath.substr((nodePath.length -3),1))-1).toString()+"32";
- }
-
- if(nodePath.substr((nodePath.length -1),1) == 2){
- lftXpath2 = nodePath.substr(0,(nodePath.length -2)) + "21";
- rtXpath2 = nodePath.substr(0,(nodePath.length -2)) + "22";
-
- lftXpath3 = nodePath.substr(0,(nodePath.length -3)) + (Number(nodePath.substr((nodePath.length -3),1))-1).toString()+"31";
- rtXpath3 = nodePath.substr(0,(nodePath.length -2)) +"32";
- mdXpath3 = nodePath.substr(0,(nodePath.length -2)) +"31";
- }
-
- if(model1.getValue(lftXpath2) != "" || model1.getValue(rtXpath2) != "" || model1.getValue(lftXpath3) != "" || model1.getValue(rtXpath3) != "" || model1.getValue(mdXpath3) != ""){
- alert(" 放置位置上面存在钢卷,请确认后重新选择!!! ");
- return;
- }
- }
-
-
- //这里需要判断选中的位置的图片是否是显示出来的,如果是显示出来的说明这里位置实际是存在的可以放入钢卷
- var fromImgID = "img0"+nodePath.substr(nodePath.length-3,3);
- //如果存在实际垛位的情况下,可以选择并且取到相应的位置信息
- if(document.all(fromImgID).visible == true){
- //这里是返回给行车命令制订的具体位置信息
- PARENT_WINDOW.model1.setValue("/root/desCoilAddr",model1.getValue("/root/searchData/COIL_ADDR") + "0" + nodePath.substr((nodePath.length - 3),3));
- //选中合适的位置后退出本界面
- window.close();
- }else{
- alert(" 选择的位置实际不存在,请确认后重新选择! ");
- return;
- }
- }
- }
-
- /*
- *选定要移动的钢卷,这里是两层操作的情况
- */
- function selectCoil1()
- {
- //获取当前焦点的控件 ,判断是否是input控件
- var data = event.focus;
- if(data.substr(0,5) == "input")
- {
- var nodePath = document.all(data).attribute("ref");
- var nodeValue = model.getValue(nodePath);
- var tag = nodePath.substr((nodePath.length -2),1);
-
- //判断获得焦点的地址是否已经放置钢卷
- if(nodeValue != "")
- {
- alert("该位置已经放置钢卷!","错误",5);
- return;
- }
- //放置钢卷位置是第一层还是第二层,如果是第二层则需判断第一层是否有钢卷,如果没有则不能放置,不能出现飞到空中的钢卷
- if(tag == "2")
- {
- var lftFstStoreXpath = "";
- var rtFstStoreXpath = "";
- //如果放置钢卷的位置是一个跺位的第2层的第一个位置,则他下面两个钢卷位置是同一跺位
- if(nodePath.substr((nodePath.length -1),1) == 1){
- lftFstStoreXpath = nodePath.substr(0,(nodePath.length -2)) + "11";
- rtFstStoreXpath = nodePath.substr(0,(nodePath.length -2)) + "12";
- }
- /*如果放置光卷的位置是一个跺位的第2层的第二个位置,则其下面第一层两个钢卷分别是下一个跺位一层的第1个位置,
- 和当前跺位一层的第2个位置*/
- else if(nodePath.substr((nodePath.length -1),1) == 2){
- lftFstStoreXpath = nodePath.substr(0,(nodePath.length -2)) + "12";
- rtFstStoreXpath = nodePath.substr(0,(nodePath.length -3)) + (nodePath.substr((nodePath.length -3),1)-(-1)) + "11";
- }
-
- if(model1.getValue(lftFstStoreXpath) ==""|| model1.getValue(rtFstStoreXpath) == ""){
- alert("非法钢卷放置位置");
- return;
- }
- }
-
- //这里需要判断选中的位置的图片是否是显示出来的,如果是显示出来的说明这里位置实际是存在的可以放入钢卷
- var fromImgID = "img0"+nodePath.substr(nodePath.length-3,3);
- //如果存在实际垛位的情况下,可以选择并且取到相应的位置信息
- if(document.all(fromImgID).visible == true){
- //这里是返回给行车命令制订的具体位置信息
- PARENT_WINDOW.model1.setValue("/root/desCoilAddr",model1.getValue("/root/searchData/COIL_ADDR") + "0" + nodePath.substr((nodePath.length - 3),3));
- //选中合适的位置后退出本界面
- window.close();
- }else{
- alert(" 选择的位置实际不存在,请确认后重新选择! ");
- return;
- }
- }
- }
- ]]>
- </script>
- <script type="javascript" src="../../js/boaMsg.js"/>
- <script type="javascript" src="../../js/boaCommon.js"/>
- </xhtml:head>
- <xhtml:body guideline="2,-1;">
- <caption id="caption6" class="cell" style="left:0px; top:5px; width:130px; height:20px; font-weight:bold; border-color:#000000; ">钢卷库堆放现况</caption>
- <input id="input13" ref="/root/searchData/COIL_ADDR" style="left:420px; top:15px; width:145px; height:25px; "/>
- <datagrid id="datagrid1" nodeset="/root/gridData/COIL_List_VO/COIL_List_Row" caption="存放位置^钢卷号^钢种^外径^内径^订单规格^实际规格^实重量^交货期^合同号^订单号^运输指示号^运输方式^取样标志^综合判定等级^余材区分^平整有无|存放位置^钢卷号^钢种^外径^内径^订单规格^实际规格^实重量^交货期^合同号^订单号^运输指示号^运输方式^取样标志^综合判定等级^余材区分^平整有无" colsep="^" colwidth="88, 90, 90, 50, 50, 60, 65, 60, 90, 90, 50, 81, 40, 35, 52, 50, 37" defaultrows="20" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:270px; width:980px; height:330px; ">
- <col editable="false" ref="FROM_ADDR" type="input" style="background-color:#ffffff; "/>
- <col editable="false" ref="OLD_SAMPL_NO" type="input" style="background-color:#ffffff; "/>
- <col editable="false" ref="SPEC_STL_GRD" type="input" style="background-color:#ffffff; "/>
- <col editable="false" ref="OUT_DIA" type="input" style="text-align:right; background-color:#ffffff; "/>
- <col editable="false" ref="COIL_INDIA" type="input" style="text-align:right; background-color:#ffffff; "/>
- <col editable="false" ref="IT_IW" type="input" style="text-align:right; background-color:#ffffff; "/>
- <col editable="false" ref="T_W" type="input" style="text-align:right; background-color:#ffffff; "/>
- <col editable="false" ref="ACT_WGT" type="input" format="#,###" style="text-align:right; background-color:#ffffff; "/>
- <col editable="false" ref="DEVLMT_DTIME" type="input" style="background-color:#ffffff; "/>
- <col editable="false" ref="ORD_NO1" type="input" style="background-color:#ffffff; "/>
- <col editable="false" ref="ORD_SEQ" type="input" style="background-color:#ffffff; "/>
- <col editable="false" ref="DLIV_DIRNO" type="input" style="background-color:#ffffff; "/>
- <col editable="false" ref="DLIV_TP" type="input" style="background-color:#ffffff; "/>
- <col editable="false" ref="SAMPL_PICK_YN" type="input" style="background-color:#ffffff; "/>
- <col editable="false" ref="TOT_DEC_GRD" type="input" style="background-color:#ffffff; "/>
- <col editable="false" ref="ORD_FL" type="input" style="background-color:#ffffff; "/>
- <col editable="false" ref="SPM_YN" type="input" style="background-color:#ffffff; "/>
- </datagrid>
- <group id="group1" style="left:0px; top:50px; width:980px; height:195px; ">
- <img id="img49" src="../../images/UIH050011.gif" style="left:1410px; top:16px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0732" visibility="hidden" src="../../images/UIH050010.gif" style="left:1410px; top:13px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img58" src="../../images/UIH050011.gif" style="left:1210px; top:16px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img59" src="../../images/UIH050011.gif" style="left:1105px; top:15px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img57" src="../../images/UIH050011.gif" style="left:1005px; top:15px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img56" src="../../images/UIH050011.gif" style="left:905px; top:15px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img45" src="../../images/UIH050011.gif" style="left:705px; top:13px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img46" src="../../images/UIH050011.gif" style="left:805px; top:13px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0432" visibility="hidden" src="../../images/UIH050010.gif" style="left:805px; top:10px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0431" visibility="hidden" src="../../images/UIH050010.gif" style="left:705px; top:10px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img44" src="../../images/UIH050011.gif" style="left:605px; top:13px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img43" src="../../images/UIH050011.gif" style="left:505px; top:13px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img42" src="../../images/UIH050011.gif" style="left:405px; top:13px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img40" src="../../images/UIH050011.gif" style="left:305px; top:13px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img38" src="../../images/UIH050011.gif" style="left:205px; top:13px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img36" src="../../images/UIH050011.gif" style="left:105px; top:13px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0131" visibility="hidden" src="../../images/UIH050010.gif" style="left:105px; top:10px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img32" src="../../images/UIH050011.gif" style="left:1510px; top:111px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img31" src="../../images/UIH050011.gif" style="left:1410px; top:113px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img30" src="../../images/UIH050011.gif" style="left:1310px; top:113px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img33" src="../../images/UIH050011.gif" style="left:1260px; top:64px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img28" src="../../images/UIH050011.gif" style="left:1105px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0612" visibility="hidden" src="../../images/UIH050010.gif" style="left:1105px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img12" src="../../images/UIH050011.gif" style="left:1155px; top:63px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img11" src="../../images/UIH050011.gif" style="left:1055px; top:63px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img27" src="../../images/UIH050011.gif" style="left:1005px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0611" visibility="hidden" src="../../images/UIH050010.gif" style="left:1005px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img26" src="../../images/UIH050011.gif" style="left:905px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0512" visibility="hidden" src="../../images/UIH050010.gif" style="left:905px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img10" src="../../images/UIH050011.gif" style="left:955px; top:63px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img9" src="../../images/UIH050011.gif" style="left:855px; top:63px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0521" visibility="hidden" src="../../images/UIH050010.gif" style="left:855px; top:60px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img8" src="../../images/UIH050011.gif" style="left:755px; top:63px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0422" visibility="hidden" src="../../images/UIH050010.gif" style="left:755px; top:60px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img24" src="../../images/UIH050011.gif" style="left:705px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img7" src="../../images/UIH050011.gif" style="left:655px; top:63px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0421" visibility="hidden" src="../../images/UIH050010.gif" style="left:655px; top:60px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img23" src="../../images/UIH050011.gif" style="left:605px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img6" src="../../images/UIH050011.gif" style="left:555px; top:63px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img5" src="../../images/UIH050011.gif" style="left:455px; top:63px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img22" src="../../images/UIH050011.gif" style="left:505px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img21" src="../../images/UIH050011.gif" style="left:405px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img4" src="../../images/UIH050011.gif" style="left:355px; top:63px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img3" src="../../images/UIH050011.gif" style="left:255px; top:63px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img2" src="../../images/UIH050011.gif" style="left:155px; top:63px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img1" src="../../images/UIH050011.gif" style="left:55px; top:63px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img17" src="../../images/UIH050011.gif" style="left:5px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img18" src="../../images/UIH050011.gif" style="left:105px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img19" src="../../images/UIH050011.gif" style="left:205px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img20" src="../../images/UIH050011.gif" style="left:305px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0121" visibility="hidden" src="../../images/UIH050010.gif" style="left:55px; top:60px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0111" visibility="hidden" src="../../images/UIH050010.gif" style="left:5px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0221" visibility="hidden" src="../../images/UIH050010.gif" style="left:255px; top:60px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0122" visibility="hidden" src="../../images/UIH050010.gif" style="left:155px; top:60px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img25" src="../../images/UIH050011.gif" style="left:805px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0321" visibility="hidden" src="../../images/UIH050010.gif" style="left:455px; top:60px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0211" visibility="hidden" src="../../images/UIH050010.gif" style="left:205px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0222" visibility="hidden" src="../../images/UIH050010.gif" style="left:355px; top:60px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0112" visibility="hidden" src="../../images/UIH050010.gif" style="left:105px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0311" visibility="hidden" src="../../images/UIH050010.gif" style="left:405px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0322" visibility="hidden" src="../../images/UIH050010.gif" style="left:555px; top:60px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0212" visibility="hidden" src="../../images/UIH050010.gif" style="left:305px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <input id="input30" ref="/root/formData/form0/coil212" editable="false" style="left:310px; top:125px; width:85px; height:20px; "/>
- <img id="img0411" visibility="hidden" src="../../images/UIH050010.gif" style="left:600px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0312" visibility="hidden" src="../../images/UIH050010.gif" style="left:505px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <input id="input31" ref="/root/formData/form0/coil311" editable="false" style="left:410px; top:125px; width:85px; height:20px; "/>
- <input id="input20" ref="/root/formData/form0/coil512" editable="false" style="left:910px; top:125px; width:85px; height:20px; "/>
- <img id="img0621" visibility="hidden" src="../../images/UIH050010.gif" style="left:1055px; top:60px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0511" visibility="hidden" src="../../images/UIH050010.gif" style="left:805px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0522" visibility="hidden" src="../../images/UIH050010.gif" style="left:955px; top:60px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0412" visibility="hidden" src="../../images/UIH050010.gif" style="left:705px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img29" src="../../images/UIH050011.gif" style="left:1205px; top:112px; width:85px; height:45px; background-stretch:stretch; "/>
- <caption id="caption20" style="left:495px; top:154px; width:15px; height:20px; font-weight:bold; ">3</caption>
- <input id="input32" ref="/root/formData/form0/coil312" editable="false" style="left:510px; top:125px; width:85px; height:20px; "/>
- <input id="input21" ref="/root/formData/form0/coil611" editable="false" style="left:1010px; top:125px; width:85px; height:20px; "/>
- <input id="input10" ref="/root/formData/form0/coil522" editable="false" style="left:960px; top:74px; width:85px; height:20px; "/>
- <img id="img0622" visibility="hidden" src="../../images/UIH050010.gif" style="left:1155px; top:60px; width:95px; height:45px; background-stretch:stretch; "/>
- <caption id="caption21" style="left:695px; top:154px; width:15px; height:20px; font-weight:bold; ">4</caption>
- <input id="input22" ref="/root/formData/form0/coil612" editable="false" style="left:1110px; top:125px; width:85px; height:20px; "/>
- <input id="input11" ref="/root/formData/form0/coil621" editable="false" style="left:1060px; top:74px; width:85px; height:20px; "/>
- <img id="img0711" visibility="hidden" src="../../images/UIH050010.gif" style="left:1205px; top:110px; width:95px; height:45px; background-stretch:stretch; "/>
- <input id="input23" ref="/root/formData/form0/coil711" editable="false" style="left:1210px; top:125px; width:85px; height:20px; "/>
- <input id="input12" ref="/root/formData/form0/coil622" editable="false" style="left:1160px; top:74px; width:85px; height:20px; "/>
- <caption id="caption14" style="left:895px; top:154px; width:15px; height:20px; font-weight:bold; ">5</caption>
- <caption id="caption15" style="left:1095px; top:154px; width:15px; height:20px; font-weight:bold; ">6</caption>
- <input id="input27" ref="/root/formData/form0/coil111" editable="false" style="left:10px; top:125px; width:85px; height:20px; "/>
- <input id="input1" ref="/root/formData/form0/coil121" editable="false" style="left:60px; top:74px; width:85px; height:20px; "/>
- <caption id="caption16" style="left:1295px; top:154px; width:15px; height:20px; font-weight:bold; ">7</caption>
- <input id="input28" ref="/root/formData/form0/coil112" editable="false" style="left:110px; top:125px; width:85px; height:20px; "/>
- <input id="input17" ref="/root/formData/form0/coil411" editable="false" style="left:605px; top:125px; width:85px; height:20px; "/>
- <input id="input2" ref="/root/formData/form0/coil122" editable="false" style="left:160px; top:74px; width:85px; height:20px; "/>
- <input id="input29" ref="/root/formData/form0/coil211" editable="false" style="left:210px; top:125px; width:85px; height:20px; "/>
- <input id="input18" ref="/root/formData/form0/coil412" editable="false" style="left:710px; top:125px; width:85px; height:20px; "/>
- <input id="input3" ref="/root/formData/form0/coil221" editable="false" style="left:260px; top:74px; width:85px; height:20px; "/>
- <caption id="caption18" style="left:95px; top:154px; width:15px; height:20px; font-weight:bold; ">1</caption>
- <input id="input19" ref="/root/formData/form0/coil511" editable="false" style="left:810px; top:125px; width:85px; height:20px; "/>
- <input id="input4" ref="/root/formData/form0/coil222" editable="false" style="left:360px; top:74px; width:85px; height:20px; "/>
- <caption id="caption19" style="left:295px; top:154px; width:15px; height:20px; font-weight:bold; ">2</caption>
- <input id="input5" ref="/root/formData/form0/coil321" editable="false" style="left:460px; top:74px; width:85px; height:20px; "/>
- <input id="input6" ref="/root/formData/form0/coil322" editable="false" style="left:560px; top:74px; width:85px; height:20px; "/>
- <input id="input7" ref="/root/formData/form0/coil421" editable="false" style="left:660px; top:74px; width:85px; height:20px; "/>
- <input id="input8" ref="/root/formData/form0/coil422" editable="false" style="left:760px; top:74px; width:85px; height:20px; "/>
- <input id="input9" ref="/root/formData/form0/coil521" editable="false" style="left:860px; top:74px; width:85px; height:20px; "/>
- <img id="img14" src="../../images/UIH050011.gif" style="left:1360px; top:64px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img15" src="../../images/UIH050011.gif" style="left:1460px; top:64px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0721" visibility="hidden" src="../../images/UIH050010.gif" style="left:1260px; top:61px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0821" visibility="hidden" src="../../images/UIH050010.gif" style="left:1460px; top:61px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0722" visibility="hidden" src="../../images/UIH050010.gif" style="left:1360px; top:61px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0811" visibility="hidden" src="../../images/UIH050010.gif" style="left:1410px; top:111px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0712" visibility="hidden" src="../../images/UIH050010.gif" style="left:1310px; top:111px; width:95px; height:45px; background-stretch:stretch; "/>
- <input id="input24" ref="/root/formData/form0/coil712" editable="false" style="left:1315px; top:126px; width:85px; height:20px; "/>
- <input id="input15" ref="/root/formData/form0/coil721" editable="false" style="left:1265px; top:75px; width:85px; height:20px; "/>
- <img id="img0812" visibility="hidden" src="../../images/UIH050010.gif" style="left:1510px; top:111px; width:95px; height:45px; background-stretch:stretch; "/>
- <input id="input25" ref="/root/formData/form0/coil811" editable="false" style="left:1415px; top:126px; width:85px; height:20px; "/>
- <input id="input16" ref="/root/formData/form0/coil722" editable="false" style="left:1365px; top:75px; width:85px; height:20px; "/>
- <input id="input26" ref="/root/formData/form0/coil812" editable="false" style="left:1515px; top:126px; width:85px; height:20px; "/>
- <input id="input33" ref="/root/formData/form0/coil821" editable="false" style="left:1465px; top:75px; width:85px; height:20px; "/>
- <caption id="caption17" style="left:1500px; top:155px; width:15px; height:20px; font-weight:bold; ">8</caption>
- <input id="input14" ref="/root/formData/form0/coil431" editable="false" style="left:710px; top:24px; width:85px; height:20px; "/>
- <img id="img0132" visibility="hidden" src="../../images/UIH050010.gif" style="left:205px; top:10px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0231" visibility="hidden" src="../../images/UIH050010.gif" style="left:305px; top:10px; width:95px; height:45px; background-stretch:stretch; "/>
- <input id="input34" ref="/root/formData/form0/coil432" editable="false" style="left:810px; top:24px; width:85px; height:20px; "/>
- <img id="img0232" visibility="hidden" src="../../images/UIH050010.gif" style="left:405px; top:10px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0331" visibility="hidden" src="../../images/UIH050010.gif" style="left:505px; top:10px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0332" visibility="hidden" src="../../images/UIH050010.gif" style="left:605px; top:10px; width:95px; height:45px; background-stretch:stretch; "/>
- <input id="input35" ref="/root/formData/form0/coil131" editable="false" style="left:110px; top:24px; width:85px; height:20px; "/>
- <input id="input36" ref="/root/formData/form0/coil132" editable="false" style="left:210px; top:24px; width:85px; height:20px; "/>
- <input id="input37" ref="/root/formData/form0/coil231" editable="false" style="left:310px; top:24px; width:85px; height:20px; "/>
- <input id="input38" ref="/root/formData/form0/coil232" editable="false" style="left:410px; top:24px; width:85px; height:20px; "/>
- <input id="input39" ref="/root/formData/form0/coil331" editable="false" style="left:510px; top:24px; width:85px; height:20px; "/>
- <input id="input40" ref="/root/formData/form0/coil332" editable="false" style="left:610px; top:24px; width:85px; height:20px; "/>
- <img id="img48" src="../../images/UIH050011.gif" style="left:1310px; top:16px; width:85px; height:45px; background-stretch:stretch; "/>
- <img id="img0531" visibility="hidden" src="../../images/UIH050010.gif" style="left:905px; top:12px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0532" visibility="hidden" src="../../images/UIH050010.gif" style="left:1005px; top:12px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0632" visibility="hidden" src="../../images/UIH050010.gif" style="left:1210px; top:13px; width:95px; height:45px; background-stretch:stretch; "/>
- <img id="img0631" visibility="hidden" src="../../images/UIH050010.gif" style="left:1105px; top:12px; width:95px; height:45px; background-stretch:stretch; "/>
- <input id="input41" ref="/root/formData/form0/coil531" editable="false" style="left:910px; top:26px; width:85px; height:20px; "/>
- <input id="input42" ref="/root/formData/form0/coil732" editable="false" style="left:1415px; top:27px; width:85px; height:20px; "/>
- <img id="img0731" visibility="hidden" src="../../images/UIH050010.gif" style="left:1310px; top:13px; width:95px; height:45px; background-stretch:stretch; "/>
- <input id="input43" ref="/root/formData/form0/coil532" editable="false" style="left:1010px; top:26px; width:85px; height:20px; "/>
- <input id="input44" ref="/root/formData/form0/coil631" editable="false" style="left:1110px; top:26px; width:85px; height:20px; "/>
- <input id="input45" ref="/root/formData/form0/coil632" editable="false" style="left:1215px; top:27px; width:85px; height:20px; "/>
- <input id="input46" ref="/root/formData/form0/coil731" editable="false" style="left:1315px; top:27px; width:85px; height:20px; "/>
- </group>
- <caption id="caption4" class="cell" style="left:835px; top:245px; width:145px; height:25px; font-weight:bold; ">◎ 综合判定合格</caption>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- //全局变量
- var PARENT_WINDOW = window.opener;
- //这里判断如果是行车命令指定的界面就可以操作,如果不是就不让选择
- var temp50200 = PARENT_WINDOW.model.getValue("/root/childPages50200");
- if(temp50200 == "FALSE"){
- //这里不操作
- }else{
- /*
- *选中钢卷
- */
- selectCoil();
- }
- ]]>
- </script>
- <caption id="caption2" class="cell" style="left:0px; top:250px; width:90px; height:20px; border-color:#000000; ">存放位置</caption>
- </xhtml:body>
- </xhtml:html>
|