Project:
View Issue Details[ Jump to Notes ] | [ Issue History ] [ Print ] | |||||||
ID | ||||||||
0018271 | ||||||||
Type | Category | Severity | Reproducibility | Date Submitted | Last Update | |||
feature request | [Openbravo ERP] 09. Financial management | minor | always | 2011-08-12 10:47 | 2016-06-17 19:37 | |||
Reporter | ioritzCia | View Status | public | |||||
Assigned To | ioritzCia | |||||||
Priority | normal | Resolution | fixed | Fixed in Version | ||||
Status | closed | Fix in branch | Fixed in SCM revision | f7808366cd8b | ||||
Projection | none | ETA | none | Target Version | ||||
OS | Linux 32 bit | Database | PostgreSQL | Java version | 1.6.0_22 | |||
OS Version | Ubuntu 10.04 | Database version | 8.4 | Ant version | 1.7.1 | |||
Product Version | SCM revision | |||||||
Merge Request Status | ||||||||
Review Assigned To | dmiguelez | |||||||
OBNetwork customer | OBPS | |||||||
Web browser | Mozilla Firefox | |||||||
Modules | Payment Report | |||||||
Support ticket | 12356 | |||||||
Regression level | ||||||||
Regression date | ||||||||
Regression introduced in release | ||||||||
Regression introduced by commit | ||||||||
Triggers an Emergency Pack | No | |||||||
Summary | 0018271: It would be nice to show the Payment Method in the html view. | |||||||
Description | It would be nice to show the Payment Method in the html view. | |||||||
Steps To Reproduce | - Go to Payment Report. - Launch it and see that the Payment Method it is not shown. - It would be nice to have it. | |||||||
Proposed Solution | Although it is posible to put it either in the html view or in the pdf and in the xls, these last two options are not likely to do. The pdf and xls are designed so they can be printed in an A4 landscape sheet. If we add more columns to them there are two options. To print it in a larger sheet. Or to try to make the columns of the pdf and xls narrower so that another column can enter. Neither of these options are likely. | |||||||
Tags | No tags attached. | |||||||
Attached Files | ![]() diff -r 8dabadcfeceb modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReport.html --- a/modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReport.html Tue Dec 08 04:01:29 2015 +0000 +++ b/modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReport.html Tue Mar 15 10:39:44 2016 +0100 @@ -1192,6 +1192,7 @@ <th width="10%" class="DataGrid_Header_Cell">Sales Person</th> <th width="10%" class="DataGrid_Header_Cell">Invoice Number</th> <th width="10%" class="DataGrid_Header_Cell">Invoice Date</th> + <th width="10%" class="DataGrid_Header_Cell">Payment Method</th> <th width="10%" class="DataGrid_Header_Cell">Payment</th> <th width="10%" class="DataGrid_Header_Cell">Due Date</th> <th width="10%" class="DataGrid_Header_Cell">Expected Date</th> @@ -1219,6 +1220,7 @@ </td> <td width="10%" id="fieldInvoiceDate" class="DataGrid_Body_Cell">xx14500.34</td> + <td width="10%" id="fieldPaymentMethod" class="DataGrid_Body_Cell">xx14500.34</td> <td width="10%" class="DataGrid_Body_Cell_Amount"> <a href="#" onclick="validate(); openPaymentTab('yy', 'zz');" onmouseover="window.status='Payment Report';return true;" onmouseout="window.status='';return true;" class="LabelLink" id="fieldPaymLink" style="xx" title="xx"> <span id="fieldPayment">xx14500.34</span> @@ -1273,6 +1275,7 @@ <th width="10%" class="DataGrid_Header_Cell">Sales Person</th> <th width="10%" class="DataGrid_Header_Cell">Invoice Number</th> <th width="10%" class="DataGrid_Header_Cell">Invoice Date</th> + <th width="10%" class="DataGrid_Header_Cell">Payment Method</th> <th width="10%" class="DataGrid_Header_Cell">Payment</th> <th width="10%" class="DataGrid_Header_Cell">Due Date</th> <th width="10%" class="DataGrid_Header_Cell">Expected Date</th> @@ -1299,6 +1302,7 @@ <span id="fieldInvoiceNumber2_nolink" class="DataGrid_Body_Cell" style="xx">xx14500.34</span> </td> <td width="10%" id="fieldInvoiceDate2" class="DataGrid_Body_Cell">xx14500.34</td> + <td width="10%" id="fieldPaymentMethod" class="DataGrid_Body_Cell">xx14500.34</td> <td width="10%" class="DataGrid_Body_Cell_Amount"> <a href="#" onclick="validate(); openPaymentTab('yy', 'zz');" onmouseover="window.status='Payment Report';return true;" onmouseout="window.status='';return true;" class="LabelLink" id="fieldPaymLink2" style="xx" title="xx"> <span id="fieldPayment2">xx14500.34</span> diff -r 8dabadcfeceb modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReport.xml --- a/modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReport.xml Tue Dec 08 04:01:29 2015 +0000 +++ b/modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReport.xml Tue Mar 15 10:39:44 2016 +0100 @@ -144,6 +144,8 @@ <FIELD id="fieldInvoiceNumber_nolink" replaceCharacters="html">INVOICE_NUMBER</FIELD> <FIELD id="fieldInvoiceNumber_nolink" attribute="style" replace="xx">NOT_PAYMENT_PLAN_Y_N</FIELD> + <FIELD id="fieldPaymentMethod">PAYMENT_METHOD</FIELD> + <FIELD id="fieldInvoiceDate">INVOICE_DATE</FIELD> <FIELD id="fieldPayment" replaceCharacters="html">PAYMENT</FIELD> @@ -184,6 +186,8 @@ <FIELD id="fieldInvoiceNumber2_nolink" replaceCharacters="html">INVOICE_NUMBER</FIELD> <FIELD id="fieldInvoiceNumber2_nolink" attribute="style" replace="xx">NOT_PAYMENT_PLAN_Y_N</FIELD> + <FIELD id="fieldPaymentMethod">PAYMENT_METHOD</FIELD> + <FIELD id="fieldInvoiceDate2">INVOICE_DATE</FIELD> <FIELD id="fieldPaymLink2" attribute="onclick" replace="zz">PAYMENT_ID</FIELD> diff -r 8dabadcfeceb modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReportExcel.jrxml --- a/modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReportExcel.jrxml Tue Dec 08 04:01:29 2015 +0000 +++ b/modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReportExcel.jrxml Tue Mar 15 10:39:44 2016 +0100 @@ -1,10 +1,21 @@ <?xml version="1.0" encoding="UTF-8"?> -<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="PaymentReportExcel" pageWidth="1800" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="1740" leftMargin="30" rightMargin="30" topMargin="20" bottomMargin="20" uuid="bd54446c-5f03-492f-9be8-1942e896464a"> +<!-- Created with Jaspersoft Studio version 6.0.0.final using JasperReports Library version 6.0.0 --> +<!-- 2016-03-11T16:07:53 --> +<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="PaymentReportExcel" pageWidth="2000" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="1940" leftMargin="30" rightMargin="30" topMargin="20" bottomMargin="20" uuid="bd54446c-5f03-492f-9be8-1942e896464a"> <property name="ireport.scriptlethandling" value="0"/> <property name="ireport.encoding" value="UTF-8"/> <property name="ireport.zoom" value="2.0"/> <property name="ireport.x" value="1963"/> <property name="ireport.y" value="0"/> + <property name="com.jaspersoft.studio.unit." value="pixel"/> + <property name="com.jaspersoft.studio.unit.pageHeight" value="pixel"/> + <property name="com.jaspersoft.studio.unit.pageWidth" value="pixel"/> + <property name="com.jaspersoft.studio.unit.topMargin" value="pixel"/> + <property name="com.jaspersoft.studio.unit.bottomMargin" value="pixel"/> + <property name="com.jaspersoft.studio.unit.leftMargin" value="pixel"/> + <property name="com.jaspersoft.studio.unit.rightMargin" value="pixel"/> + <property name="com.jaspersoft.studio.unit.columnWidth" value="pixel"/> + <property name="com.jaspersoft.studio.unit.columnSpacing" value="pixel"/> <import value="net.sf.jasperreports.engine.*"/> <import value="java.util.*"/> <import value="net.sf.jasperreports.engine.data.*"/> @@ -114,7 +125,7 @@ <text><![CDATA[Business Partner]]></text> </staticText> <staticText> - <reportElement key="staticText-4" style="Detail_Header" x="523" y="25" width="65" height="25" uuid="13b568de-81b5-4eca-a945-52c116d1e034"/> + <reportElement key="staticText-4" style="Detail_Header" x="607" y="25" width="65" height="25" uuid="13b568de-81b5-4eca-a945-52c116d1e034"/> <box leftPadding="2"/> <textElement verticalAlignment="Middle"> <font size="8" isBold="false"/> @@ -122,7 +133,7 @@ <text><![CDATA[Payment]]></text> </staticText> <staticText> - <reportElement key="staticText-5" style="Detail_Header" x="335" y="25" width="78" height="25" uuid="8ad25397-3a53-4b40-9b94-f2e012eed12f"/> + <reportElement key="staticText-5" style="Detail_Header" x="419" y="25" width="78" height="25" uuid="8ad25397-3a53-4b40-9b94-f2e012eed12f"/> <box leftPadding="2"/> <textElement verticalAlignment="Middle"> <font size="8" isBold="false"/> @@ -130,7 +141,7 @@ <text><![CDATA[Sales Person]]></text> </staticText> <staticText> - <reportElement key="staticText-6" style="Detail_Header" x="413" y="25" width="55" height="25" uuid="32d26128-fc92-44c8-8c80-82a2c0b2cbc0"/> + <reportElement key="staticText-6" style="Detail_Header" x="497" y="25" width="55" height="25" uuid="32d26128-fc92-44c8-8c80-82a2c0b2cbc0"/> <box leftPadding="2"/> <textElement verticalAlignment="Middle"> <font size="8" isBold="false"/> @@ -138,7 +149,7 @@ <text><![CDATA[Invoice Number]]></text> </staticText> <staticText> - <reportElement key="staticText-7" style="Detail_Header" x="468" y="25" width="55" height="25" uuid="b62fcb70-a94c-46bc-9e68-030093c18f9d"/> + <reportElement key="staticText-7" style="Detail_Header" x="552" y="25" width="55" height="25" uuid="b62fcb70-a94c-46bc-9e68-030093c18f9d"/> <box leftPadding="2"/> <textElement textAlignment="Left" verticalAlignment="Middle"> <font size="8" isBold="false"/> @@ -146,7 +157,7 @@ <text><![CDATA[Invoice Date]]></text> </staticText> <staticText> - <reportElement key="staticText-8" style="Detail_Header" x="1067" y="25" width="62" height="25" uuid="a1b810c6-7079-4137-98fe-e72aef6982b7"/> + <reportElement key="staticText-8" style="Detail_Header" x="1151" y="25" width="62" height="25" uuid="a1b810c6-7079-4137-98fe-e72aef6982b7"/> <box leftPadding="2"/> <textElement textAlignment="Left" verticalAlignment="Middle"> <font size="8" isBold="false"/> @@ -154,28 +165,28 @@ <text><![CDATA[Expected Date]]></text> </staticText> <staticText> - <reportElement key="staticText-9" style="Detail_Header" x="1191" y="25" width="33" height="25" uuid="3ffa7d2f-f991-429b-8a4d-f10b883ab18e"/> + <reportElement key="staticText-9" style="Detail_Header" x="1275" y="25" width="33" height="25" uuid="3ffa7d2f-f991-429b-8a4d-f10b883ab18e"/> <textElement textAlignment="Center" verticalAlignment="Middle"> <font size="8" isBold="false"/> </textElement> <text><![CDATA[PlannedDSO]]></text> </staticText> <staticText> - <reportElement key="staticText-10" style="Detail_Header" x="1224" y="25" width="33" height="25" uuid="c855e293-66e8-413a-9c5c-53b80f43948e"/> + <reportElement key="staticText-10" style="Detail_Header" x="1308" y="25" width="33" height="25" uuid="c855e293-66e8-413a-9c5c-53b80f43948e"/> <textElement textAlignment="Center" verticalAlignment="Middle"> <font size="8" isBold="false"/> </textElement> <text><![CDATA[CurrentDSO]]></text> </staticText> <staticText> - <reportElement key="staticText-11" style="Detail_Header" x="1257" y="25" width="36" height="25" uuid="c94b49df-3cf9-402b-850d-4e0eafc6344e"/> + <reportElement key="staticText-11" style="Detail_Header" x="1341" y="25" width="36" height="25" uuid="c94b49df-3cf9-402b-850d-4e0eafc6344e"/> <textElement textAlignment="Center" verticalAlignment="Middle"> <font size="8" isBold="false"/> </textElement> <text><![CDATA[Overdue]]></text> </staticText> <staticText> - <reportElement key="staticText-13" style="Detail_Header" x="1433" y="25" width="80" height="25" uuid="b1cf437e-53c3-4907-a195-4e315bbccf75"/> + <reportElement key="staticText-13" style="Detail_Header" x="1517" y="25" width="80" height="25" uuid="b1cf437e-53c3-4907-a195-4e315bbccf75"/> <box rightPadding="2"/> <textElement textAlignment="Right"> <font size="8" isBold="false"/> @@ -183,7 +194,7 @@ <text><![CDATA[Base Amount]]></text> </staticText> <staticText> - <reportElement key="staticText-14" style="Detail_Header" x="1513" y="25" width="46" height="25" uuid="4365d882-411e-4cb7-b0e0-c09428f13f0d"/> + <reportElement key="staticText-14" style="Detail_Header" x="1597" y="25" width="46" height="25" uuid="4365d882-411e-4cb7-b0e0-c09428f13f0d"/> <box leftPadding="2"/> <textElement textAlignment="Center"> <font size="8" isBold="false"/> @@ -191,7 +202,7 @@ <text><![CDATA[Base Currency]]></text> </staticText> <staticText> - <reportElement key="staticText-15" style="Detail_Header" x="1293" y="25" width="80" height="25" uuid="028e545c-de38-4a28-99a5-630e9845aa20"/> + <reportElement key="staticText-15" style="Detail_Header" x="1377" y="25" width="80" height="25" uuid="028e545c-de38-4a28-99a5-630e9845aa20"/> <box rightPadding="2"/> <textElement textAlignment="Right"> <font size="8" isBold="false"/> @@ -199,7 +210,7 @@ <text><![CDATA[Transactional Amount]]></text> </staticText> <staticText> - <reportElement key="staticText-16" style="Detail_Header" x="1373" y="25" width="60" height="25" uuid="ee068dec-8346-4aa7-bdcf-e22a9e6f3d46"/> + <reportElement key="staticText-16" style="Detail_Header" x="1457" y="25" width="60" height="25" uuid="ee068dec-8346-4aa7-bdcf-e22a9e6f3d46"/> <box leftPadding="2"/> <textElement textAlignment="Center"> <font size="8" isBold="false"/> @@ -219,7 +230,7 @@ <text><![CDATA[Business Partner Category]]></text> </staticText> <staticText> - <reportElement key="staticText-19" style="Detail_Header" x="175" y="25" width="76" height="25" uuid="10f03f84-1332-4806-b09f-c8a9ac8ef8c4"/> + <reportElement key="staticText-19" style="Detail_Header" x="259" y="25" width="76" height="25" uuid="10f03f84-1332-4806-b09f-c8a9ac8ef8c4"/> <box leftPadding="2"/> <textElement verticalAlignment="Middle"> <font size="8" isBold="false"/> @@ -227,7 +238,7 @@ <text><![CDATA[Status]]></text> </staticText> <staticText> - <reportElement key="staticText-20" style="Detail_Header" x="251" y="25" width="84" height="25" uuid="9ba2e9e5-a224-46ab-aa50-783b09df9dd2"/> + <reportElement key="staticText-20" style="Detail_Header" x="335" y="25" width="84" height="25" uuid="9ba2e9e5-a224-46ab-aa50-783b09df9dd2"/> <box leftPadding="2"/> <textElement verticalAlignment="Middle"> <font size="8" isBold="false"/> @@ -235,7 +246,7 @@ <text><![CDATA[Project]]></text> </staticText> <staticText> - <reportElement key="staticText-22" style="Detail_Header" x="760" y="25" width="227" height="25" uuid="0ee66011-ae94-49f0-b1ce-7410af3da511"/> + <reportElement key="staticText-22" style="Detail_Header" x="844" y="25" width="227" height="25" uuid="0ee66011-ae94-49f0-b1ce-7410af3da511"/> <box leftPadding="2"/> <textElement textAlignment="Left" verticalAlignment="Middle"> <font size="8" isBold="false"/> @@ -243,7 +254,7 @@ <text><![CDATA[Payment Description]]></text> </staticText> <staticText> - <reportElement key="staticText-25" style="Detail_Header" x="987" y="25" width="80" height="25" uuid="9bb6525a-2c0b-4995-ba06-459eda71f6b3"/> + <reportElement key="staticText-25" style="Detail_Header" x="1071" y="25" width="80" height="25" uuid="9bb6525a-2c0b-4995-ba06-459eda71f6b3"/> <box leftPadding="2"/> <textElement textAlignment="Left" verticalAlignment="Middle"> <font size="8" isBold="false"/> @@ -251,7 +262,7 @@ <text><![CDATA[Payment Date]]></text> </staticText> <staticText> - <reportElement key="staticText-14" style="Detail_Header" x="588" y="25" width="172" height="25" uuid="d853b444-e819-4564-ad71-d9434a778edb"/> + <reportElement key="staticText-14" style="Detail_Header" x="672" y="25" width="172" height="25" uuid="d853b444-e819-4564-ad71-d9434a778edb"/> <box leftPadding="2"/> <textElement textAlignment="Left"> <font size="8" isBold="false"/> @@ -259,7 +270,7 @@ <text><![CDATA[Payment Method]]></text> </staticText> <staticText> - <reportElement key="staticText-14" style="Detail_Header" x="1559" y="25" width="77" height="25" uuid="8f210f70-ea6e-4b5a-a9c6-78ad56be9638"/> + <reportElement key="staticText-14" style="Detail_Header" x="1643" y="25" width="77" height="25" uuid="8f210f70-ea6e-4b5a-a9c6-78ad56be9638"/> <box leftPadding="2"/> <textElement textAlignment="Center"> <font size="8" isBold="false"/> @@ -267,7 +278,7 @@ <text><![CDATA[Deposit/Withdraw Date]]></text> </staticText> <staticText> - <reportElement key="staticText-14" style="Detail_Header" x="1636" y="25" width="77" height="25" uuid="4c50761f-63bb-4f04-847c-1283d5a21200"/> + <reportElement key="staticText-14" style="Detail_Header" x="1720" y="25" width="77" height="25" uuid="4c50761f-63bb-4f04-847c-1283d5a21200"/> <box leftPadding="2"/> <textElement textAlignment="Center"> <font size="8" isBold="false"/> @@ -275,13 +286,21 @@ <text><![CDATA[Financial Account]]></text> </staticText> <staticText> - <reportElement key="staticText-8" style="Detail_Header" x="1129" y="25" width="62" height="25" uuid="3d5a6635-4d0a-4804-a7b9-407c062ce112"/> + <reportElement key="staticText-8" style="Detail_Header" x="1213" y="25" width="62" height="25" uuid="3d5a6635-4d0a-4804-a7b9-407c062ce112"/> <box leftPadding="2"/> <textElement textAlignment="Left" verticalAlignment="Middle"> <font size="8" isBold="false"/> </textElement> <text><![CDATA[Due Date]]></text> </staticText> + <staticText> + <reportElement key="staticText-19" style="Detail_Header" x="175" y="25" width="84" height="25" uuid="b4c29132-9825-4b9e-8cc1-5ff2d5633b6d"/> + <box leftPadding="2"/> + <textElement verticalAlignment="Middle"> + <font size="8" isBold="false"/> + </textElement> + <text><![CDATA[Payment Method]]></text> + </staticText> </band> </pageHeader> <columnHeader> @@ -298,7 +317,7 @@ <textFieldExpression><![CDATA[$F{BPARTNER}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-4" style="Report_Footer" x="523" y="0" width="65" height="25" uuid="ca4dd966-492f-4482-bdce-4092007f90e1"/> + <reportElement key="textField-4" style="Report_Footer" x="607" y="0" width="65" height="25" uuid="ca4dd966-492f-4482-bdce-4092007f90e1"/> <box leftPadding="2"/> <textElement> <font size="8"/> @@ -306,7 +325,7 @@ <textFieldExpression><![CDATA[$F{PAYMENT_DOCNO}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-5" style="Report_Footer" x="335" y="0" width="78" height="25" uuid="fee5d68f-091c-48d6-8226-7802e06dda51"/> + <reportElement key="textField-5" style="Report_Footer" x="419" y="0" width="78" height="25" uuid="fee5d68f-091c-48d6-8226-7802e06dda51"/> <box leftPadding="2"/> <textElement> <font size="8"/> @@ -314,7 +333,7 @@ <textFieldExpression><![CDATA[($F{SALES_PERSON}==null ? " " : $F{SALES_PERSON})]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-6" style="Report_Footer" x="413" y="0" width="55" height="25" uuid="c71a9a7c-65ce-4e62-b94d-849852a6de65"/> + <reportElement key="textField-6" style="Report_Footer" x="497" y="0" width="55" height="25" uuid="c71a9a7c-65ce-4e62-b94d-849852a6de65"/> <box leftPadding="2"/> <textElement> <font size="8"/> @@ -322,7 +341,7 @@ <textFieldExpression><![CDATA[($F{INVOICE_NUMBER}==null ? " " : $F{INVOICE_NUMBER}.toString())]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-7" style="Report_Footer" x="468" y="0" width="55" height="25" uuid="3b6da8cb-3613-4c05-9eb9-12ba187d9994"/> + <reportElement key="textField-7" style="Report_Footer" x="552" y="0" width="55" height="25" uuid="3b6da8cb-3613-4c05-9eb9-12ba187d9994"/> <box leftPadding="2"/> <textElement> <font size="8"/> @@ -330,7 +349,7 @@ <textFieldExpression><![CDATA[($F{INVOICE_DATE}== null ? " " : $F{INVOICE_DATE})]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-8" style="Report_Footer" x="1067" y="0" width="62" height="25" uuid="a7c63912-bf1d-4012-a724-e52dd62d334b"/> + <reportElement key="textField-8" style="Report_Footer" x="1151" y="0" width="62" height="25" uuid="a7c63912-bf1d-4012-a724-e52dd62d334b"/> <box leftPadding="2"/> <textElement> <font size="8"/> @@ -338,28 +357,28 @@ <textFieldExpression><![CDATA[($F{EXPECTED_DATE}== null ? " " : $F{EXPECTED_DATE})]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-9" style="Report_Footer" x="1191" y="0" width="33" height="25" uuid="4ade6f38-a30e-4c1a-9fb3-0750d581141e"/> + <reportElement key="textField-9" style="Report_Footer" x="1275" y="0" width="33" height="25" uuid="4ade6f38-a30e-4c1a-9fb3-0750d581141e"/> <textElement textAlignment="Center"> <font size="8"/> </textElement> <textFieldExpression><![CDATA[($F{PLANNED_DSO}== null ? " " : $F{PLANNED_DSO}.toString())]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-10" style="Report_Footer" x="1224" y="0" width="33" height="25" uuid="c294add7-2a46-49de-b576-06a6b041a68b"/> + <reportElement key="textField-10" style="Report_Footer" x="1308" y="0" width="33" height="25" uuid="c294add7-2a46-49de-b576-06a6b041a68b"/> <textElement textAlignment="Center"> <font size="8"/> </textElement> <textFieldExpression><![CDATA[($F{CURRENT_DSO}== null ? " " : $F{CURRENT_DSO}.toString())]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-11" style="Report_Footer" x="1257" y="0" width="36" height="25" uuid="2fe53a7d-a2ef-4c76-bc39-8ccf3db0cd6d"/> + <reportElement key="textField-11" style="Report_Footer" x="1341" y="0" width="36" height="25" uuid="2fe53a7d-a2ef-4c76-bc39-8ccf3db0cd6d"/> <textElement textAlignment="Center"> <font size="8"/> </textElement> <textFieldExpression><![CDATA[($F{OVERDUE}== null ? " " : $F{OVERDUE}.toString())]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-13" style="Report_Footer" x="1433" y="0" width="80" height="25" uuid="469ae18b-601a-4111-a91b-c6aed348c9d2"/> + <reportElement key="textField-13" style="Report_Footer" x="1517" y="0" width="80" height="25" uuid="469ae18b-601a-4111-a91b-c6aed348c9d2"/> <box rightPadding="2"/> <textElement textAlignment="Right"> <font size="8"/> @@ -367,14 +386,14 @@ <textFieldExpression><![CDATA[$F{BASE_AMOUNT}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-14" style="Report_Footer" x="1513" y="0" width="46" height="25" uuid="5048cde4-f51d-4ce0-8a89-adc9406901c8"/> + <reportElement key="textField-14" style="Report_Footer" x="1597" y="0" width="46" height="25" uuid="5048cde4-f51d-4ce0-8a89-adc9406901c8"/> <textElement textAlignment="Center"> <font size="8"/> </textElement> <textFieldExpression><![CDATA[$F{BASE_CURRENCY}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-15" style="Report_Footer" x="1293" y="0" width="80" height="25" uuid="82a9b6d9-6055-48b8-9766-36fcea5ef399"/> + <reportElement key="textField-15" style="Report_Footer" x="1377" y="0" width="80" height="25" uuid="82a9b6d9-6055-48b8-9766-36fcea5ef399"/> <box rightPadding="2"/> <textElement textAlignment="Right"> <font size="8"/> @@ -382,7 +401,7 @@ <textFieldExpression><![CDATA[$F{TRANS_AMOUNT}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-16" style="Report_Footer" x="1373" y="0" width="60" height="25" uuid="ff340e8e-63c1-4df9-af58-75c6c7bbabee"/> + <reportElement key="textField-16" style="Report_Footer" x="1457" y="0" width="60" height="25" uuid="ff340e8e-63c1-4df9-af58-75c6c7bbabee"/> <textElement textAlignment="Center"> <font size="8"/> </textElement> @@ -397,7 +416,7 @@ <textFieldExpression><![CDATA[$F{BP_GROUP}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-18" style="Report_Footer" x="175" y="0" width="76" height="25" uuid="656f0e60-baf2-4a38-a9c6-b691546f2ddc"/> + <reportElement key="textField-18" style="Report_Footer" x="259" y="0" width="76" height="25" uuid="656f0e60-baf2-4a38-a9c6-b691546f2ddc"/> <box leftPadding="2"/> <textElement> <font size="8"/> @@ -405,7 +424,7 @@ <textFieldExpression><![CDATA[$F{STATUS}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-19" style="Report_Footer" x="251" y="0" width="84" height="25" uuid="eb8de9eb-0b8f-4a0c-ad4e-38cb75011387"/> + <reportElement key="textField-19" style="Report_Footer" x="335" y="0" width="84" height="25" uuid="eb8de9eb-0b8f-4a0c-ad4e-38cb75011387"/> <box leftPadding="2"/> <textElement> <font size="8"/> @@ -413,7 +432,7 @@ <textFieldExpression><![CDATA[$F{PROJECT}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" pattern="" isBlankWhenNull="true"> - <reportElement key="textField-21" style="Report_Footer" stretchType="RelativeToBandHeight" x="760" y="0" width="227" height="25" uuid="b994b3fe-c40c-4593-b9fa-def60a85e415"/> + <reportElement key="textField-21" style="Report_Footer" stretchType="RelativeToBandHeight" x="844" y="0" width="227" height="25" uuid="b994b3fe-c40c-4593-b9fa-def60a85e415"/> <box leftPadding="2"/> <textElement> <font size="8"/> @@ -421,7 +440,7 @@ <textFieldExpression><![CDATA[$F{PAYMENT_DESC}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-22" style="Report_Footer" x="987" y="0" width="80" height="25" uuid="dc82c446-73df-42ca-8bfa-efcc30eb34a2"/> + <reportElement key="textField-22" style="Report_Footer" x="1071" y="0" width="80" height="25" uuid="dc82c446-73df-42ca-8bfa-efcc30eb34a2"/> <box leftPadding="2"/> <textElement> <font size="8"/> @@ -429,34 +448,42 @@ <textFieldExpression><![CDATA[$F{PAYMENT_DATE}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-14" style="Report_Footer" x="588" y="0" width="172" height="25" uuid="4fcec8ca-50da-4a41-85f5-c0323ecdca1e"/> + <reportElement key="textField-14" style="Report_Footer" x="672" y="0" width="172" height="25" uuid="4fcec8ca-50da-4a41-85f5-c0323ecdca1e"/> <textElement textAlignment="Left"> <font size="8"/> </textElement> <textFieldExpression><![CDATA[$F{PAYMENT_METHOD}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-14" style="Report_Footer" x="1559" y="0" width="77" height="25" uuid="9ba8e0c8-323a-4713-92a9-47bf1fe1fba1"/> + <reportElement key="textField-14" style="Report_Footer" x="1643" y="0" width="77" height="25" uuid="9ba8e0c8-323a-4713-92a9-47bf1fe1fba1"/> <textElement textAlignment="Center"> <font size="8"/> </textElement> <textFieldExpression><![CDATA[$F{DEPOSIT_WITHDRAW_DATE}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-14" style="Report_Footer" x="1636" y="0" width="77" height="25" uuid="39d37682-307e-45b4-9a5e-4447538e0aa3"/> + <reportElement key="textField-14" style="Report_Footer" x="1720" y="0" width="77" height="25" uuid="39d37682-307e-45b4-9a5e-4447538e0aa3"/> <textElement textAlignment="Center"> <font size="8"/> </textElement> <textFieldExpression><![CDATA[$F{FINANCIAL_ACCOUNT}]]></textFieldExpression> </textField> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> - <reportElement key="textField-8" style="Report_Footer" x="1129" y="0" width="62" height="25" uuid="588bddf7-3d9c-4248-a3b4-d1a6ce9ee3c7"/> + <reportElement key="textField-8" style="Report_Footer" x="1213" y="0" width="62" height="25" uuid="588bddf7-3d9c-4248-a3b4-d1a6ce9ee3c7"/> <box leftPadding="2"/> <textElement> <font size="8"/> </textElement> <textFieldExpression><![CDATA[($F{DUE_DATE}== null ? " " : $F{DUE_DATE})]]></textFieldExpression> </textField> + <textField isStretchWithOverflow="true" isBlankWhenNull="true"> + <reportElement key="textField-18" style="Report_Footer" x="175" y="0" width="84" height="25" uuid="31445da0-76ab-4635-a3f9-c1ab47adbd55"/> + <box leftPadding="2"/> + <textElement> + <font size="8"/> + </textElement> + <textFieldExpression><![CDATA[$F{PAYMENT_METHOD}]]></textFieldExpression> + </textField> </band> </detail> <columnFooter> diff -r 8dabadcfeceb modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReportPDF.jrxml --- a/modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReportPDF.jrxml Tue Dec 08 04:01:29 2015 +0000 +++ b/modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReportPDF.jrxml Tue Mar 15 10:39:44 2016 +0100 @@ -1,4 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> +<!-- Created with Jaspersoft Studio version 6.0.0.final using JasperReports Library version 6.0.0 --> +<!-- 2016-03-11T16:07:41 --> <jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="PaymentReportPDF" pageWidth="842" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="782" leftMargin="30" rightMargin="30" topMargin="20" bottomMargin="20" uuid="a1c562a7-5994-47ae-b89e-6d598ae5c022"> <property name="ireport.scriptlethandling" value="0"/> <property name="ireport.encoding" value="UTF-8"/> @@ -382,6 +384,14 @@ <groupHeader> <band height="60" splitType="Stretch"> <staticText> + <reportElement key="staticText-5" style="Detail_Header" x="101" y="35" width="60" height="25" uuid="89db38b4-84b8-4853-aba9-020948be129d"/> + <box leftPadding="2"/> + <textElement verticalAlignment="Middle"> + <font fontName="DejaVu Sans" size="8" isBold="false"/> + </textElement> + <text><![CDATA[Payment Method]]></text> + </staticText> + <staticText> <reportElement key="staticText-2" style="Detail_Header" x="1" y="35" width="100" height="25" uuid="6ded83c1-5034-4d33-931c-092801ef633d"/> <box leftPadding="2"/> <textElement verticalAlignment="Middle"> @@ -390,7 +400,7 @@ <text><![CDATA[Business Partner]]></text> </staticText> <staticText> - <reportElement key="staticText-4" style="Detail_Header" x="285" y="35" width="65" height="25" uuid="d26a7aeb-43a1-433e-a686-959222707aa0"/> + <reportElement key="staticText-4" style="Detail_Header" x="344" y="35" width="50" height="25" uuid="d26a7aeb-43a1-433e-a686-959222707aa0"/> <box leftPadding="2"/> <textElement verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8" isBold="false"/> @@ -398,7 +408,15 @@ <text><![CDATA[Payment]]></text> </staticText> <staticText> - <reportElement key="staticText-5" style="Detail_Header" x="102" y="35" width="70" height="25" uuid="c5e07f95-fb36-426c-a383-de0060792657"/> + <reportElement key="staticText-5" style="Detail_Header" x="162" y="35" width="70" height="25" uuid="87dabf7a-0fce-4884-9648-e68ea63a13ff"/> + <box leftPadding="2"/> + <textElement verticalAlignment="Middle"> + <font fontName="DejaVu Sans" size="8" isBold="false"/> + </textElement> + <text><![CDATA[Payment Method]]></text> + </staticText> + <staticText> + <reportElement key="staticText-5" style="Detail_Header" x="162" y="35" width="70" height="25" uuid="c5e07f95-fb36-426c-a383-de0060792657"/> <box leftPadding="2"/> <textElement verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8" isBold="false"/> @@ -406,7 +424,7 @@ <text><![CDATA[Sales Person]]></text> </staticText> <staticText> - <reportElement key="staticText-6" style="Detail_Header" x="173" y="35" width="55" height="25" uuid="0166abd3-0aeb-4dea-857e-1e96f86db279"/> + <reportElement key="staticText-6" style="Detail_Header" x="233" y="35" width="55" height="25" uuid="0166abd3-0aeb-4dea-857e-1e96f86db279"/> <box leftPadding="2"/> <textElement verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8" isBold="false"/> @@ -414,7 +432,7 @@ <text><![CDATA[Invoice Number]]></text> </staticText> <staticText> - <reportElement key="staticText-7" style="Detail_Header" x="229" y="35" width="55" height="25" uuid="153e019b-b727-4499-b6f7-758a0ad35770"/> + <reportElement key="staticText-7" style="Detail_Header" x="289" y="35" width="55" height="25" uuid="153e019b-b727-4499-b6f7-758a0ad35770"/> <box leftPadding="2"/> <textElement textAlignment="Left" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8" isBold="false"/> @@ -422,7 +440,7 @@ <text><![CDATA[Invoice Date]]></text> </staticText> <staticText> - <reportElement key="staticText-8" style="Detail_Header" x="351" y="35" width="61" height="25" uuid="38b58e5b-238d-49b4-82fc-119173a21091"/> + <reportElement key="staticText-8" style="Detail_Header" x="394" y="35" width="52" height="25" uuid="38b58e5b-238d-49b4-82fc-119173a21091"/> <box leftPadding="2"/> <textElement textAlignment="Left" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8" isBold="false"/> @@ -430,28 +448,28 @@ <text><![CDATA[Expected Date]]></text> </staticText> <staticText> - <reportElement key="staticText-9" style="Detail_Header" x="412" y="35" width="33" height="25" uuid="9435ab33-40a4-4369-a94a-75cf3267bdb8"/> + <reportElement key="staticText-9" style="Detail_Header" x="446" y="35" width="33" height="25" uuid="9435ab33-40a4-4369-a94a-75cf3267bdb8"/> <textElement textAlignment="Center" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8" isBold="false"/> </textElement> <text><![CDATA[PlannedDSO]]></text> </staticText> <staticText> - <reportElement key="staticText-10" style="Detail_Header" x="446" y="35" width="33" height="25" uuid="7d4a0f1e-1aa3-402e-9d09-fcd7a560ab18"/> + <reportElement key="staticText-10" style="Detail_Header" x="480" y="35" width="33" height="25" uuid="7d4a0f1e-1aa3-402e-9d09-fcd7a560ab18"/> <textElement textAlignment="Center" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8" isBold="false"/> </textElement> <text><![CDATA[CurrentDSO]]></text> </staticText> <staticText> - <reportElement key="staticText-11" style="Detail_Header" x="480" y="35" width="36" height="25" uuid="7959b859-3ba3-4060-92b1-3ca4aea9a8b0"/> + <reportElement key="staticText-11" style="Detail_Header" x="514" y="35" width="36" height="25" uuid="7959b859-3ba3-4060-92b1-3ca4aea9a8b0"/> <textElement textAlignment="Center" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8" isBold="false"/> </textElement> <text><![CDATA[Overdue]]></text> </staticText> <staticText> - <reportElement key="staticText-13" style="Detail_Header" x="654" y="35" width="75" height="25" uuid="b4e5ab52-1feb-4952-9af5-434c908c8ee9"/> + <reportElement key="staticText-13" style="Detail_Header" x="680" y="35" width="49" height="25" uuid="b4e5ab52-1feb-4952-9af5-434c908c8ee9"/> <box rightPadding="2"/> <textElement textAlignment="Right"> <font fontName="DejaVu Sans" size="8" isBold="false"/> @@ -467,7 +485,7 @@ <text><![CDATA[Base Currency]]></text> </staticText> <staticText> - <reportElement key="staticText-15" style="Detail_Header" x="517" y="35" width="75" height="25" uuid="94678790-4aa7-4975-936c-59724cea4fc4"/> + <reportElement key="staticText-15" style="Detail_Header" x="551" y="35" width="68" height="25" uuid="94678790-4aa7-4975-936c-59724cea4fc4"/> <box rightPadding="2"/> <textElement textAlignment="Right"> <font fontName="DejaVu Sans" size="8" isBold="false"/> @@ -475,7 +493,7 @@ <text><![CDATA[Transactional Amount]]></text> </staticText> <staticText> - <reportElement key="staticText-16" style="Detail_Header" x="593" y="35" width="60" height="25" uuid="76bd692c-f062-49de-b4cd-4e31b1f4a713"/> + <reportElement key="staticText-16" style="Detail_Header" x="620" y="35" width="60" height="25" uuid="76bd692c-f062-49de-b4cd-4e31b1f4a713"/> <box leftPadding="2"/> <textElement textAlignment="Center"> <font fontName="DejaVu Sans" size="8" isBold="false"/> @@ -496,37 +514,37 @@ <reportElement key="line-37" style="Report_Footer" stretchType="RelativeToBandHeight" x="0" y="35" width="1" height="25" uuid="0617e110-f967-4059-a9da-aa22d33689c8"/> </line> <line> - <reportElement key="line-38" style="Report_Footer" stretchType="RelativeToBandHeight" x="101" y="35" width="1" height="25" uuid="3cf51cd2-2dfc-4f5e-8c5e-d9766ef3fcac"/> + <reportElement key="line-38" style="Report_Footer" stretchType="RelativeToBandHeight" x="161" y="35" width="1" height="25" uuid="3cf51cd2-2dfc-4f5e-8c5e-d9766ef3fcac"/> </line> <line> - <reportElement key="line-39" style="Report_Footer" stretchType="RelativeToBandHeight" x="172" y="35" width="1" height="25" uuid="6493541b-b5cc-4cb0-9c90-36e3dea808ba"/> + <reportElement key="line-39" style="Report_Footer" stretchType="RelativeToBandHeight" x="232" y="35" width="1" height="25" uuid="6493541b-b5cc-4cb0-9c90-36e3dea808ba"/> </line> <line> - <reportElement key="line-40" style="Report_Footer" stretchType="RelativeToBandHeight" x="228" y="35" width="1" height="25" uuid="300ede3c-5c25-43b6-be75-b5911390a1a9"/> + <reportElement key="line-40" style="Report_Footer" stretchType="RelativeToBandHeight" x="288" y="35" width="1" height="25" uuid="300ede3c-5c25-43b6-be75-b5911390a1a9"/> </line> <line> - <reportElement key="line-41" style="Report_Footer" stretchType="RelativeToBandHeight" x="284" y="35" width="1" height="25" uuid="487d171b-6290-4ca3-8b8d-140bb14762b6"/> + <reportElement key="line-41" style="Report_Footer" stretchType="RelativeToBandHeight" x="344" y="35" width="1" height="25" uuid="487d171b-6290-4ca3-8b8d-140bb14762b6"/> </line> <line> - <reportElement key="line-42" style="Report_Footer" stretchType="RelativeToBandHeight" x="350" y="35" width="1" height="25" uuid="99d486ee-3925-47c0-a646-c0cb6c4f817c"/> + <reportElement key="line-42" style="Report_Footer" stretchType="RelativeToBandHeight" x="394" y="35" width="1" height="25" uuid="99d486ee-3925-47c0-a646-c0cb6c4f817c"/> </line> <line> - <reportElement key="line-43" style="Report_Footer" stretchType="RelativeToBandHeight" x="412" y="35" width="1" height="25" uuid="00e5626b-63a3-4ca5-b328-33268ff7ddcd"/> + <reportElement key="line-43" style="Report_Footer" stretchType="RelativeToBandHeight" x="446" y="35" width="1" height="25" uuid="00e5626b-63a3-4ca5-b328-33268ff7ddcd"/> </line> <line> - <reportElement key="line-44" style="Report_Footer" stretchType="RelativeToBandHeight" x="445" y="35" width="1" height="25" uuid="f7e5b742-21f6-42ec-be4b-2d6f92fbd396"/> + <reportElement key="line-44" style="Report_Footer" stretchType="RelativeToBandHeight" x="479" y="35" width="1" height="25" uuid="f7e5b742-21f6-42ec-be4b-2d6f92fbd396"/> </line> <line> - <reportElement key="line-45" style="Report_Footer" stretchType="RelativeToBandHeight" x="479" y="35" width="1" height="25" uuid="0eaf78ab-cc35-49bf-bb50-19463785448c"/> + <reportElement key="line-45" style="Report_Footer" stretchType="RelativeToBandHeight" x="513" y="35" width="1" height="25" uuid="0eaf78ab-cc35-49bf-bb50-19463785448c"/> </line> <line> - <reportElement key="line-46" style="Report_Footer" stretchType="RelativeToBandHeight" x="516" y="35" width="1" height="25" uuid="fced94e7-c104-4403-b2c3-c394987465e9"/> + <reportElement key="line-46" style="Report_Footer" stretchType="RelativeToBandHeight" x="550" y="35" width="1" height="25" uuid="fced94e7-c104-4403-b2c3-c394987465e9"/> </line> <line> - <reportElement key="line-47" style="Report_Footer" stretchType="RelativeToBandHeight" x="592" y="35" width="1" height="25" uuid="9acdcfd9-698b-46da-8ab2-d0e64e02f895"/> + <reportElement key="line-47" style="Report_Footer" stretchType="RelativeToBandHeight" x="619" y="35" width="1" height="25" uuid="9acdcfd9-698b-46da-8ab2-d0e64e02f895"/> </line> <line> - <reportElement key="line-48" style="Report_Footer" stretchType="RelativeToBandHeight" x="653" y="35" width="1" height="25" uuid="ea0359a3-2df7-4587-9838-02781d918a66"/> + <reportElement key="line-48" style="Report_Footer" stretchType="RelativeToBandHeight" x="680" y="35" width="1" height="25" uuid="ea0359a3-2df7-4587-9838-02781d918a66"/> </line> <line> <reportElement key="line-49" style="Report_Footer" stretchType="RelativeToBandHeight" x="729" y="35" width="1" height="25" uuid="928e123d-218c-47e1-bd61-ce9bbee504e7"/> @@ -541,6 +559,9 @@ </textElement> <text><![CDATA[Status:]]></text> </staticText> + <line> + <reportElement key="line-38" style="Report_Footer" stretchType="RelativeToBandHeight" x="100" y="35" width="1" height="25" uuid="e13c49f0-6c2d-42d1-b579-8aeab16ddc29"/> + </line> </band> </groupHeader> <groupFooter> @@ -740,6 +761,22 @@ <band height="25" splitType="Stretch"> <frame> <reportElement key="frame-1" style="Detail_Line" x="0" y="0" width="782" height="25" uuid="515e87db-984c-4145-ae86-8bc24b84bdab"/> + <textField isBlankWhenNull="false"> + <reportElement key="textField-4" style="Report_Footer" x="344" y="0" width="50" height="25" uuid="2ab054f6-a64e-4d4b-b0a7-bc580e10dc18"/> + <box leftPadding="2"/> + <textElement> + <font fontName="DejaVu Sans" size="8"/> + </textElement> + <textFieldExpression><![CDATA[($F{PAYMENT}==null ? " " : $F{PAYMENT})]]></textFieldExpression> + </textField> + <textField isBlankWhenNull="false"> + <reportElement key="textField-5" style="Report_Footer" x="100" y="0" width="62" height="25" uuid="adb6b64b-0f2a-499e-8710-6f29822c6164"/> + <box leftPadding="2"/> + <textElement> + <font fontName="DejaVu Sans" size="8"/> + </textElement> + <textFieldExpression><![CDATA[$F{PAYMENT_METHOD}]]></textFieldExpression> + </textField> </frame> <line> <reportElement key="line-1" style="Report_Footer" stretchType="RelativeToBandHeight" x="0" y="0" width="1" height="25" uuid="32dc1ead-6253-407e-b2ae-7dc0971b9aa1"/> @@ -753,15 +790,7 @@ <textFieldExpression><![CDATA[$F{BPARTNER}]]></textFieldExpression> </textField> <textField isBlankWhenNull="false"> - <reportElement key="textField-4" style="Report_Footer" x="285" y="0" width="64" height="25" uuid="2ab054f6-a64e-4d4b-b0a7-bc580e10dc18"/> - <box leftPadding="2"/> - <textElement> - <font fontName="DejaVu Sans" size="8"/> - </textElement> - <textFieldExpression><![CDATA[($F{PAYMENT}==null ? " " : $F{PAYMENT})]]></textFieldExpression> - </textField> - <textField isBlankWhenNull="false"> - <reportElement key="textField-5" style="Report_Footer" x="102" y="0" width="69" height="25" uuid="00a5f0e4-442b-4e21-8f17-430b289d5c99"/> + <reportElement key="textField-5" style="Report_Footer" x="162" y="0" width="69" height="25" uuid="00a5f0e4-442b-4e21-8f17-430b289d5c99"/> <box leftPadding="2"/> <textElement> <font fontName="DejaVu Sans" size="8"/> @@ -769,7 +798,7 @@ <textFieldExpression><![CDATA[($F{SALES_PERSON}==null ? " " : $F{SALES_PERSON})]]></textFieldExpression> </textField> <textField isBlankWhenNull="false"> - <reportElement key="textField-6" style="Report_Footer" x="173" y="0" width="55" height="25" uuid="a36b61b3-0742-4b2e-8ecd-5b2842f390f1"/> + <reportElement key="textField-6" style="Report_Footer" x="233" y="0" width="55" height="25" uuid="a36b61b3-0742-4b2e-8ecd-5b2842f390f1"/> <box leftPadding="2"/> <textElement> <font fontName="DejaVu Sans" size="8"/> @@ -777,7 +806,7 @@ <textFieldExpression><![CDATA[($F{INVOICE_NUMBER}==null ? " " : $F{INVOICE_NUMBER}.toString())]]></textFieldExpression> </textField> <textField isBlankWhenNull="false"> - <reportElement key="textField-7" style="Report_Footer" x="229" y="0" width="54" height="25" uuid="62b42099-1dfd-4cca-b9a5-7ecf0fda327f"/> + <reportElement key="textField-7" style="Report_Footer" x="289" y="0" width="54" height="25" uuid="62b42099-1dfd-4cca-b9a5-7ecf0fda327f"/> <box leftPadding="2"/> <textElement> <font fontName="DejaVu Sans" size="8"/> @@ -785,7 +814,7 @@ <textFieldExpression><![CDATA[($F{INVOICE_DATE}== null ? " " : $F{INVOICE_DATE})]]></textFieldExpression> </textField> <textField isBlankWhenNull="false"> - <reportElement key="textField-8" style="Report_Footer" x="350" y="0" width="62" height="25" uuid="c73189e0-f12a-4852-8b9f-7d58a44497c6"/> + <reportElement key="textField-8" style="Report_Footer" x="395" y="0" width="51" height="25" uuid="c73189e0-f12a-4852-8b9f-7d58a44497c6"/> <box leftPadding="2"/> <textElement> <font fontName="DejaVu Sans" size="8"/> @@ -793,28 +822,28 @@ <textFieldExpression><![CDATA[($F{EXPECTED_DATE}== null ? " " : $F{EXPECTED_DATE})]]></textFieldExpression> </textField> <textField isBlankWhenNull="false"> - <reportElement key="textField-9" style="Report_Footer" x="412" y="0" width="33" height="25" uuid="fc9250c8-954f-428c-8f6b-abda6b409d11"/> + <reportElement key="textField-9" style="Report_Footer" x="446" y="0" width="33" height="25" uuid="fc9250c8-954f-428c-8f6b-abda6b409d11"/> <textElement textAlignment="Center"> <font fontName="DejaVu Sans" size="8"/> </textElement> <textFieldExpression><![CDATA[($F{PLANNED_DSO}== null ? " " : $F{PLANNED_DSO}.toString())]]></textFieldExpression> </textField> <textField isBlankWhenNull="false"> - <reportElement key="textField-10" style="Report_Footer" x="446" y="0" width="33" height="25" uuid="b3d660d0-b2db-4680-b6d6-ce34183eb1a5"/> + <reportElement key="textField-10" style="Report_Footer" x="480" y="0" width="33" height="25" uuid="b3d660d0-b2db-4680-b6d6-ce34183eb1a5"/> <textElement textAlignment="Center"> <font fontName="DejaVu Sans" size="8"/> </textElement> <textFieldExpression><![CDATA[($F{CURRENT_DSO}== null ? " " : $F{CURRENT_DSO}.toString())]]></textFieldExpression> </textField> <textField isBlankWhenNull="false"> - <reportElement key="textField-11" style="Report_Footer" x="480" y="0" width="36" height="25" uuid="3af350b3-7a97-4835-b03f-03e2a671b54b"/> + <reportElement key="textField-11" style="Report_Footer" x="514" y="0" width="36" height="25" uuid="3af350b3-7a97-4835-b03f-03e2a671b54b"/> <textElement textAlignment="Center"> <font fontName="DejaVu Sans" size="8"/> </textElement> <textFieldExpression><![CDATA[($F{OVERDUE}== null ? " " : $F{OVERDUE}.toString())]]></textFieldExpression> </textField> <textField isBlankWhenNull="false"> - <reportElement key="textField-13" style="Report_Footer" x="654" y="0" width="74" height="25" uuid="c7897cb8-44f9-4b17-882d-d72f20913658"/> + <reportElement key="textField-13" style="Report_Footer" x="680" y="0" width="48" height="25" uuid="c7897cb8-44f9-4b17-882d-d72f20913658"/> <box rightPadding="2"/> <textElement textAlignment="Right"> <font fontName="DejaVu Sans" size="8"/> @@ -829,7 +858,7 @@ <textFieldExpression><![CDATA[$F{BASE_CURRENCY}]]></textFieldExpression> </textField> <textField isBlankWhenNull="false"> - <reportElement key="textField-15" style="Report_Footer" x="517" y="0" width="74" height="25" uuid="d63322e2-7be2-4ee5-9549-df6e0220cb88"/> + <reportElement key="textField-15" style="Report_Footer" x="551" y="0" width="67" height="25" uuid="d63322e2-7be2-4ee5-9549-df6e0220cb88"/> <box rightPadding="2"/> <textElement textAlignment="Right"> <font fontName="DejaVu Sans" size="8"/> @@ -837,44 +866,44 @@ <textFieldExpression><![CDATA[$P{NUMBERFORMAT}.format($F{TRANS_AMOUNT}).toString() + " "]]></textFieldExpression> </textField> <textField isBlankWhenNull="false"> - <reportElement key="textField-16" style="Report_Footer" x="593" y="0" width="60" height="25" uuid="2d3d9724-a086-4616-a115-c81b3c23d427"/> + <reportElement key="textField-16" style="Report_Footer" x="620" y="0" width="60" height="25" uuid="2d3d9724-a086-4616-a115-c81b3c23d427"/> <textElement textAlignment="Center"> <font fontName="DejaVu Sans" size="8"/> </textElement> <textFieldExpression><![CDATA[$F{TRANS_CURRENCY}]]></textFieldExpression> </textField> <line> - <reportElement key="line-5" style="Report_Footer" stretchType="RelativeToBandHeight" x="101" y="0" width="1" height="25" uuid="2f7ac113-7f29-4fc2-b064-185ccf45b337"/> + <reportElement key="line-5" style="Report_Footer" stretchType="RelativeToBandHeight" x="161" y="0" width="1" height="25" uuid="2f7ac113-7f29-4fc2-b064-185ccf45b337"/> </line> <line> - <reportElement key="line-7" style="Report_Footer" stretchType="RelativeToBandHeight" x="172" y="0" width="1" height="25" uuid="38a8f536-fa29-4272-aa12-b19c285d9023"/> + <reportElement key="line-7" style="Report_Footer" stretchType="RelativeToBandHeight" x="232" y="0" width="1" height="25" uuid="38a8f536-fa29-4272-aa12-b19c285d9023"/> </line> <line> - <reportElement key="line-8" style="Report_Footer" stretchType="RelativeToBandHeight" x="284" y="0" width="1" height="25" uuid="a6d4ef1b-4f42-41b3-87f8-0eaf9226f6ed"/> + <reportElement key="line-8" style="Report_Footer" stretchType="RelativeToBandHeight" x="344" y="0" width="1" height="25" uuid="a6d4ef1b-4f42-41b3-87f8-0eaf9226f6ed"/> </line> <line> - <reportElement key="line-9" style="Report_Footer" stretchType="RelativeToBandHeight" x="228" y="0" width="1" height="25" uuid="a4ecb202-e815-47a4-bd67-dc2b168db0fe"/> + <reportElement key="line-9" style="Report_Footer" stretchType="RelativeToBandHeight" x="288" y="0" width="1" height="25" uuid="a4ecb202-e815-47a4-bd67-dc2b168db0fe"/> </line> <line> - <reportElement key="line-10" style="Report_Footer" stretchType="RelativeToBandHeight" x="350" y="0" width="1" height="25" uuid="4a1b3a35-d44a-480e-bf67-7d94694adfed"/> + <reportElement key="line-10" style="Report_Footer" stretchType="RelativeToBandHeight" x="394" y="0" width="1" height="25" uuid="4a1b3a35-d44a-480e-bf67-7d94694adfed"/> </line> <line> - <reportElement key="line-11" style="Report_Footer" stretchType="RelativeToBandHeight" x="445" y="0" width="1" height="25" uuid="b0b3b117-16d7-4a67-ba16-068912ab8487"/> + <reportElement key="line-11" style="Report_Footer" stretchType="RelativeToBandHeight" x="479" y="0" width="1" height="25" uuid="b0b3b117-16d7-4a67-ba16-068912ab8487"/> </line> <line> - <reportElement key="line-12" style="Report_Footer" stretchType="RelativeToBandHeight" x="479" y="0" width="1" height="25" uuid="500d239e-fc2a-4e14-89e2-dce686e7aa91"/> + <reportElement key="line-12" style="Report_Footer" stretchType="RelativeToBandHeight" x="513" y="0" width="1" height="25" uuid="500d239e-fc2a-4e14-89e2-dce686e7aa91"/> </line> <line> - <reportElement key="line-13" style="Report_Footer" stretchType="RelativeToBandHeight" x="412" y="0" width="1" height="25" uuid="f189e17e-54e8-4bc4-a8eb-4723b622c6a3"/> + <reportElement key="line-13" style="Report_Footer" stretchType="RelativeToBandHeight" x="446" y="0" width="1" height="25" uuid="f189e17e-54e8-4bc4-a8eb-4723b622c6a3"/> </line> <line> - <reportElement key="line-15" style="Report_Footer" stretchType="RelativeToBandHeight" x="516" y="0" width="1" height="25" uuid="fb94af81-42d3-4c25-a520-b4721b1378d0"/> + <reportElement key="line-15" style="Report_Footer" stretchType="RelativeToBandHeight" x="550" y="0" width="1" height="25" uuid="fb94af81-42d3-4c25-a520-b4721b1378d0"/> </line> <line> - <reportElement key="line-17" style="Report_Footer" stretchType="RelativeToBandHeight" x="592" y="0" width="1" height="25" uuid="9534ff26-3a5b-4521-b034-13c4b00331b8"/> + <reportElement key="line-17" style="Report_Footer" stretchType="RelativeToBandHeight" x="619" y="0" width="1" height="25" uuid="9534ff26-3a5b-4521-b034-13c4b00331b8"/> </line> <line> - <reportElement key="line-18" style="Report_Footer" stretchType="RelativeToBandHeight" x="653" y="0" width="1" height="25" uuid="f2f10c62-ea53-499c-864b-fcbe63f0992b"/> + <reportElement key="line-18" style="Report_Footer" stretchType="RelativeToBandHeight" x="680" y="0" width="1" height="25" uuid="f2f10c62-ea53-499c-864b-fcbe63f0992b"/> </line> <line> <reportElement key="line-19" style="Report_Footer" stretchType="RelativeToBandHeight" x="729" y="0" width="1" height="25" uuid="3b36db6e-f9df-4cf5-91f2-8f746191d3ea"/> @@ -882,6 +911,9 @@ <line> <reportElement key="line-25" style="Report_Footer" stretchType="RelativeToBandHeight" x="781" y="0" width="1" height="25" uuid="2a846697-6273-4eb2-8e9c-419b04aa185f"/> </line> + <line> + <reportElement key="line-5" style="Report_Footer" stretchType="RelativeToBandHeight" x="100" y="0" width="1" height="25" uuid="512581cb-f7a7-4641-9047-00c04d17385c"/> + </line> </band> </detail> <columnFooter> | |||||||
![]() |
|
![]() |
|
(0085789) dmiguelez (viewer) 2016-04-20 19:18 |
Test Plan: Open Payment Report Window Set filters Organization: F&B EspaƱa Document Date From: 01-01-2016 Document Date To:31-12-2016 Launch report Check that in the output it is possible to see the Payment Method Check that all rows are correctly aligned Check xls and PDF outputs too (everything should be aligned) Add grouping criteria: Business Partner Launch report Check output for html, xls and PDF (everything perfectly aligned) |
(0085791) hgbot (developer) 2016-04-20 19:23 |
Repository: erp/devel/pi Changeset: f7808366cd8bd11cb448831324b655952f15240d Author: David Miguelez <david.miguelez <at> openbravo.com> Date: Tue Apr 19 13:47:59 2016 +0200 URL: http://code.openbravo.com/erp/devel/pi/rev/f7808366cd8bd11cb448831324b655952f15240d [^] Fixes Issue 18271. Adds payment method field to Report output. --- M modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReport.html M modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReport.xml M modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReportExcel.jrxml M modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReportPDF.jrxml --- |
(0085792) hgbot (developer) 2016-04-20 19:23 |
Repository: erp/devel/pi Changeset: a4c45ff02eb96de46eb7a37371f872935d8fd2e7 Author: David Miguelez <david.miguelez <at> openbravo.com> Date: Wed Apr 20 09:56:17 2016 +0200 URL: http://code.openbravo.com/erp/devel/pi/rev/a4c45ff02eb96de46eb7a37371f872935d8fd2e7 [^] Related to Issue 18271. Related to Issue 18273. Export of AD_TEXTINTERFACES. --- M modules/org.openbravo.financial.paymentreport/src-db/database/sourcedata/AD_TEXTINTERFACES.xml --- |
(0085794) dmiguelez (viewer) 2016-04-20 19:31 |
Code Review + Testing Ok |
(0085799) hgbot (developer) 2016-04-20 19:59 |
Repository: erp/devel/pi Changeset: 112bc5f8f2c60fb65f6f779fa0c615396220fd06 Author: David Miguelez <david.miguelez <at> openbravo.com> Date: Wed Apr 20 19:58:48 2016 +0200 URL: http://code.openbravo.com/erp/devel/pi/rev/112bc5f8f2c60fb65f6f779fa0c615396220fd06 [^] Related to Issue 18273, related to Issue 18271. Fixes extra characters in html. --- M modules/org.openbravo.financial.paymentreport/src/org/openbravo/financial/paymentreport/erpCommon/ad_reports/PaymentReport.html --- |
(0087468) hudsonbot (viewer) 2016-06-17 19:37 |
A changeset related to this issue has been promoted main and to the Central Repository, after passing a series of tests. Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/0dc7be081b1c [^] Maturity status: Test |
(0087469) hudsonbot (viewer) 2016-06-17 19:37 |
A changeset related to this issue has been promoted main and to the Central Repository, after passing a series of tests. Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/0dc7be081b1c [^] Maturity status: Test |
(0087472) hudsonbot (viewer) 2016-06-17 19:37 |
A changeset related to this issue has been promoted main and to the Central Repository, after passing a series of tests. Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/0dc7be081b1c [^] Maturity status: Test |
![]() |
|||
Date Modified | Username | Field | Change |
2011-08-12 10:47 | ioritzCia | New Issue | |
2011-08-12 10:47 | ioritzCia | Assigned To | => ioritzCia |
2011-08-12 10:47 | ioritzCia | Web browser | => Mozilla Firefox |
2011-08-12 10:47 | ioritzCia | Modules | => Payment Report |
2011-08-12 10:47 | ioritzCia | OBNetwork customer | => Yes |
2011-08-12 10:47 | ioritzCia | Support ticket | => 12356 |
2011-08-12 10:47 | ioritzCia | Resolution time | => 1319580000 |
2011-08-12 10:48 | ioritzCia | Web browser | Mozilla Firefox => Mozilla Firefox |
2011-08-12 10:48 | ioritzCia | Resolution time | 1319580000 => |
2011-08-12 10:58 | ioritzCia | Issue Monitored: networkb | |
2016-03-15 10:48 | ngarcia | File Added: PaymentReport18271_15Q3_4.diff | |
2016-03-15 10:54 | heccam | Issue Monitored: heccam | |
2016-04-20 19:18 | dmiguelez | Note Added: 0085789 | |
2016-04-20 19:23 | hgbot | Checkin | |
2016-04-20 19:23 | hgbot | Note Added: 0085791 | |
2016-04-20 19:23 | hgbot | Status | new => resolved |
2016-04-20 19:23 | hgbot | Resolution | open => fixed |
2016-04-20 19:23 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/f7808366cd8bd11cb448831324b655952f15240d [^] |
2016-04-20 19:23 | hgbot | Checkin | |
2016-04-20 19:23 | hgbot | Note Added: 0085792 | |
2016-04-20 19:31 | dmiguelez | Review Assigned To | => dmiguelez |
2016-04-20 19:31 | dmiguelez | Note Added: 0085794 | |
2016-04-20 19:31 | dmiguelez | Status | resolved => closed |
2016-04-20 19:59 | hgbot | Checkin | |
2016-04-20 19:59 | hgbot | Note Added: 0085799 | |
2016-06-17 19:37 | hudsonbot | Checkin | |
2016-06-17 19:37 | hudsonbot | Note Added: 0087468 | |
2016-06-17 19:37 | hudsonbot | Checkin | |
2016-06-17 19:37 | hudsonbot | Note Added: 0087469 | |
2016-06-17 19:37 | hudsonbot | Checkin | |
2016-06-17 19:37 | hudsonbot | Note Added: 0087472 |
Copyright © 2000 - 2009 MantisBT Group |