diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-09-13 12:05:33 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-09-13 12:05:33 +0700 |
| commit | 8f3d096dbae18bacd95796d03b17d4d94a806c85 (patch) | |
| tree | ae90032724dabe417b907db43145639e6df9565f /jasper_reports/report/document_header.jrxml | |
| parent | 0d87fec0c4c6fb573b1a09076f6d50844d8d0a80 (diff) | |
jasper report integration
Diffstat (limited to 'jasper_reports/report/document_header.jrxml')
| -rwxr-xr-x | jasper_reports/report/document_header.jrxml | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/jasper_reports/report/document_header.jrxml b/jasper_reports/report/document_header.jrxml new file mode 100755 index 0000000..888f202 --- /dev/null +++ b/jasper_reports/report/document_header.jrxml @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="report name" pageWidth="595" pageHeight="842" whenNoDataType="AllSectionsNoDetail" columnWidth="535" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20">
+ <parameter name="title" class="java.lang.String"/>
+ <parameter name="subtitle" class="java.lang.String"/>
+ <parameter name="comments" class="java.lang.String"/>
+ <background>
+ <band/>
+ </background>
+ <title>
+ <band height="76">
+ <textField isBlankWhenNull="true">
+ <reportElement x="164" y="1" width="241" height="24"/>
+ <textElement textAlignment="Center" verticalAlignment="Middle">
+ <font size="16" isBold="true"/>
+ </textElement>
+ <textFieldExpression class="java.lang.String"><![CDATA[$P{title}]]></textFieldExpression>
+ </textField>
+ <textField isBlankWhenNull="true">
+ <reportElement x="164" y="25" width="241" height="24"/>
+ <textElement textAlignment="Center" verticalAlignment="Middle">
+ <font size="12" isBold="false"/>
+ </textElement>
+ <textFieldExpression class="java.lang.String"><![CDATA[$P{subtitle}]]></textFieldExpression>
+ </textField>
+ <textField isStretchWithOverflow="true" isBlankWhenNull="true">
+ <reportElement x="164" y="49" width="241" height="24"/>
+ <textElement textAlignment="Center" verticalAlignment="Middle">
+ <font size="10" isBold="false"/>
+ </textElement>
+ <textFieldExpression class="java.lang.String"><![CDATA[$P{comments}]]></textFieldExpression>
+ </textField>
+ </band>
+ </title>
+ <pageHeader>
+ <band/>
+ </pageHeader>
+ <columnHeader>
+ <band/>
+ </columnHeader>
+ <detail>
+ <band/>
+ </detail>
+ <columnFooter>
+ <band/>
+ </columnFooter>
+ <pageFooter>
+ <band/>
+ </pageFooter>
+ <summary>
+ <band/>
+ </summary>
+</jasperReport>
|
