123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet type="text/css" href="C:/CMCProject/application/webapps/com/commonweb/css/common.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>Untitle</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <item>
- <grid3>
- <depodd/>
- <depoamt/>
- <direccost/>
- <crcccindireccost/>
- <indireccost/>
- </grid3>
- </item>
- </root>
- </instance>
- </model>
- </xhtml:head>
- <xhtml:body>
- <group id="grp_tle" style="left:0px; top:0px; width:1195px; height:14px; ">
- <caption id="caption120" class="tit_1" style="left:0px; top:0px; width:158px; height:14px; ">입금정보</caption>
- </group>
- <group id="group3" style="left:0px; top:15px; width:1194px; height:37px; vertical-align:top; "/>
- <caption id="caption1" class="tit_2" style="left:10px; top:55px; width:140px; height:13px; ">등록된 병원목록</caption>
- <datagrid id="datagrid1" caption="과제번호^품목명^해당병원^접수일^의뢰자^시험책임자^연구기간^연구기간^총연구비(직+간접비)" colsep="^" colwidth="100, 100, 100, 100, 120, 100, 100, 100, 130" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:0px; top:80px; width:1190px; height:140px; ">
- <col/>
- <col/>
- <col/>
- <col type="inputdate"/>
- <col/>
- <col/>
- <col type="inputdate"/>
- <col type="inputdate"/>
- <col/>
- </datagrid>
- <line id="line11" class="line_1" style="x1:0px; y1:78px; x2:1190px; y2:77px; "/>
- <line id="line4" class="line_3" style="x1:0px; y1:222px; x2:1190px; y2:222px; "/>
- <caption id="caption2" class="tit_2" style="left:10px; top:245px; width:170px; height:13px; ">병원 IRB심사비 입금정보</caption>
- <datagrid id="datagrid2" caption="입금일^금액^임금확인(병원)^계산서발행^계산서발송처" colsep="^" colwidth="100, 100, 100, 100, 359" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:0px; top:300px; width:805px; height:105px; ">
- <col type="inputdate"/>
- <col/>
- <col type="inputdate"/>
- <col type="inputdate"/>
- <col/>
- </datagrid>
- <line id="line1" class="line_1" style="x1:0px; y1:298px; x2:805px; y2:297px; "/>
- <caption id="caption3" class="tit_2" style="left:10px; top:440px; width:170px; height:13px; ">연구비 입금정보</caption>
- <line id="line2" class="line_1" style="x1:0px; y1:488px; x2:1190px; y2:487px; "/>
- <datagrid id="datagrid3" nodeset="/root/item/grid3" caption="입금일^입금액^직접비^센타간접비^병원간접비^담당자확인^계산서발행^계산서발송처" colsep="^" colwidth="100, 100, 100, 100, 100, 70, 70, 498" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:0px; top:490px; width:1190px; height:160px; ">
- <col ref="depodd" type="inputdate"/>
- <col ref="depoamt" type="input" format="#,###"/>
- <col ref="direccost" type="output" visibility="visible" format="#,###" roundmode="round"/>
- <col ref="crcccindireccost" type="output" format="#,###" roundmode="round"/>
- <col ref="indireccost" type="output" format="#,###" roundmode="round"/>
- <col type="combo">
- <choices>
- <item>
- <label>확인</label>
- <value>1</value>
- </item>
- <item>
- <label>미확인</label>
- <value>2</value>
- </item>
- </choices>
- </col>
- <col type="combo">
- <choices>
- <item>
- <label>발행</label>
- <value>1</value>
- </item>
- <item>
- <label>미발행</label>
- <value>2</value>
- </item>
- </choices>
- </col>
- <col type="input"/>
- <script ev:event="onendedit" type="javascript">
- <![CDATA[
-
- var dc; //계산된 직접비
- var cc; //계산된 센타간접비
- var ic; //계산된 병원간접비
-
- var depoamt = model.getValue("/root/item/grid3["+datagrid3.row+"]/depoamt"); //입금액
- var direccost = model.getValue("/root/item/grid3["+datagrid3.row+"]/direccost"); //직접비
- var crcccindireccost = model.getValue("/root/item/grid3["+datagrid3.row+"]/crcccindireccost"); //센타간접비
- var indireccost = model.getValue("/root/item/grid3["+datagrid3.row+"]/indireccost"); //병원간접비
-
- parseFloat(depoamt);
-
- cc = depoamt * 10.0 / 100 ; //센타간접비 10% 계산
- ic = depoamt * 5.0 / 100 ; //병원간접비 5% 계산
- dc = depoamt - (cc+ic); //직접비 85% 계산
-
- model.setValue("/root/item/grid3["+datagrid3.row+"]/direccost",dc);
- model.setValue("/root/item/grid3["+datagrid3.row+"]/crcccindireccost",cc);
- model.setValue("/root/item/grid3["+datagrid3.row+"]/indireccost",ic);
-
- ]]>
- </script>
- </datagrid>
- <line id="line3" class="line_3" style="x1:0px; y1:407px; x2:805px; y2:407px; "/>
- <line id="line5" class="line_3" style="x1:0px; y1:652px; x2:1190px; y2:652px; "/>
- <datagrid id="datagrid4" nodeset="/root/worklist/workitem" caption="접수^접수^접수^접수^초기심의^계약^연구수행^연구수행^연구수행^연구수행^연구수행^종결^종결^종결|과제의뢰^연구자확인^CRCC접수^서류접수^심의상태^계약일^원내이상반응^원외이상반응^변경계획서^중간보고서^지속심의^종료보고서^결과보고서^연구비정산보고서" colsep="^" colwidth="67, 66, 72, 62, 181, 102, 97, 80, 66, 66, 67, 73, 71, 102" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:702px; width:1195px; height:71px; ">
- <col ref="task1"/>
- <col ref="task2"/>
- <col ref="task3"/>
- <col ref="task4"/>
- <col ref="task5" type="inputbutton"/>
- <col ref="task6" type="inputbutton"/>
- <col ref="task7" type="inputbutton"/>
- <col type="inputbutton"/>
- <col type="inputbutton"/>
- <col ref="task8" type="inputbutton"/>
- <col ref="task9" type="inputbutton"/>
- <col type="inputbutton"/>
- <col ref="task9" type="inputbutton"/>
- <col type="inputbutton"/>
- </datagrid>
- <button id="button52" class="btn2_letter3" style="left:1025px; top:460px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script ev:event="DOMActivate" type="javascript">
- <![CDATA[
- datagrid3.addItem();
- ]]>
- </script>
- </button>
- <button id="button1" class="btn2_letter3" style="left:1085px; top:460px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script ev:event="DOMActivate" type="javascript">
- <![CDATA[
- datagrid3.deleteItem(1);
- ]]>
- </script>
- </button>
- <button id="button3" class="btn2_letter2" style="left:1145px; top:460px; width:42px; height:19px; ">
- <caption>저장</caption>
- </button>
- <input id="input16" class="input_default" style="left:154px; top:272px; width:150px; height:19px; "/>
- <caption id="caption16" class="cell_1" style="left:0px; top:270px; width:150px; height:23px; text-align:center; vertical-align:middle; ">심사비 예금주</caption>
- <caption id="caption4" class="cell_1" style="left:306px; top:270px; width:150px; height:23px; text-align:center; vertical-align:middle; ">임금처 및 연락처</caption>
- <input id="input2" class="input_default" style="left:458px; top:272px; width:224px; height:19px; "/>
- <caption id="caption5" class="cell_1" style="left:305px; top:460px; width:150px; height:23px; text-align:center; vertical-align:middle; ">임금처 및 연락처</caption>
- <input id="input3" class="input_default" style="left:458px; top:462px; width:224px; height:19px; "/>
- <input id="input4" class="input_default" style="left:153px; top:462px; width:150px; height:19px; "/>
- <caption id="caption6" class="cell_1" style="left:0px; top:460px; width:150px; height:23px; text-align:center; vertical-align:middle; ">심사비 예금주</caption>
- <button id="button2" class="btn2_letter2" style="left:760px; top:270px; width:42px; height:19px; ">
- <caption>저장</caption>
- </button>
- <caption id="caption7" style="left:205px; top:242px; width:660px; height:20px; font-size:16px; font-weight:bold; color:#0000ff; ">심사비[PMS: 100.000원, 기타연구비: 300.000원, 연구비가없을경우: 0원으로 표시]</caption>
- <line id="line6" class="line_1" style="x1:843px; y1:298px; x2:1195px; y2:297px; "/>
- <caption id="caption8" class="cell_1" style="left:894px; top:301px; width:100px; height:23px; text-align:center; vertical-align:middle; ">예산</caption>
- <caption id="caption9" class="cell_1" style="left:995px; top:301px; width:100px; height:23px; text-align:center; vertical-align:middle; ">입금누적액</caption>
- <caption id="caption10" class="cell_1" style="left:1096px; top:301px; width:100px; height:23px; text-align:center; vertical-align:middle; ">금회입금액</caption>
- <input id="input5" class="input_default" style="left:894px; top:326px; width:100px; height:23px; "/>
- <input id="input6" class="input_default" style="left:995px; top:326px; width:100px; height:23px; "/>
- <input id="input7" class="input_default" style="left:1096px; top:326px; width:100px; height:23px; "/>
- <input id="input8" class="input_default" style="left:894px; top:346px; width:100px; height:19px; "/>
- <input id="input9" class="input_default" style="left:995px; top:346px; width:100px; height:19px; "/>
- <input id="input10" class="input_default" style="left:1096px; top:346px; width:100px; height:19px; "/>
- <input id="input11" class="input_default" style="left:894px; top:386px; width:100px; height:19px; "/>
- <input id="input12" class="input_default" style="left:995px; top:386px; width:100px; height:19px; "/>
- <input id="input13" class="input_default" style="left:1096px; top:386px; width:100px; height:19px; "/>
- <input id="input14" class="input_default" style="left:894px; top:366px; width:100px; height:19px; "/>
- <input id="input15" class="input_default" style="left:995px; top:366px; width:100px; height:19px; "/>
- <input id="input17" class="input_default" style="left:1096px; top:366px; width:100px; height:19px; "/>
- <caption id="caption11" class="cell_1" style="left:843px; top:301px; width:50px; height:23px; text-align:center; vertical-align:middle; "/>
- <caption id="caption12" class="cell_1" style="left:843px; top:326px; width:50px; height:19px; text-align:center; vertical-align:middle; ">100%</caption>
- <caption id="caption13" class="cell_1" style="left:843px; top:346px; width:50px; height:19px; text-align:center; vertical-align:middle; ">50%</caption>
- <caption id="caption14" class="cell_1" style="left:843px; top:366px; width:50px; height:19px; text-align:center; vertical-align:middle; ">10%</caption>
- <caption id="caption15" class="cell_1" style="left:843px; top:386px; width:50px; height:19px; text-align:center; vertical-align:middle; ">총액</caption>
- <line id="line7" class="line_3" style="x1:843px; y1:407px; x2:1198px; y2:407px; "/>
- </xhtml:body>
- </xhtml:html>
|