You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
397 lines
20 KiB
XML
397 lines
20 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:w2="http://www.inswave.com/websquare"
|
|
xmlns:xf="http://www.w3.org/2002/xforms">
|
|
<head>
|
|
<w2:type>DEFAULT</w2:type>
|
|
<w2:buildDate />
|
|
<xf:model>
|
|
<xf:instance>
|
|
<data xmlns="" />
|
|
</xf:instance>
|
|
<w2:dataCollection baseNode="map">
|
|
<w2:dataList baseNode="list" repeatNode="map" id="resCode" saveRemovedData="true">
|
|
<w2:columnInfo>
|
|
<w2:column id="year" name="년" dataType="text"></w2:column>
|
|
<w2:column id="mon" name="월" dataType="text"></w2:column>
|
|
<w2:column id="division" name="구분" dataType="text"></w2:column>
|
|
<w2:column id="notifiCnt" name="고지건수" dataType="number"></w2:column>
|
|
<w2:column id="notifiPri" name="고지금액" dataType="number"></w2:column>
|
|
<w2:column id="paymentCnt" name="납부건수" dataType="number"></w2:column>
|
|
<w2:column id="paymentPri" name="납부금액" dataType="number"></w2:column>
|
|
<w2:column id="paymentRate" name="납부율" dataType="number"></w2:column>
|
|
<w2:column id="nonpayCnt" name="미납건수" dataType="number"></w2:column>
|
|
<w2:column id="nonpayPri" name="미납금액" dataType="number"></w2:column>
|
|
<w2:column id="cancelCnt" name="취소건수" dataType="number"></w2:column>
|
|
<w2:column id="cancelPri" name="취소금액" dataType="number"></w2:column>
|
|
<w2:column id="defectCnt" name="결손건수" dataType="number"></w2:column>
|
|
<w2:column id="defectPri" name="결손금액" dataType="number"></w2:column>
|
|
|
|
</w2:columnInfo>
|
|
<w2:data></w2:data>
|
|
</w2:dataList>
|
|
<w2:dataMap baseNode="list" repeatNode="map" id="reqCode" saveRemovedData="true">
|
|
<w2:keyInfo>
|
|
<w2:key id="fareOfficeId" name="요금소코드" dataType="text"></w2:key>
|
|
<w2:key id="dtType" name="날짜형태" dataType="text"></w2:key>
|
|
<w2:key id="motionId" name="고지구분" dataType="text"></w2:key>
|
|
<w2:key id="inStDate" name="조회시작일" dataType="text"></w2:key>
|
|
<w2:key id="inEdDate" name="조회종료일" dataType="text"></w2:key>
|
|
|
|
</w2:keyInfo>
|
|
</w2:dataMap>
|
|
</w2:dataCollection>
|
|
<xf:submission id="sub_search" ref='data:json,{"id":"reqCode","key":"param"}' target='data:json,{"id":"resCode","key":"result"}'
|
|
action="/cfs/fine/findFinePmList.do" method="post" mediatype="application/json" encoding="UTF-8" mode="asynchronous"
|
|
ev:submitdone="scwin.sub_search_submitdone" instance="" replace="" errorHandler="" customHandler="" processMsg="조회중입니다" ev:submit=""
|
|
ev:submiterror="" abortTrigger="">
|
|
</xf:submission>
|
|
</xf:model>
|
|
|
|
<script type="text/javascript" lazy="false"><![CDATA[
|
|
/**
|
|
* 화면 내 전역 변수 선언
|
|
*/
|
|
scwin.idxRowAuthority = 0;
|
|
|
|
/**
|
|
* 초기 스크립트 수행 함수 정의
|
|
*/
|
|
scwin.onpageload = function() {
|
|
var sbxOptions = [{ code : "cfs01", compID : "sbx_fareOfficeId", option : sbx_fareOfficeId.getText() }];
|
|
com.setCfsCommonCode(sbxOptions);
|
|
//통행일자
|
|
var ymd = com.getToday();
|
|
ica_inStDate.setValue( ymd );
|
|
ica_inEdDate.setValue( ymd );
|
|
|
|
var result;
|
|
var dttype;
|
|
result = 'yearMonth';
|
|
dttype = "yyyyMM";
|
|
ica_inStDate.setCalendarValueType( result);
|
|
ica_inEdDate.setCalendarValueType( result);
|
|
ica_inStDate.setValue( com.getToday( dttype ) );
|
|
ica_inEdDate.setValue( com.getToday( dttype ) );
|
|
grd_gridView1.setFooterValue( "column85" , 0 );
|
|
};
|
|
|
|
scwin.onpageunload = function() {
|
|
|
|
};
|
|
|
|
scwin.btn_search_onclick = function(e) {
|
|
var stDate = ica_inStDate.getValue();
|
|
var edDate = ica_inEdDate.getValue();
|
|
if(stDate>edDate){
|
|
alert("시작일자가 종료일자보다 큽니다.");
|
|
return false;
|
|
}
|
|
$p.executeSubmission( "sub_search" );
|
|
};
|
|
/**
|
|
* 라디오 버튼에 따라 inputCalender에 format을 변경시킨다
|
|
*/
|
|
scwin.rad_radio1_onchange = function() {
|
|
var radioValue = this.getValue();
|
|
console.log(radioValue);
|
|
var result;
|
|
var dttype;
|
|
if(radioValue == '01'){
|
|
result = 'yearMonth';
|
|
dttype = "yyyyMM";
|
|
}else if(radioValue == '02'){
|
|
result = 'year';
|
|
dttype = "yyyy";
|
|
|
|
}
|
|
ica_inStDate.setCalendarValueType( result);
|
|
ica_inEdDate.setCalendarValueType( result);
|
|
ica_inStDate.setValue( com.getToday( dttype ) );
|
|
ica_inEdDate.setValue( com.getToday( dttype ) );
|
|
};
|
|
|
|
scwin.btn_excel_down_onclick = function(e) {
|
|
if (statList.getRowCount() == 0) {
|
|
com.alert("엑셀다운로드할 정보가 없습니다.");
|
|
return;
|
|
}
|
|
var info = {};
|
|
var options = {};
|
|
options.fileName = "부과고지및 납부실적_"+com.getCurDtime()+".xlsx";
|
|
options.sheetName = "부과고지및 납부실적";
|
|
options.showProcess = "true"; //다운로드 시 프로세스 창을 보여줄지 여부 (true:보임)
|
|
options.showConfirm = "true"; //다운로드 확인창을 띄울지 여부 (false:미확인)
|
|
options.useFooter = "true"; //다운로드시 Footer를 출력 할지 여부 (true:포함)
|
|
options.useSubTotal = "true"; //다운로드시 SubTotal을 출력 할지 여부 (false:미포함)
|
|
options.printSet = {
|
|
fitToPage : "true" //엑셀 프린터 출력시 쪽맞춤 사용 유무 (false:미사용)
|
|
, landScape : "true" //엑셀 프린터 출력시 가로 방향 출력 유무 (false:세로)
|
|
, pageSize : "A4" //엑셀 프린터 출력시 인쇄용지 설정 (A4:A4용지)
|
|
};
|
|
options.autoSizeColumn = "false"; //너비자동맞춤 설정 유무 (false:미적용)
|
|
options.type = "1";
|
|
|
|
//com.gridDataDownLoad(grd_gridView1, options, info);
|
|
//com.fncMakeExcelProvider("FinePmService", "findFinePmList", "cfs.fine.vo.FinePmVO",reqCode,grd_gridView1, options, info);
|
|
grd_gridView1.advancedExcelDownload( options , info );
|
|
};
|
|
|
|
scwin.sub_search_submitdone = function(e) {
|
|
var notiCnt = grd_gridView1.getFooterData( "column89" , false );
|
|
var payCnt = grd_gridView1.getFooterData( "column87" , false );
|
|
if(notiCnt == 0 || payCnt == 0){
|
|
return false;
|
|
} else if(payCnt == 0){
|
|
grd_gridView1.setFooterValue( "column85" , 0 );
|
|
return false;
|
|
}
|
|
var result =payCnt/notiCnt*100;
|
|
grd_gridView1.setFooterValue( "column85" , result );
|
|
};
|
|
|
|
scwin.btn_prt_onclick = function(e) {
|
|
//var json = JSON.stringify(resCode.getRowJSON( 0 ));
|
|
//var form_tag = document.getElementById("clipform");
|
|
//console.log(json);
|
|
//form_tag.inStDate.value = json;
|
|
//var url = "/ClipReport4/test.jsp";
|
|
//window.open("/ClipReport4/test.jsp","clipform","location=yes,width=1500, height=800");
|
|
//form_tag.action=url;
|
|
//form_tag.method ="post";
|
|
//form_tag.target="clipform";
|
|
//form_tag.submit();
|
|
|
|
var form_tag = document.getElementById("FN053M01");
|
|
|
|
form_tag.fareOfficeId.value = reqCode.get("fareOfficeId");
|
|
form_tag.motionId.value = reqCode.get("motionId");
|
|
form_tag.inStDate.value = reqCode.get("inStDate");
|
|
form_tag.inEdDate.value = reqCode.get("inEdDate");
|
|
|
|
form_tag.crfName.value = "FN053M01";
|
|
|
|
var url = "/ClipReport4/reportView.jsp";
|
|
|
|
form_tag.action=url;
|
|
form_tag.method ="post";
|
|
form_tag.target="clipform";
|
|
form_tag.submit();
|
|
|
|
};
|
|
]]></script>
|
|
</head>
|
|
<body ev:onpageload="scwin.onpageload" ev:onpageunload="scwin.onpageunload">
|
|
<xf:group class="contentWrap" id="" style="">
|
|
<form id="FN053M01" method="post" action ="/ClipReport4/reportView.jsp">
|
|
<input type ="hidden" name="crfName"></input>
|
|
<input type ="hidden" name="fareOfficeId"></input>
|
|
<input type ="hidden" name="motionId"></input>
|
|
<input type ="hidden" name="inStDate"></input>
|
|
<input type ="hidden" name="inEdDate"></input>
|
|
</form>
|
|
<form id="clipform" method="post" action ="/ClipReport4/test.jsp">
|
|
<input type ="hidden" value="IC012M01" name="crfName"></input>
|
|
<input type ="hidden" name="inStDate"></input>
|
|
</form>
|
|
<w2:wframe id="" initScript="scwin.wfTitleFavInit();" src="/cm/common/wf_titleFav.xml" style=""></w2:wframe>
|
|
<xf:group class="tbl_search" id="grp_search" style="">
|
|
<xf:group adaptive="layout" adaptiveThreshold="700" class="w2tb tbl_sc" id="" style="" tagname="table">
|
|
<w2:attributes>
|
|
<w2:summary></w2:summary>
|
|
</w2:attributes>
|
|
<xf:group tagname="colgroup">
|
|
<xf:group tagname="col" style="width:70px;"></xf:group><xf:group style="width:200.00px;" tagname="col"></xf:group>
|
|
<xf:group style="width:70.00px;" tagname="col"></xf:group>
|
|
<xf:group tagname="col" style="width:230.00px;"></xf:group>
|
|
<xf:group tagname="col" style="width:*;"></xf:group>
|
|
</xf:group>
|
|
<xf:group tagname="tr" style="">
|
|
<xf:group tagname="th" class="w2tb_th"><w2:attributes><w2:scope>row</w2:scope></w2:attributes></xf:group><xf:group class="w2tb_th" style="" tagname="th"><xf:select1 appearance="full" cols="" ev:onchange="scwin.rad_radio1_onchange" id="rad_dtType"
|
|
ref="data:reqCode.dtType" rows="1" selectedIndex="0" style="" renderType="table">
|
|
<xf:choices>
|
|
<xf:item>
|
|
<xf:label><![CDATA[일별]]></xf:label>
|
|
<xf:value><![CDATA[01]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[월별]]></xf:label>
|
|
<xf:value><![CDATA[02]]></xf:value>
|
|
</xf:item>
|
|
<xf:item>
|
|
<xf:label><![CDATA[년별]]></xf:label>
|
|
<xf:value><![CDATA[03]]></xf:value>
|
|
</xf:item>
|
|
</xf:choices>
|
|
</xf:select1></xf:group>
|
|
<xf:group class="w2tb_th" style="" tagname="th">통행일자<w2:attributes>
|
|
<w2:colspan>1</w2:colspan>
|
|
<w2:rowspan>1</w2:rowspan>
|
|
</w2:attributes></xf:group>
|
|
<xf:group tagname="td" class="w2tb_td"><w2:attributes>
|
|
<w2:scope>row</w2:scope>
|
|
</w2:attributes><w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" displayFormat=""
|
|
focusOnDateSelect="false" footerDiv="false" id="ica_inStDate" ref="data:reqCode.inStDate" renderDiv="true" renderType="component"
|
|
style="" weekStartsOn="0">
|
|
</w2:inputCalendar><w2:span id="spa_span1" label="~" style=""></w2:span><w2:inputCalendar calendarValueType="yearMonthDate" class="" dateValidCheck="" displayFormat=""
|
|
focusOnDateSelect="false" footerDiv="false" id="ica_inEdDate" ref="data:reqCode.inEdDate" renderDiv="true" renderType="component"
|
|
style="" weekStartsOn="0">
|
|
</w2:inputCalendar></xf:group>
|
|
<xf:group tagname="td" class="w2tb_td">
|
|
<w2:attributes></w2:attributes>
|
|
<xf:group style="" id="grp_group1" class="fr">
|
|
<xf:trigger class="btn_sh" ev:onclick="scwin.btn_search_onclick" id="btn_search" type="button">
|
|
<xf:label><![CDATA[조회]]></xf:label>
|
|
</xf:trigger>
|
|
</xf:group>
|
|
</xf:group>
|
|
</xf:group>
|
|
</xf:group>
|
|
</xf:group>
|
|
<xf:group class="defaultbox" id="" style="">
|
|
<xf:group class="fr" id="" style="">
|
|
<xf:trigger class="btn_act exceldown" id="btn_excel_down" type="button" ev:onclick="scwin.btn_excel_down_onclick">
|
|
<xf:label><![CDATA[엑셀다운로드]]></xf:label>
|
|
</xf:trigger>
|
|
</xf:group>
|
|
<w2:textbox class="df_tt" id="" label="과태료 납부 및 고지취소 현황" tagname="h2"></w2:textbox>
|
|
</xf:group>
|
|
<table id="tbl_table3"></table>
|
|
<xf:group class="" id="grp_group12" >
|
|
<w2:gridView autoFit="allColumn" autoFitMinWidth="600" dataList="data:resCode" defaultCellHeight="" dynamic="true"
|
|
fixedColumnWithHidden="true" footerCaption="" footerCaptionAuto="" footerSummary="" id="grd_gridView1" scrollByColumn="false"
|
|
scrollByColumnAdaptive="false" style="height: 171px;" readOnly="" class="cm_grid" focusMode="row" ignoreCellClick="false"
|
|
ignoreToggleOnDisabled="false" summaryAuto="" useShiftKey="true" visibleRowNum="all">
|
|
<w2:caption id="caption1" style="" value="this is a grid caption."></w2:caption>
|
|
<w2:header id="header1" style="">
|
|
<w2:row id="row1" style="">
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="height:20px;" id="column92" value=""
|
|
blockSelect="false" displayMode="label" hidden="true">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column13" inputType="text" removeBorderStyle="false"
|
|
style="height:20px;" value="구분" width="90" colSpan="" rowSpan="2">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column11" inputType="text" removeBorderStyle="false"
|
|
style="height:20px;" value="고지" width="100" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column9" inputType="text" removeBorderStyle="false"
|
|
style="height:20px;" value="납부" width="100" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column7" inputType="text" removeBorderStyle="false"
|
|
style="height:20px;" value="고지취소" width="70" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="column44" inputType="text" removeBorderStyle="false"
|
|
style="height:20px;" value="미납" width="70" colSpan="2" rowSpan="">
|
|
</w2:column>
|
|
</w2:row>
|
|
<w2:row style="" id="row7">
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column110" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column107" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column106" value="비율"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column105" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column104" value="비율"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column103" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column102" value="비율"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="text" style="" id="column101" value="건수"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column100" value="비율"
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:header>
|
|
<w2:gBody id="gBody1" style="">
|
|
<w2:row id="row2" style="">
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="year" value="" blockSelect="false"
|
|
displayMode="label">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayMode="label" id="division" inputType="text" removeBorderStyle="false"
|
|
style="" value="" width="90" readOnly="true">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="notifiCnt" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="70" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="notifiPri" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="100" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="paymentCnt" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="70" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="paymentPri" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="100" expression="" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0.##" displayMode="label" id="paymentRate"
|
|
inputType="expression" removeBorderStyle="false" style="" value="" width="70"
|
|
expression="SUM('notifiCnt') == 0 ? 0 : SUM('paymentCnt')/SUM('notifiCnt')*100" displayFormatter="" readOnly="true"
|
|
textAlign="right" dataType="number" fixColumnWidth="false">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="nonpayCnt" inputType="expression"
|
|
removeBorderStyle="false" style="" value="" width="70" expression="SUM('notifiCnt')-SUM('paymentCnt')" readOnly="true"
|
|
textAlign="right" dataType="number" fixColumnWidth="false">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="nonpayPri" inputType="expression"
|
|
removeBorderStyle="false" style="" value="" width="100" expression="SUM('notifiPri')-SUM('paymentPri')" readOnly="true"
|
|
textAlign="right" dataType="number" fixColumnWidth="false">
|
|
</w2:column>
|
|
<w2:column blockSelect="false" displayFormat="#,##0" displayMode="label" id="cancelCnt" inputType="number"
|
|
removeBorderStyle="false" style="" value="" width="70" readOnly="true" textAlign="right" dataType="number">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:gBody>
|
|
<w2:footer style="" id="footer1">
|
|
<w2:row style="" id="row6">
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column96" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="90" inputType="text" style="" id="column90" value=""
|
|
blockSelect="false" displayMode="label">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column89" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('notifiCnt')" textAlign="right" displayFormat="#,##0" defaultValue=""
|
|
depthType="" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column88" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('notifiPri')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column87" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('paymentCnt')" textAlign="right" displayFormat="#,##0" defaultValue=""
|
|
depthType="" dataType="number">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column86" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('paymentPri')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="text" style="" id="column85" value=""
|
|
blockSelect="false" displayMode="label" expression="" textAlign="right" displayFormat="#,##0.##" dataType="number" defaultValue=""
|
|
depthType="">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column84" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('nonpayCnt')-SUM('cancelCnt')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="100" inputType="expression" style="" id="column83" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('nonpayPri')-SUM('cancelPri')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
<w2:column removeBorderStyle="false" width="70" inputType="expression" style="" id="column82" value=""
|
|
blockSelect="false" displayMode="label" expression="SUM('cancelCnt')" textAlign="right" displayFormat="#,##0">
|
|
</w2:column>
|
|
</w2:row>
|
|
</w2:footer>
|
|
</w2:gridView>
|
|
</xf:group>
|
|
<w2:span label="※ 미납건수 = 고지건수 - 납부건수 - 고지취소건수 - 결손건수. ※ 납부건수는 전체건수에서 이중 수납건수를 뺀 수량/금액입니다." style="color:#804040;" id="spa_span12"></w2:span></xf:group>
|
|
|
|
</body>
|
|
</html> |