Jump to content
We've recently updated our Privacy Statement, available here ×

VORiAND

Members
  • Posts

    15
  • Joined

  • Last visited

VORiAND's Achievements

Apprentice

Apprentice (3/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

0

Reputation

  1. Okay, so it's also NOT the adapter, I tried with the 1. schema and it's blank there too. So it must be something with the query itself (or with the parameter formats, execution time...?), because in MySQL Workbench the results are there.
  2. Thank you, I already fixed that, but this is not the problem (sadly...). I think the main problem is with the ADAPTER itself. I have 10 schemas in my database and right now I want to print this report from the 2. schema. If I create one adapter for this schema is Jaspersoft Studio, I get the results in preview, no problem. But if I want to print this report from my application I get one blank page. I set the connetion (from the application) the same way as for my other 20-30 reports, so I don't understand what is here wrong: JasperFillManager.fillReport(url.getPath(), parameters, connection); The connection gets the right schema, I debugged that.
  3. Hi! I'm a little confused. Right now my Jasper report is giving me empty document with the same parameters as my native SQL query and in MySQL Wokrbench I see the result but in Jasper report don't. This is my native query (removed two CASE fields for the better transparency): select f.FORM_NR, p.NAME, p.MEASURING_UNIT, p.EAN, p.ITEM_NR, IF(f.FORM_TYPE = 'InventoryList', log.QUANTITY_DIFF, IF(f.DIRECTION = 2, fi.QUANTITY, -1 * fi.QUANTITY)) AS VAL_QUANTITY, IF(IF(f.FORM_TYPE = 'InventoryList', log.QUANTITY_DIFF, fi.QUANTITY)>0,fi.GROSS_MONEY,0) as VAL_GROSS_MONEY, f.FORM_DATE, f.FORM_TYPE, f.DIRECTION, pd.NAME as PARTNER_NAME, ad.CITYfrom inventory_log log, partner_data pd, address_data ad, product p join form_item fi on p.id = fi.PRODUCT_ID join form f on fi.FORM_ID = f.ID where p.id = 34413 AND fi.ID IN (SELECT DISTINCT l.FORM_ITEM_ID FROM inventory_log l, inventory_item i, product p WHERE l.INVENTORY_ITEM_ID = i.ID AND i.PRODUCT_ID = p.ID AND p.ID = 34413 )AND log.ID IN (SELECT MAX(l.ID) FROM inventory_log l, inventory_item i WHERE l.FORM_ITEM_ID = fi.ID AND i.PRODUCT_ID = 34413)AND f.PARTNER_DATA_ID = pd.IDAND f.ADDRESS_DATA_ID = ad.IDAND f.status > 1 AND (f.FORM_DATE BETWEEN '2019-05-01' AND '2019-07-13' )order by f.FORM_DATE[/code]and this is the query in Jasper report (removed two CASE fields for the better transparency): select f.FORM_NR, p.NAME, p.MEASURING_UNIT, p.EAN, p.ITEM_NR, IF(f.FORM_TYPE = 'InventoryList', log.QUANTITY_DIFF, IF(f.DIRECTION = 2, fi.QUANTITY, -1 * fi.QUANTITY)) AS VAL_QUANTITY, IF(IF(f.FORM_TYPE = 'InventoryList', log.QUANTITY_DIFF, fi.QUANTITY)>0,fi.GROSS_MONEY,0) as VAL_GROSS_MONEY, f.FORM_DATE, f.FORM_TYPE, f.DIRECTION, pd.NAME as PARTNER_NAME, ad.CITYfrom inventory_log log, partner_data pd, address_data ad, product p join form_item fi on p.id = fi.PRODUCT_ID join form f on fi.FORM_ID = f.ID where p.id = $P!{product_id} AND fi.ID IN (SELECT DISTINCT l.FORM_ITEM_ID FROM inventory_log l, inventory_item i, product p WHERE l.INVENTORY_ITEM_ID = i.ID AND i.PRODUCT_ID = p.ID AND p.ID = $P!{product_id} )AND log.ID IN (SELECT MAX(l.ID) FROM inventory_log l, inventory_item i WHERE l.FORM_ITEM_ID = fi.ID AND i.ID = $P!{product_id} )AND f.PARTNER_DATA_ID = pd.IDAND f.ADDRESS_DATA_ID = ad.IDAND f.status > 1 AND (f.FORM_DATE BETWEEN $P{start_date} AND $P{end_date} )order by f.FORM_DATE[/code]This is the complete jrxml: <p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #c814c8"><?xml version="1.0" encoding="UTF-8"?></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #800000"><!-- Created with Jaspersoft Studio version 6.5.1.final using JasperReports Library version 6.5.1<span> </span>--></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000080"><jasperReport</span><span style="color: #000000"> </span><span style="color: #000080">xmlns=</span>"http://jasperreports.sourceforge.net/jasperreports"<span style="color: #000000"> </span><span style="color: #000080">xmlns:xsi=</span>"http://www.w3.org/2001/XMLSchema-instance"<span style="color: #000000"> </span><span style="color: #000080">xsi:schemaLocation=</span>"http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd"<span style="color: #000000"> </span><span style="color: #000080">name=</span>"product_history"<span style="color: #000000"> </span><span style="color: #000080">pageWidth=</span>"595"<span style="color: #000000"> </span><span style="color: #000080">pageHeight=</span>"842"<span style="color: #000000"> </span><span style="color: #000080">columnWidth=</span>"555"<span style="color: #000000"> </span><span style="color: #000080">leftMargin=</span>"20"<span style="color: #000000"> </span><span style="color: #000080">rightMargin=</span>"20"<span style="color: #000000"> </span><span style="color: #000080">topMargin=</span>"20"<span style="color: #000000"> </span><span style="color: #000080">bottomMargin=</span>"20"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"ed1e2ef5-a2cb-4827-b94b-2d2042b7ceae"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.data.sql.tables"<span style="color: #000000"> </span><span style="color: #000080">value=</span>""<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.data.defaultdataadapter"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"MANUFACT_ADAPTER"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><subDataset</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"initial_stocks"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"0167a744-a508-40cd-bdd1-1b3280f376e8"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.data.defaultdataadapter"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"MANUFACT_ADAPTER"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.data.sql.tables"<span style="color: #000000"> </span><span style="color: #000080">value=</span>""<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><parameter</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"product_id"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><parameter</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"start_date"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.util.Date"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><queryString></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #008080"><![CDATA[</span>SELECT SUM((l.QUANTITY_DIFF * -1)/1000) as "initial_stocks" , MAX(p.MEASURING_UNIT) as "MEASURING_UNIT"</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">FROM inventory_log l, inventory_item i, product p, form f, form_item fi</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">WHERE l.INVENTORY_ITEM_ID = i.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND l.FORM_ITEM_ID = fi.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND fi.FORM_ID = f.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND i.PRODUCT_ID = p.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND ( f.FORM_DATE <<span> </span>$P{start_date} )</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND p.ID = $P{product_id}<span style="color: #008080">]]></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></queryString></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"initial_stocks"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.math.BigDecimal"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"initial_stocks"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"MEASURING_UNIT"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"MEASURING_UNIT"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></subDataset></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><subDataset</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"summary"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"1f6c5e6b-1341-4a2f-9949-597cf79976b5"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.data.sql.tables"<span style="color: #000000"> </span><span style="color: #000080">value=</span>""<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.data.sql.SQLQueryDesigner.sash.w1"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"357"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.data.sql.SQLQueryDesigner.sash.w2"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"633"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.data.defaultdataadapter"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"MANUFACT_ADAPTER"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><parameter</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"product_id"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><parameter</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"start_date"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.util.Date"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><parameter</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"date_end"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.util.Date"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><queryString<span style="color: #000000"> </span>language=<span style="color: #008000">"SQL"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #008080"><![CDATA[</span>select SUM(IF(f.FORM_TYPE = 'InventoryList', log.QUANTITY_DIFF/1000, IF(f.DIRECTION = 2, fi.QUANTITY/1000, -1 *<span> </span>fi.QUANTITY/1000))) as "sum", MAX(p.MEASURING_UNIT) as "MEASURING_UNIT"</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">from inventory_log log, partner_data pd, address_data ad, product p </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"> join form_item fi on p.id = fi.PRODUCT_ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"> join form f on fi.FORM_ID = f.ID </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">where p.id = <span> </span>$P{product_id} </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND fi.ID IN (SELECT DISTINCT l.FORM_ITEM_ID FROM inventory_log l, inventory_item i, product p </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>WHERE l.INVENTORY_ITEM_ID = i.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>AND i.PRODUCT_ID = p.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>AND p.ID =<span> </span>$P{product_id}<span> </span>)</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND log.ID IN (SELECT MAX(l.ID) FROM inventory_log l, inventory_item i </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>WHERE l.FORM_ITEM_ID = fi.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>AND i.PRODUCT_ID = $P{product_id} )</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND f.PARTNER_DATA_ID = pd.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND f.ADDRESS_DATA_ID = ad.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND f.status > 1 </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND (f.FORM_DATE BETWEEN<span> </span>$P{start_date}<span> </span>AND<span> </span>$P{date_end} )</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">order by f.FORM_DATE<span style="color: #008080">]]></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></queryString></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"sum"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.math.BigDecimal"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"sum"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"MEASURING_UNIT"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"MEASURING_UNIT"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></subDataset></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><parameter</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"product_id"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.Integer"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><parameterDescription><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">]]></span></parameterDescription></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></parameter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><parameter</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"end_date"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.util.Date"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><parameter</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"start_date"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.util.Date"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><queryString></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span><![CDATA[select<span> </span>f.FORM_NR, p.NAME, p.MEASURING_UNIT, p.EAN, p.ITEM_NR, IF(f.FORM_TYPE = 'InventoryList', log.QUANTITY_DIFF, IF(f.DIRECTION = 2, fi.QUANTITY, -1 *<span> </span>fi.QUANTITY)) AS VAL_QUANTITY, IF(IF(f.FORM_TYPE = 'InventoryList', log.QUANTITY_DIFF, fi.QUANTITY)>0,fi.GROSS_MONEY,0) as VAL_GROSS_MONEY, f.FORM_DATE, f.FORM_TYPE, f.DIRECTION, pd.NAME as PARTNER_NAME, ad.CITY,</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">case f.FORM_TYPE </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>when 'Quotation' then 'Árajánlat'</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>when 'Invoice' then 'Számla'</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>when 'Shipment' then 'Szállító'</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>when 'Orders' then 'Megrendelés'</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>when 'FacilityForm' then 'Raktári'</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>when 'InventoryList' then 'Leltár'</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>else 'Egyéb'</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span> </span>end as FORM_TYPE_HU,</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">case</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>when (f.DIRECTION = 1 AND f.FORM_TYPE <> 'InventoryList') then 'Értékesítés'</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span> </span>when (f.DIRECTION = 2 AND f.FORM_TYPE <> 'InventoryList') then 'Bevétel'</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span> </span>when (f.DIRECTION = 3 AND f.FORM_TYPE <> 'InventoryList') then 'Áthelyezés'</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span> </span>else 'Egyéb'</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span> </span>end as DIRECTION_HU</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">from inventory_log log, partner_data pd, address_data ad, product p </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"> join form_item fi on p.id = fi.PRODUCT_ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"> join form f on fi.FORM_ID = f.ID </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">where p.id =<span> </span>$P!{product_id} </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND fi.ID IN (SELECT DISTINCT l.FORM_ITEM_ID FROM inventory_log l, inventory_item i, product p </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>WHERE l.INVENTORY_ITEM_ID = i.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>AND i.PRODUCT_ID = p.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>AND p.ID = $P!{product_id}<span> </span>)</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND log.ID IN (SELECT MAX(l.ID) FROM inventory_log l, inventory_item i </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>WHERE l.FORM_ITEM_ID = fi.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="white-space:pre"> </span>AND i.ID = $P!{product_id} )</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND f.PARTNER_DATA_ID = pd.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND f.ADDRESS_DATA_ID = ad.ID</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND f.status > 1 </p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">AND (f.FORM_DATE BETWEEN<span> </span>$P{start_date}<span> </span>AND<span> </span>$P{end_date} )</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000">order by f.FORM_DATE<span style="color: #008080">]]></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></queryString></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"FORM_NR"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"FORM_NR"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.tree.path"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"form"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"NAME"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"NAME"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.tree.path"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"product"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"MEASURING_UNIT"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"MEASURING_UNIT"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.tree.path"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"product"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"EAN"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"EAN"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.tree.path"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"product"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"ITEM_NR"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"ITEM_NR"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.tree.path"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"product"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"VAL_QUANTITY"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.Long"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"VAL_QUANTITY"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"VAL_GROSS_MONEY"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.math.BigDecimal"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"VAL_GROSS_MONEY"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"FORM_DATE"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.sql.Date"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"FORM_DATE"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.tree.path"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"form"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"FORM_TYPE"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"FORM_TYPE"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.tree.path"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"form"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"DIRECTION"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.Integer"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"DIRECTION"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.tree.path"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"form"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"PARTNER_NAME"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"PARTNER_NAME"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.tree.path"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"partner_data"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"CITY"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"CITY"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.tree.path"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"address_data"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"FORM_TYPE_HU"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"FORM_TYPE_HU"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><field</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"DIRECTION_HU"<span style="color: #000000"> </span><span style="color: #000080">class=</span>"java.lang.String"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.field.label"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"DIRECTION_HU"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></field></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><background></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><band<span style="color: #000000"> </span>splitType=<span style="color: #008000">"Stretch"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></background></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><title></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><band<span style="color: #000000"> </span>height=<span style="color: #008000">"104"</span><span style="color: #000000"> </span>splitType=<span style="color: #008000">"Stretch"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"182"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"20"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"198"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"64b7d7a9-d37d-4a4d-befd-64659fff3f2c"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>textAlignment=<span style="color: #008000">"Center"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>size=<span style="color: #008000">"16"</span><span style="color: #000000"> </span>isBold=<span style="color: #008000">"true"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><text></span><span style="color: #008080"><![CDATA[</span>Termék történelem<span style="color: #008080">]]></span><span style="color: #000080"></text></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"50"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"80"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"15"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"699a12bc-e30b-4407-8cc6-9c8613b68adf"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>isBold=<span style="color: #008000">"true"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">"Kezdő dátum:"</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"66"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"80"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"15"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"f16aef14-fca9-430f-b4e3-02fba31a6826"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>isBold=<span style="color: #008000">"true"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">"Vége dátum:"</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"80"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"50"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"100"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"15"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"bb2937f2-3754-43d8-9016-df4aaaa42c9c"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>textAlignment=<span style="color: #008000">"Center"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><textFieldExpression></span><span style="color: #008080"><![CDATA[</span>new java.text.SimpleDateFormat("yyyy.MM.dd").format($P{start_date})<span style="color: #008080">]]></span><span style="color: #000080"></textFieldExpression></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"80"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"66"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"100"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"15"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"e3d2104e-2605-45b0-86a4-750e77cfdf8b"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>textAlignment=<span style="color: #008000">"Center"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><textFieldExpression></span><span style="color: #008080"><![CDATA[</span>new java.text.SimpleDateFormat("yyyy.MM.dd").format($P{end_date})<span style="color: #008080">]]></span><span style="color: #000080"></textFieldExpression></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></band></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></title></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><pageHeader></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><band<span style="color: #000000"> </span>height=<span style="color: #008000">"90"</span><span style="color: #000000"> </span>splitType=<span style="color: #008000">"Stretch"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"10"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"4"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"534"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"3d0e9ca9-ac6d-441a-8b8a-76f75d052a12"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Top"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>size=<span style="color: #008000">"14"</span><span style="color: #000000"> </span>isBold=<span style="color: #008000">"true"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$F{NAME}</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><line></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"34"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"555"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"1"<span style="color: #000000"> </span><span style="color: #000080">forecolor=</span>"#918A8A"<span style="color: #000000"> </span><span style="color: #000080">backcolor=</span>"#918A8A"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"c8d4e75a-c7a9-4bd7-bc3e-0c7e3e7d4c7c"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><graphicElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><pen<span style="color: #000000"> </span>lineWidth=<span style="color: #008000">"0.5"</span><span style="color: #000000"> </span>lineColor=<span style="color: #008000">"#918A8A"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></graphicElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></line></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"53"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"90"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"7213b60d-7a5c-48b3-a466-2816d432d0dc"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Middle"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>size=<span style="color: #008000">"10"</span><span style="color: #000000"> </span>isBold=<span style="color: #008000">"true"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">"Kezdő készlet:"</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><componentElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"90"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"53"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"50"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"434597cf-7745-4340-9eac-1f67fe83df0d"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.layout"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"com.jaspersoft.studio.editor.layout.FreeLayout"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></reportElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><jr:list</span><span style="color: #000000"> </span><span style="color: #000080">xmlns:jr=</span>"http://jasperreports.sourceforge.net/jasperreports/components"<span style="color: #000000"> </span><span style="color: #000080">xsi:schemaLocation=</span>"http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd"<span style="color: #000000"> </span><span style="color: #000080">printOrder=</span>"Vertical"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><datasetRun</span><span style="color: #000000"> </span><span style="color: #000080">subDataset=</span>"initial_stocks"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"ac3900c6-af12-43c3-90f9-661604020ece"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameter<span style="color: #000000"> </span>name=<span style="color: #008000">"product_id"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameterExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{product_id}</span><span style="color: #008080">]]></span></datasetParameterExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetParameter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameter<span style="color: #000000"> </span>name=<span style="color: #008000">"start_date"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameterExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{start_date}</span><span style="color: #008080">]]></span></datasetParameterExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetParameter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><connectionExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{REPORT_CONNECTION}</span><span style="color: #008080">]]></span></connectionExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetRun></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><jr:listContents<span style="color: #000000"> </span>height=<span style="color: #008000">"30"</span><span style="color: #000000"> </span>width=<span style="color: #008000">"50"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField<span style="color: #000000"> </span>pattern=<span style="color: #008000">"#,##0.##"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"50"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"7920d330-4912-4466-bbf4-96d6531efe11"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>textAlignment=<span style="color: #008000">"Right"</span><span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Middle"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>size=<span style="color: #008000">"10"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$F{initial_stocks}</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></jr:listContents></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></jr:list></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></componentElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><componentElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"143"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"53"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"100"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"5e2082d7-ffea-4f66-8730-1be8cc44b8aa"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.layout"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"com.jaspersoft.studio.editor.layout.VerticalRowLayout"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></reportElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><jr:list</span><span style="color: #000000"> </span><span style="color: #000080">xmlns:jr=</span>"http://jasperreports.sourceforge.net/jasperreports/components"<span style="color: #000000"> </span><span style="color: #000080">xsi:schemaLocation=</span>"http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd"<span style="color: #000000"> </span><span style="color: #000080">printOrder=</span>"Vertical"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><datasetRun</span><span style="color: #000000"> </span><span style="color: #000080">subDataset=</span>"initial_stocks"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"86e60e1e-576a-48d9-982d-5683e29c6bcd"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameter<span style="color: #000000"> </span>name=<span style="color: #008000">"product_id"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameterExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{product_id}</span><span style="color: #008080">]]></span></datasetParameterExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetParameter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameter<span style="color: #000000"> </span>name=<span style="color: #008000">"start_date"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameterExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{start_date}</span><span style="color: #008080">]]></span></datasetParameterExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetParameter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><connectionExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{REPORT_CONNECTION}</span><span style="color: #008080">]]></span></connectionExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetRun></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><jr:listContents<span style="color: #000000"> </span>height=<span style="color: #008000">"30"</span><span style="color: #000000"> </span>width=<span style="color: #008000">"100"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"100"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"82b5e370-456b-4f29-b9e7-db49df12841a"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>textAlignment=<span style="color: #008000">"Left"</span><span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Middle"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$F{MEASURING_UNIT}</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></jr:listContents></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></jr:list></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></componentElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></band></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></pageHeader></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><columnHeader></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><band<span style="color: #000000"> </span>height=<span style="color: #008000">"30"</span><span style="color: #000000"> </span>splitType=<span style="color: #008000">"Stretch"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"92"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"90"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"20"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"bcdc46c3-f367-40e2-902c-65a5f078b26d"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Middle"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>isBold=<span style="color: #008000">"true"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><text><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">Kelt</span><span style="color: #008080">]]></span></text></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"182"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"80"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"20"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"e969bb7d-ecb5-456d-9cda-370a06010bf5"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Middle"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>isBold=<span style="color: #008000">"true"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><text></span><span style="color: #008080"><![CDATA[</span>Bizonylat típus<span style="color: #008080">]]></span><span style="color: #000080"></text></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"264"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"70"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"20"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"b9ba4535-b6be-4989-8394-3e7bc068cb8a"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Middle"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>isBold=<span style="color: #008000">"true"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><text><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">Mennyiség</span><span style="color: #008080">]]></span></text></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"334"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"88"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"20"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"aa476bf3-a376-45b7-8800-cbe23affc81e"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Middle"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>isBold=<span style="color: #008000">"true"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><text></span><span style="color: #008080"><![CDATA[</span>Bruttó összeg<span style="color: #008080">]]></span><span style="color: #000080"></text></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"422"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"132"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"20"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"f8abf85e-9536-4eca-86ab-ae2c0bdbd073"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Middle"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>isBold=<span style="color: #008000">"true"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><text></span><span style="color: #008080"><![CDATA[</span>Ügyfél / Település<span style="color: #008080">]]></span><span style="color: #000080"></text></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"92"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"20"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"e191ac8d-bfa4-41b7-ad5b-ed69cb106c9a"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Middle"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>isBold=<span style="color: #008000">"true"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><text><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">Sorszám</span><span style="color: #008080">]]></span></text></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></band></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></columnHeader></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><detail></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><band<span style="color: #000000"> </span>height=<span style="color: #008000">"35"</span><span style="color: #000000"> </span>splitType=<span style="color: #008000">"Stretch"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField<span style="color: #000000"> </span>pattern=<span style="color: #008000">"yyyy.MM.dd"</span><span style="color: #000000"> </span>isBlankWhenNull=<span style="color: #008000">"false"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"92"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"5"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"90"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"b2e20c7e-ee43-43a3-8019-bcb4b87c7809"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$F{FORM_DATE}</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField<span style="color: #000000"> </span>pattern=<span style="color: #008000">"#,##0.##"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"264"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"5"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"70"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"069fe138-7f26-4eaa-9d20-bca90f6a45f6"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><textFieldExpression></span><span style="color: #008080"><![CDATA[</span>$F{VAL_QUANTITY} == null ? 0 : BigDecimal.valueOf($F{VAL_QUANTITY} / 1000d)<span style="color: #008080">]]></span><span style="color: #000080"></textFieldExpression></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField<span style="color: #000000"> </span>pattern=<span style="color: #008000">"#,##0.##"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"334"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"5"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"88"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"67f3e26f-3d10-4605-b21f-fba546f9115b"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><textFieldExpression></span><span style="color: #008080"><![CDATA[</span>($F{VAL_GROSS_MONEY} != null) ? new java.text.DecimalFormat("#,##0.#").format($F{VAL_GROSS_MONEY})<span> </span>:"0"<span style="color: #008080">]]></span><span style="color: #000080"></textFieldExpression></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField<span style="color: #000000"> </span>isBlankWhenNull=<span style="color: #008000">"true"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"422"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"5"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"133"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"14"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"b841c614-7f47-4184-a807-99ee252abf64"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$F{PARTNER_NAME}</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField<span style="color: #000000"> </span>isBlankWhenNull=<span style="color: #008000">"true"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"422"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"19"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"133"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"16"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"66099654-9c2d-45f3-a62f-06fde4956d7b"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$F{CITY}</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"182"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"5"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"82"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"14"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"7553e155-0ab5-4466-b8e5-c245f4049b86"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$F{FORM_TYPE_HU}</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"182"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"20"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"82"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"14"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"359673e4-a5d2-4c4f-8c22-58aef73637ce"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$F{DIRECTION_HU}</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"5"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"92"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"f593efc3-6704-4e29-97fb-39d9f9fd2d8e"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$F{FORM_NR}</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><line></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"555"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"1"<span style="color: #000000"> </span><span style="color: #000080">forecolor=</span>"#918A8A"<span style="color: #000000"> </span><span style="color: #000080">backcolor=</span>"#918A8A"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"22a6185d-0474-4de4-880f-320ee299a61a"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><graphicElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><pen<span style="color: #000000"> </span>lineWidth=<span style="color: #008000">"0.5"</span><span style="color: #000000"> </span>lineColor=<span style="color: #008000">"#918A8A"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></graphicElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></line></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></band></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></detail></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><columnFooter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><band<span style="color: #000000"> </span>splitType=<span style="color: #008000">"Stretch"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></columnFooter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><pageFooter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><band<span style="color: #000000"> </span>height=<span style="color: #008000">"20"</span><span style="color: #000000"> </span>splitType=<span style="color: #008000">"Stretch"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"4"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"194"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"16"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"ab92b4c2-e8aa-42df-ac8f-814b9dd6a32f"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #ff0000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><text></span><span style="color: #008080"><![CDATA[</span>EVO Plus - Az ügyvitel EVOluciója<span style="color: #008080">]]></span><span style="color: #000080"></text></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></staticText></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><line></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"3"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"555"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"1"<span style="color: #000000"> </span><span style="color: #000080">forecolor=</span>"#918A8A"<span style="color: #000000"> </span><span style="color: #000080">backcolor=</span>"#918A8A"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"0e60e4f9-1ce1-4e34-90b2-850c8f91b016"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><graphicElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><pen<span style="color: #000000"> </span>lineWidth=<span style="color: #008000">"0.5"</span><span style="color: #000000"> </span>lineColor=<span style="color: #008000">"#918A8A"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></graphicElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></line></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField<span style="color: #000000"> </span>pattern=<span style="color: #008000">"yyyy.MM.dd"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"230"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"4"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"100"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"16"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"b8c86b83-fe11-4344-a9c0-79cbaa48474c"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">new java.util.Date()</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"455"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"3"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"100"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"16"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"6f126be0-6ed5-409f-a254-7baff91ce2ff"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>textAlignment=<span style="color: #008000">"Right"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$V{PAGE_NUMBER}+ ". oldal"</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></band></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></pageFooter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><summary></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><band<span style="color: #000000"> </span>height=<span style="color: #008000">"83"</span><span style="color: #000000"> </span>splitType=<span style="color: #008000">"Stretch"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"174"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"90"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"846ac53a-0cd9-45c3-83a0-cb6be701f540"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>textAlignment=<span style="color: #008000">"Center"</span><span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Middle"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span><span style="color: #000000"> </span>size=<span style="color: #008000">"10"</span><span style="color: #000000"> </span>isBold=<span style="color: #008000">"true"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">"Összesen:"</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><componentElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"264"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"50"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"afed92ad-7b33-482a-9c34-1cb24a1a472e"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><property</span><span style="color: #000000"> </span><span style="color: #000080">name=</span>"com.jaspersoft.studio.layout"<span style="color: #000000"> </span><span style="color: #000080">value=</span>"com.jaspersoft.studio.editor.layout.FreeLayout"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></reportElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><jr:list</span><span style="color: #000000"> </span><span style="color: #000080">xmlns:jr=</span>"http://jasperreports.sourceforge.net/jasperreports/components"<span style="color: #000000"> </span><span style="color: #000080">xsi:schemaLocation=</span>"http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd"<span style="color: #000000"> </span><span style="color: #000080">printOrder=</span>"Vertical"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><datasetRun</span><span style="color: #000000"> </span><span style="color: #000080">subDataset=</span>"summary"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"042af01b-7d4c-4e84-b4cb-d3eadddf5742"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameter<span style="color: #000000"> </span>name=<span style="color: #008000">"product_id"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameterExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{product_id}</span><span style="color: #008080">]]></span></datasetParameterExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetParameter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameter<span style="color: #000000"> </span>name=<span style="color: #008000">"start_date"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameterExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{start_date}</span><span style="color: #008080">]]></span></datasetParameterExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetParameter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameter<span style="color: #000000"> </span>name=<span style="color: #008000">"date_end"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameterExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{end_date}</span><span style="color: #008080">]]></span></datasetParameterExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetParameter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><connectionExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{REPORT_CONNECTION}</span><span style="color: #008080">]]></span></connectionExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetRun></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><jr:listContents<span style="color: #000000"> </span>height=<span style="color: #008000">"30"</span><span style="color: #000000"> </span>width=<span style="color: #008000">"50"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField<span style="color: #000000"> </span>pattern=<span style="color: #008000">"#,##0.##"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"50"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"31e46972-771c-490c-95ec-1667c5025235"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>textAlignment=<span style="color: #008000">"Right"</span><span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Middle"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$F{sum}</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></jr:listContents></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></jr:list></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></componentElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><componentElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"317"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"100"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"65f55706-3da0-43c8-a20c-77acdc7c29e1"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><jr:list</span><span style="color: #000000"> </span><span style="color: #000080">xmlns:jr=</span>"http://jasperreports.sourceforge.net/jasperreports/components"<span style="color: #000000"> </span><span style="color: #000080">xsi:schemaLocation=</span>"http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd"<span style="color: #000000"> </span><span style="color: #000080">printOrder=</span>"Vertical"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><datasetRun</span><span style="color: #000000"> </span><span style="color: #000080">subDataset=</span>"summary"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"13324226-5816-49b9-89bb-0cb928c28f5a"<span style="color: #000080">></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameter<span style="color: #000000"> </span>name=<span style="color: #008000">"product_id"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameterExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{product_id}</span><span style="color: #008080">]]></span></datasetParameterExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetParameter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameter<span style="color: #000000"> </span>name=<span style="color: #008000">"start_date"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameterExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{start_date}</span><span style="color: #008080">]]></span></datasetParameterExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetParameter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameter<span style="color: #000000"> </span>name=<span style="color: #008000">"date_end"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><datasetParameterExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{end_date}</span><span style="color: #008080">]]></span></datasetParameterExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetParameter></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><connectionExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$P{REPORT_CONNECTION}</span><span style="color: #008080">]]></span></connectionExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></datasetRun></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><jr:listContents<span style="color: #000000"> </span>height=<span style="color: #008000">"30"</span><span style="color: #000000"> </span>width=<span style="color: #008000">"100"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #008000"><span style="color: #000000"><span style="white-space:pre"> </span></span><span style="color: #000080"><reportElement</span><span style="color: #000000"> </span><span style="color: #000080">x=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">y=</span>"0"<span style="color: #000000"> </span><span style="color: #000080">width=</span>"100"<span style="color: #000000"> </span><span style="color: #000080">height=</span>"30"<span style="color: #000000"> </span><span style="color: #000080">uuid=</span>"cc6b7655-3e48-48e4-9b22-6c12826f5e1a"<span style="color: #000080">/></span></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textElement<span style="color: #000000"> </span>textAlignment=<span style="color: #008000">"Left"</span><span style="color: #000000"> </span>verticalAlignment=<span style="color: #008000">"Middle"</span>></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><font<span style="color: #000000"> </span>fontName=<span style="color: #008000">"DejaVu Sans"</span>/></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span><textFieldExpression><span style="color: #008080"><![CDATA[</span><span style="color: #ff0000">$F{MEASURING_UNIT}</span><span style="color: #008080">]]></span></textFieldExpression></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></textField></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></jr:listContents></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></jr:list></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></componentElement></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></band></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"><span style="color: #000000"><span style="white-space:pre"> </span></span></summary></p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #000080"></jasperReport></p>[/code]Also the Data preview is giving me 0 results... The type of the parameters: product_id: java.lang.Integer start_date: java.util.Date end_date: java.util.Date What am I missing?! Thank you!
  4. Okay, so with the "Last page footer" it seems to work, but this subreport is now on the bottom of the page, which is not very beautiful... But the bigger probem is, that I got also on the last page the column headers, which shouldn't be there, because there are not details on this page: How can I remove the column headers from the last page?
  5. The header is also in the TITLE and also in the PAGE HEADER band included, isn't that okay so? What do you mean by "Try to create group footer"? How can I do that?
  6. Hi All! I have one report which includes one summary subreport on the end in the "Summary" band. My problem is, if it has many elements in the "Details" band, the subreport gets on the second page, but on the second page there is no header, the page number is also missing and the signatures are also on the first page, but they should be on the last page. .. So it seems it's a "glitch", but I don't know how can I fix this: This is my report source: https://pastebin.com/UrdsU1ni (sorry had to use pastebin...) This is my subreport source: <?xml version="1.0" encoding="UTF-8"?><!-- Created with Jaspersoft Studio version 6.5.1.final using JasperReports Library version 6.5.1 --><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="vat_sum" pageWidth="340" pageHeight="300" orientation="Landscape" columnWidth="300" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="fd6b586b-3b38-484e-879a-f47a65d681ec"> <property name="com.jaspersoft.studio.data.sql.tables" value=""/> <property name="com.jaspersoft.studio.data.defaultdataadapter" value="MANUFACT_ADAPTER"/> <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"/> <parameter name="INVOICE_ID" class="java.lang.Integer"/> <parameter name="NET_SUM" class="java.math.BigDecimal"/> <parameter name="VAT_SUM" class="java.math.BigDecimal"/> <parameter name="GROSS_SUM" class="java.math.BigDecimal"/> <parameter name="CURRENCY" class="java.lang.String"/> <parameter name="PAYMENT_TYPE" class="java.lang.Integer"> <parameterDescription><![CDATA[]]></parameterDescription> </parameter> <parameter name="NET_TOTAL" class="java.lang.String"/> <parameter name="VAT" class="java.lang.String"/> <parameter name="VAT_TOTAL" class="java.lang.String"/> <parameter name="GROSS_TOTAL" class="java.lang.String"/> <parameter name="TOTAL_WITH_COLON" class="java.lang.String"/> <parameter name="TOTAL_PRICE" class="java.lang.String"/> <parameter name="reverse_charge" class="java.lang.Integer"/> <parameter name="DAILY_RATE" class="java.math.BigDecimal"/> <queryString> <![CDATA[sELECT form_item.`VAT_RATE`,sum(form_item.NET_PRICE) AS NET_PRICE, sum(form_item.`VAT_MONEY`) AS VAT_MONEY, sum(form_item.`GROSS_MONEY`) AS GROSS_MONEYFROM form_itemWHERE form_item.`FORM_ID` = $P{INVOICE_ID} ANDform_item.`DELETED` <> 'deleted'GROUP BY form_item.`VAT_RATE`]]> </queryString> <field name="VAT_RATE" class="java.lang.Integer"/> <field name="NET_PRICE" class="java.math.BigDecimal"/> <field name="VAT_MONEY" class="java.math.BigDecimal"/> <field name="GROSS_MONEY" class="java.math.BigDecimal"/> <background> <band height="3" splitType="Stretch"/> </background> <columnHeader> <band height="29" splitType="Prevent"> <line> <reportElement x="-16" y="28" width="332" height="1" uuid="07818547-1a8c-473a-a65c-f3599887fdd4"/> <graphicElement> <pen lineWidth="0.5"/> </graphicElement> </line> <line> <reportElement x="-16" y="4" width="332" height="1" uuid="1c776d8e-b433-4f5c-8a9f-1640caef9736"/> <graphicElement> <pen lineWidth="0.5"/> </graphicElement> </line> <textField> <reportElement mode="Opaque" x="65" y="4" width="81" height="24" backcolor="#CFCFCF" uuid="0eb994e5-84a9-4e9c-8f15-0462b2aa19fd"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8"/> </textElement> <textFieldExpression><![CDATA[$P{NET_TOTAL}]]></textFieldExpression> </textField> <textField> <reportElement mode="Opaque" x="146" y="4" width="80" height="24" backcolor="#CFCFCF" uuid="47f0fa71-1cbe-4731-9ae1-091d5c898246"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8"/> </textElement> <textFieldExpression><![CDATA[$P{VAT_TOTAL}]]></textFieldExpression> </textField> <textField> <reportElement mode="Opaque" x="226" y="4" width="90" height="24" backcolor="#CFCFCF" uuid="7558bf9f-bdbc-49d2-a744-97e213b6604a"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8"/> </textElement> <textFieldExpression><![CDATA[$P{GROSS_TOTAL}]]></textFieldExpression> </textField> <textField> <reportElement mode="Opaque" x="-16" y="4" width="81" height="24" backcolor="#CFCFCF" uuid="619e510c-7928-47f7-8d68-b63eb2b10bd0"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8"/> </textElement> <textFieldExpression><![CDATA[$P{VAT}]]></textFieldExpression> </textField> </band> </columnHeader> <detail> <band height="22" splitType="Prevent"> <textField pattern="#,##0.##"> <reportElement x="-16" y="0" width="81" height="22" uuid="1902154e-2578-4951-b36c-bca47359e3d4"> <property name="com.jaspersoft.studio.unit.width" value="pixel"/> </reportElement> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8"/> </textElement> <textFieldExpression><![CDATA[($P{reverse_charge} == 1 ? "FAD " : "") + $F{VAT_RATE} + "%"]]></textFieldExpression> </textField> <textField pattern="#,##0.##"> <reportElement x="65" y="0" width="81" height="22" uuid="89b79230-4abd-4fe2-98d0-850419b86d48"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8"/> </textElement> <textFieldExpression><![CDATA[$F{NET_PRICE}]]></textFieldExpression> </textField> <textField pattern="#,##0.##"> <reportElement x="146" y="0" width="80" height="22" uuid="d793763c-7d64-4e2f-a530-a35a3adf121f"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8"/> </textElement> <textFieldExpression><![CDATA[$F{VAT_MONEY}]]></textFieldExpression> </textField> <textField pattern="#,##0.##"> <reportElement x="226" y="0" width="90" height="22" uuid="0235855a-96cb-4b9b-8e7d-c8839c74c4fb"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8"/> </textElement> <textFieldExpression><![CDATA[$F{GROSS_MONEY}]]></textFieldExpression> </textField> </band> </detail> <lastPageFooter> <band height="70" splitType="Prevent"> <line> <reportElement x="-16" y="0" width="332" height="1" uuid="7b7970a5-5fc2-45b6-b5f7-4673e8bc1314"/> <graphicElement> <pen lineWidth="0.5"/> </graphicElement> </line> <textField pattern="#,##0.##"> <reportElement x="65" y="3" width="81" height="20" uuid="5e1221ca-617a-4cc6-9df3-50b2ab29e9f8"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8" isBold="true"/> </textElement> <textFieldExpression><![CDATA[$P{NET_SUM}]]></textFieldExpression> </textField> <textField pattern="#,##0.##"> <reportElement x="122" y="29" width="168" height="20" uuid="e6275194-7a1b-4f7c-8a8f-0e5017a0c308"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="10" isBold="true" pdfEncoding="Cp1250"/> </textElement> <textFieldExpression><![CDATA[$P{GROSS_SUM}]]></textFieldExpression> </textField> <textField pattern="#,##0.##"> <reportElement x="146" y="3" width="80" height="20" uuid="c58e6de9-f9b1-4a61-b34b-52c280390023"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8" isBold="true"/> </textElement> <textFieldExpression><![CDATA[$P{VAT_SUM}]]></textFieldExpression> </textField> <textField pattern="#,##0.##"> <reportElement x="-16" y="3" width="81" height="20" uuid="064ec625-fefc-4b94-aadd-a1a641859def"> <property name="com.jaspersoft.studio.unit.width" value="pixel"/> </reportElement> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8" isBold="true"/> </textElement> <textFieldExpression><![CDATA[$P{TOTAL_WITH_COLON}]]></textFieldExpression> </textField> <textField pattern="#,##0.##"> <reportElement x="-16" y="29" width="138" height="20" uuid="ed559e1e-f125-445f-ba37-d892fa3e3e10"/> <textElement> <font fontName="DejaVu Sans" size="10" isBold="true"/> </textElement> <textFieldExpression><![CDATA[$P{TOTAL_PRICE}]]></textFieldExpression> </textField> <textField pattern="#,##0.##"> <reportElement x="226" y="3" width="90" height="20" uuid="e3ecd6a6-0d89-4186-9797-552a062fda8e"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="8" isBold="true"/> </textElement> <textFieldExpression><![CDATA[$P{GROSS_SUM}]]></textFieldExpression> </textField> <textField> <reportElement x="-16" y="49" width="138" height="20" uuid="8d73fe0f-a403-4607-aa83-4acf512f2178"/> <textElement> <font fontName="DejaVu Sans" size="10" isBold="true"/> </textElement> <textFieldExpression><![CDATA[!$P{CURRENCY}.equals("HUF") ? "VAT Total in HUF / Áfa érték Forintban: " : ""]]></textFieldExpression> </textField> <textField pattern="#,##0.##"> <reportElement x="122" y="49" width="194" height="20" uuid="abad0a43-5526-4bad-a553-6aec739559ef"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" size="10" isBold="true" pdfEncoding="Cp1250"/> </textElement> <textFieldExpression><![CDATA[$P{PAYMENT_TYPE}.equals(1) && !$P{CURRENCY}.equals("HUF") ? ($P{DAILY_RATE}.multiply($P{VAT_SUM}).divide(new BigDecimal(5)).setScale(0, BigDecimal.ROUND_HALF_UP).multiply(new BigDecimal(5)).intValue()) : !$P{CURRENCY}.equals("HUF") ? $P{DAILY_RATE}.multiply($P{VAT_SUM}).setScale(0, BigDecimal.ROUND_HALF_UP) + " Forint" : ""]]></textFieldExpression> </textField> <textField> <reportElement x="291" y="29" width="25" height="20" uuid="24e5ca6d-08e8-433b-a523-b0e7f644b28e"/> <textElement textAlignment="Right" verticalAlignment="Middle"> <font fontName="DejaVu Sans" isBold="true"/> </textElement> <textFieldExpression><![CDATA[$P{CURRENCY}]]></textFieldExpression> </textField> </band> </lastPageFooter></jasperReport>[/code]Thank you very much!
  7. Hi! I have a very simple query in my report which has an ORDER BY at the end with one parameter: ORDER BY $P{form_item_order}[/code]My problem is very simple. The ORDER BY is not wokring. The query looks like this: product_data.`NAME` AS PRODUCT_NAME,product_data.`ITEM_NR` AS ITEM_NR,product_data.`EAN` AS EAN,[/code]... if I give the parameter in, in the preview and if I execute it in my app, it's not working, because it's a string and it gets quotes. If I enter my query in MySQLWorkbench end execute it without any quote like this: ORDER BY PRODUCT_NAME it's working... I don't know why. But it looks like I need to pass a string without quotes. Is it possible?
  8. The solution was this: replace this: product.`ID` in ( $P{id_list} ) with this: product.`ID` in ( $P!{id_list} )
  9. Okay, so the problem is with the list handling. If I remove this from the Query: "AND product.`ID` in ( $P{id_list} )" the preview is giving me more results. I enter parameters like this: "1,2,3". Isn't this so correct?
  10. Oh, my god... You are right. It only delivers one row, but why and how?! I debugged my SQL query hundred times in MySQLWorkbench and the results are there okay.
  11. I downgraded my Jasper version in my webapp to 6.5.1: <dependency> <groupId>net.sf.jasperreports</groupId> <artifactId>jasperreports</artifactId> <version>6.5.1</version> </dependency> <dependency> <groupId>net.sf.jasperreports</groupId> <artifactId>jasperreports-fonts</artifactId> <version>6.0.0</version> </dependency> Changed nothing, there is only one product label in the resulting pdf :( Also downgraded my JasperSoft Studio to 6.5.1 version and the preview there is sadly also the same :(
  12. Hm... If I take the SQL query and put it into MySQLWorkbench AND input the parameters as I enter in the preview: SELECT product.ID, LOWER(c.COMPANY_NAME) AS COMPANY_NAME, price1.GROSS_PRICE as price1, price2.GROSS_PRICE as price2, price3.GROSS_PRICE as price3, product.`item_nr`, product.`NAME`, IF(product.`EAN` REGEXP ('^[0-9]+$'), IF(LENGTH(product.`EAN`) > 12, SUBSTRING(product.`EAN`, 1, 12), NULL), NULL) AS EAN_NORM, price.`NET_UNIT_PRICE`, (price.`NET_UNIT_PRICE` + (price.`VAT_RATE`/100 * price.`NET_UNIT_PRICE`)) AS "GROSS_PRICE", price.`PRICELIST`FROM (SELECT PRODUCT_ID, (price.`NET_UNIT_PRICE` + (price.`VAT_RATE`/100 * price.`NET_UNIT_PRICE`)) AS "GROSS_PRICE" FROM price WHERE pricelist = 1) price1, (SELECT PRODUCT_ID, (price.`NET_UNIT_PRICE` + (price.`VAT_RATE`/100 * price.`NET_UNIT_PRICE`)) AS "GROSS_PRICE" FROM price WHERE pricelist = 2) price2, (SELECT PRODUCT_ID, (price.`NET_UNIT_PRICE` + (price.`VAT_RATE`/100 * price.`NET_UNIT_PRICE`)) AS "GROSS_PRICE" FROM price WHERE pricelist = 3) price3, (SELECT DISTINCT NAME AS COMPANY_NAME from company LIMIT 0,1) c, price INNER JOIN product ON price.`PRODUCT_ID` = product.`ID` WHERE product.`ID` in (115,116,117) and price.`PRICELIST` = 1 AND price1.PRODUCT_ID = price.`PRODUCT_ID` AND price3.PRODUCT_ID = price.`PRODUCT_ID` AND price2.PRODUCT_ID = price.`PRODUCT_ID` ORDER BY product.`EAN`[/code]I get three rows, so not only one. I am missing really something I guess :)
  13. Hi All! I have one products label report, where I want to print all the selected products, with barcode and name. This was working fine until now, there was two labels beside each other and many under each other, so it filled the A4 paper. But something changed and I don't know what... Right now it only prints the last resulting row as far as I can tell, not more, only this one. I'm searching since hours, but can't fnd the settings which is leading to this... This is my report code: <?xml version="1.0" encoding="UTF-8"?><!-- Created with Jaspersoft Studio version 6.6.0.final using JasperReports Library version 6.6.0 --><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="products_label" columnCount="2" printOrder="Horizontal" pageWidth="595" pageHeight="842" columnWidth="267" columnSpacing="20" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="899f8e9c-f50e-4b4d-8793-c60f859f5da3"><property name="com.jaspersoft.studio.data.sql.tables" value=""/><property name="com.jaspersoft.studio.data.defaultdataadapter" value="MANUFACT_ADAPTER"/><style name="barcode-style" mode="Opaque" forecolor="#000000" hTextAlign="Center" hImageAlign="Center" vTextAlign="Bottom" vImageAlign="Bottom" markup="styled" fontName="barcode" fontSize="8"/><parameter name="id_list" class="java.lang.String"><parameterDescription><![CDATA[]]></parameterDescription></parameter><parameter name="price" class="java.lang.String"/><queryString><![CDATA[sELECTproduct.ID,LOWER(c.COMPANY_NAME) AS COMPANY_NAME, price1.GROSS_PRICE as price1, price2.GROSS_PRICE as price2, price3.GROSS_PRICE as price3,product.`item_nr`,product.`NAME`,IF(product.`EAN` REGEXP ('^[0-9]+$'),IF(LENGTH(product.`EAN`) > 12,SUBSTRING(product.`EAN`, 1, 12), NULL),NULL) AS EAN_NORM,price.`NET_UNIT_PRICE`,(price.`NET_UNIT_PRICE` + (price.`VAT_RATE`/100 * price.`NET_UNIT_PRICE`)) AS "GROSS_PRICE",price.`PRICELIST`FROM (SELECT PRODUCT_ID, (price.`NET_UNIT_PRICE` + (price.`VAT_RATE`/100 * price.`NET_UNIT_PRICE`)) AS "GROSS_PRICE" FROM price WHERE pricelist = 1) price1, (SELECT PRODUCT_ID, (price.`NET_UNIT_PRICE` + (price.`VAT_RATE`/100 * price.`NET_UNIT_PRICE`)) AS "GROSS_PRICE" FROM price WHERE pricelist = 2) price2, (SELECT PRODUCT_ID, (price.`NET_UNIT_PRICE` + (price.`VAT_RATE`/100 * price.`NET_UNIT_PRICE`)) AS "GROSS_PRICE" FROM price WHERE pricelist = 3) price3, (SELECT DISTINCT NAME AS COMPANY_NAME from company LIMIT 0,1) c,priceINNER JOIN product ONprice.`PRODUCT_ID` = product.`ID`WHERE product.`ID` in ( $P{id_list} ) and price.`PRICELIST` = $P{price} AND price1.PRODUCT_ID = price.`PRODUCT_ID` AND price3.PRODUCT_ID = price.`PRODUCT_ID` AND price2.PRODUCT_ID = price.`PRODUCT_ID`ORDER BY product.`EAN`]]></queryString><field name="ID" class="java.lang.Integer"><property name="com.jaspersoft.studio.field.label" value="ID"/><property name="com.jaspersoft.studio.field.tree.path" value="product"/></field><field name="COMPANY_NAME" class="java.lang.String"><property name="com.jaspersoft.studio.field.label" value="COMPANY_NAME"/><property name="com.jaspersoft.studio.field.tree.path" value="company"/></field><field name="price1" class="java.math.BigDecimal"><property name="com.jaspersoft.studio.field.label" value="price1"/></field><field name="price2" class="java.math.BigDecimal"><property name="com.jaspersoft.studio.field.label" value="price2"/></field><field name="price3" class="java.math.BigDecimal"><property name="com.jaspersoft.studio.field.label" value="price3"/></field><field name="item_nr" class="java.lang.String"><property name="com.jaspersoft.studio.field.label" value="item_nr"/><property name="com.jaspersoft.studio.field.tree.path" value="product"/></field><field name="NAME" class="java.lang.String"><property name="com.jaspersoft.studio.field.label" value="NAME"/><property name="com.jaspersoft.studio.field.tree.path" value="product"/></field><field name="EAN_NORM" class="java.lang.String"><property name="com.jaspersoft.studio.field.label" value="EAN_NORM"/></field><field name="NET_UNIT_PRICE" class="java.math.BigDecimal"><property name="com.jaspersoft.studio.field.label" value="NET_UNIT_PRICE"/><property name="com.jaspersoft.studio.field.tree.path" value="price"/></field><field name="GROSS_PRICE" class="java.math.BigDecimal"><property name="com.jaspersoft.studio.field.label" value="GROSS_PRICE"/></field><field name="PRICELIST" class="java.lang.String"><property name="com.jaspersoft.studio.field.label" value="PRICELIST"/><property name="com.jaspersoft.studio.field.tree.path" value="price"/></field><background><band splitType="Stretch"/></background><detail><band height="151"><property name="com.jaspersoft.studio.unit.height" value="cm"/><property name="com.jaspersoft.studio.layout" value="com.jaspersoft.studio.editor.layout.FreeLayout"/><textField><reportElement x="5" y="10" width="255" height="70" uuid="25652973-1537-4d37-a5a2-7b42a49d97de"/><textElement><font fontName="DejaVu Sans" size="20" isBold="false"/></textElement><textFieldExpression><![CDATA[(($F{NAME} != null) ? $F{NAME} : "")]]></textFieldExpression></textField><line><reportElement x="-7" y="-1" width="28" height="1" uuid="d3ca5612-8578-4d0e-91fb-52486bb4392d"><property name="com.jaspersoft.studio.unit.width" value="cm"/><property name="com.jaspersoft.studio.unit.height" value="pixel"/></reportElement><graphicElement><pen lineWidth="0.6" lineStyle="Solid"/></graphicElement></line><line><reportElement key="" x="-7" y="-1" width="1" height="28" uuid="0f02b6db-f6fe-4840-9bf7-a1148dff0658"><property name="com.jaspersoft.studio.unit.width" value="cm"/><property name="com.jaspersoft.studio.unit.height" value="cm"/></reportElement><graphicElement><pen lineWidth="0.6" lineStyle="Solid"/></graphicElement></line><line><reportElement key="" x="274" y="123" width="1" height="28" uuid="0efc54d4-0caf-4fe2-a0c4-c7e2d2225964"><property name="com.jaspersoft.studio.unit.width" value="pixel"/><property name="com.jaspersoft.studio.unit.height" value="cm"/><property name="com.jaspersoft.studio.unit.y" value="pixel"/></reportElement><graphicElement><pen lineWidth="0.6" lineStyle="Solid"/></graphicElement></line><line><reportElement x="246" y="150" width="28" height="1" uuid="b8b0504f-e9c0-4f77-bef5-9e9722b20283"><property name="com.jaspersoft.studio.unit.width" value="cm"/><property name="com.jaspersoft.studio.unit.height" value="pixel"/></reportElement><graphicElement><pen lineWidth="0.6" lineStyle="Solid"/></graphicElement></line><textField><reportElement x="140" y="111" width="120" height="30" uuid="ac22f508-b234-423f-9bfa-9a55df558dd1"/><textElement textAlignment="Right" verticalAlignment="Middle"><font fontName="DejaVu Sans" size="18"/></textElement><textFieldExpression><![CDATA[( $F{GROSS_PRICE} != null) ? new java.text.DecimalFormat("#,##0.##").format($F{GROSS_PRICE} .setScale(0, BigDecimal.ROUND_HALF_UP).intValue()) + " Ft" : "0 Ft"]]></textFieldExpression></textField><componentElement><reportElement x="0" y="111" width="140" height="30" uuid="92b7f4ee-135c-4b31-a92c-a1ee25832a33"><printWhenExpression><![CDATA[( $F{EAN_NORM} != null )]]></printWhenExpression></reportElement><c:EAN13 xmlns:c="http://jasperreports.sourceforge.net/jasperreports/components" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd" textPosition="bottom" checksumMode="auto"><c:codeExpression><![CDATA[($F{EAN_NORM} != null ? $F{EAN_NORM} : null)]]></c:codeExpression></c:EAN13></componentElement><textField><reportElement x="5" y="80" width="255" height="30" uuid="ae7748b8-812a-4f47-96bb-5bc9c7d33d08"/><textElement textAlignment="Right" verticalAlignment="Middle"/><textFieldExpression><![CDATA[($F{COMPANY_NAME} .contains("bétalox") ? new java.text.DecimalFormat("#,##0.##").format($F{price1}) + " * " + new java.text.DecimalFormat("#,##0.##").format($F{price3}) : "")]]></textFieldExpression></textField></band></detail></jasperReport>[/code] What am I missing? Thank you!
  14. I tried to make the barcode element bigger, but nothing changed. What do you mean by "Fixing barbeque and replacing it" ? What exactly did you do? This is my JasperSoft Studio editor view. The barcode elements dimensions are now: width: 140px, height: 51px
  15. I want to show on my Jasper Report one EAN13 barcode WITH numbers. So far the preview in JasperSoft Studio 6.5.1 is working great, I see the barcode and the text under it: This is the code part of it in my .jrxml: <componentElement> <reportElement positionType="FixRelativeToBottom" x="0" y="111" width="130" height="30" uuid="48d9d636-7e04-43df-9fa2-5c3f6edf27da"/> <c:barbecue xmlns:c="http://jasperreports.sourceforge.net/jasperreports/components" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd" type="EAN13" drawText="true" checksumRequired="false"> <c:codeExpression> <![CDATA[$F{EAN}]]> </c:codeExpression> </c:barbecue></componentElement>[/code]My problem is, that if I build this .jasper report and deploy is to my Java webapp and print it out into .pdf the text under the barcode is empty or white, but I see there nothing, only the barcode: What do I need to change to view the text also in the webapp version of the report? Thank you.
×
×
  • Create New...