Как добавить маркер в карту, используя поле? (Отчеты Джаспер)
Я создаю отчет с помощью студии jaspersoft. Я включил компонент карты в свой отчет и смог использовать маркер с помощью статического выражения.
Но используя выражение, я не могу добавить любое поле, так как в редакторе выражений маркеров отсутствует опция добавления поля. Я хочу использовать поля для определения позиции моего маркера.
У меня есть список в Java, который я использую, чтобы заполнить отчет яшмы. В нем есть все широта, долгота и т. Д. Как я могу использовать их для определения своего положения маркеров? Как я могу добавить динамические маркеры?
Вот мой код XML
<?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="AVCV" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="88a84d95-64ea-4a7d-8e2b-1924405022c0">
<property name="ireport.zoom" value="1.5"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="147"/>
<property name="com.jaspersoft.studio.data.defaultdataadapter" value="One Empty Record"/>
<property name="com.jaspersoft.studio.data.sql.tables" value=""/>
<subDataset name="dataset1" uuid="5fc2d288-4798-41de-976a-1e735b370152"/>
<subDataset name="dataset2" uuid="6a820db8-3c9a-479e-9e1c-e5973f15545e"/>
<queryString>
<![CDATA[]]>
</queryString>
<field name="caseNo" class="java.lang.String"/>
<field name="applicantName" class="java.lang.String"/>
<field name="visitType" class="java.lang.String"/>
<field name="uploadedDateTime" class="java.lang.String"/>
<field name="applicantAddress" class="java.lang.String"/>
<field name="applicantContactNo" class="java.lang.String"/>
<field name="productName" class="java.lang.String"/>
<field name="checkType" class="java.lang.String"/>
<field name="closedDateTime" class="java.lang.String"/>
<field name="personMet" class="java.lang.String"/>
<field name="personMetName" class="java.lang.String"/>
<field name="totalEarningMembers" class="java.lang.String"/>
<field name="livingSinceYears" class="java.lang.String"/>
<field name="natureOfBusiness" class="java.lang.String"/>
<field name="thirdPartyConfirmation" class="java.lang.String"/>
<field name="cpvNotes" class="java.lang.String"/>
<field name="personMetRelationship" class="java.lang.String"/>
<field name="totalFamilyMembers" class="java.lang.String"/>
<field name="premises" class="java.lang.String"/>
<field name="workingSinceYears" class="java.lang.String"/>
<field name="applicantDesignation" class="java.lang.String"/>
<field name="cpvStatus" class="java.lang.String"/>
<field name="visitStatus" class="java.lang.String"/>
<field name="autoRemarks" class="java.lang.String"/>
<field name="longLat" class="java.lang.String"/>
<field name="verifierName" class="java.lang.String"/>
<field name="customerName" class="java.lang.String"/>
<field name="longitude" class="java.lang.Float"/>
<field name="latitude" class="java.lang.Float"/>
<background>
<band splitType="Stretch"/>
</background>
<detail>
<band height="802" splitType="Stretch">
<image>
<reportElement positionType="Float" x="8" y="3" width="55" height="43" uuid="b23affc2-f243-4cf3-ac32-33ce53f06859"/>
<imageExpression><![CDATA["D:\\logo.jpg"]]></imageExpression>
</image>
<rectangle>
<reportElement positionType="Float" x="0" y="48" width="555" height="27" uuid="89af08a9-20b1-4585-9409-2b64229e67d0"/>
<graphicElement>
<pen lineWidth="1.0"/>
</graphicElement>
</rectangle>
<staticText>
<reportElement positionType="Float" x="198" y="52" width="191" height="20" uuid="b3de2dd3-9db5-414b-8763-58b702a46005"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font isBold="true"/>
</textElement>
<text><![CDATA[Customer Point Verification Report ]]></text>
</staticText>
<rectangle>
<reportElement positionType="Float" x="0" y="233" width="555" height="27" uuid="b2da7e2b-20f1-47db-9e04-bf8bac1790d3"/>
</rectangle>
<staticText>
<reportElement positionType="Float" x="198" y="236" width="191" height="20" uuid="2dfd9ee7-bf30-431e-ac4e-71dbc9981e2d"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font isBold="true"/>
</textElement>
<text><![CDATA[Parameter For Address Check]]></text>
</staticText>
<staticText>
<reportElement positionType="Float" x="6" y="78" width="152" height="20" uuid="ff05e2e3-da87-4e45-a72c-4978a57b53a7"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Case No]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="158" y="78" width="100" height="20" uuid="45bd5bb8-095b-40cb-951a-3835048231ca"/>
<textFieldExpression><![CDATA[$F{caseNo}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="6" y="103" width="152" height="20" uuid="9e1a1670-1033-48ef-9f70-75aadb2b953c"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Applicant Name]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="158" y="103" width="100" height="20" uuid="13a4106b-2c8e-4c0d-aae6-01057d88efd3"/>
<textFieldExpression><![CDATA[$F{applicantName}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="6" y="155" width="152" height="20" uuid="50e28e4c-1a1c-4035-b274-bf8f463a5e80"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Visit Type]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="158" y="155" width="100" height="20" uuid="79f7af37-d00b-416f-979e-e738d385dc5b"/>
<textFieldExpression><![CDATA[$F{visitType}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="6" y="181" width="152" height="20" uuid="da44de86-9308-4fbb-965c-efcefeb20e6e"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Uploaded Time]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="158" y="181" width="100" height="20" uuid="1398639a-c071-4446-acc0-250d5b55f902"/>
<textFieldExpression><![CDATA[$F{uploadedDateTime}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="6" y="206" width="152" height="20" uuid="462993e8-ee04-4395-b2ce-6f5720aa40a6"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Applicant Address]]></text>
</staticText>
<textField isStretchWithOverflow="true">
<reportElement positionType="Float" x="158" y="206" width="372" height="20" uuid="c9ae9f73-5d22-4fa2-b9ea-1ad64573d844"/>
<textFieldExpression><![CDATA[$F{applicantAddress}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="278" y="103" width="152" height="20" uuid="531b249c-0309-4cba-80b6-5e0d1372f862"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Applicant Contact No]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="430" y="103" width="100" height="20" uuid="3f570f04-714d-4e58-a2dd-2a5002af6f59"/>
<textFieldExpression><![CDATA[$F{applicantContactNo}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="278" y="155" width="152" height="20" uuid="40cd6004-024e-4730-b37c-a1f16816d52b"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Check Type]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="430" y="155" width="100" height="20" uuid="ee42cf34-fbd0-4509-9e27-4936cd892735"/>
<textFieldExpression><![CDATA[$F{checkType}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="6" y="266" width="152" height="20" uuid="881deb5a-ba5c-44ed-8cbf-ab6072492881"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Person Met]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="158" y="266" width="100" height="20" uuid="06a4292a-1abb-4976-b1db-011b457316a3"/>
<textFieldExpression><![CDATA[$F{personMet}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="6" y="291" width="152" height="20" uuid="021578ca-af66-4a14-a60c-38faebad74a4"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Person Name]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="158" y="291" width="100" height="20" uuid="d4f6eb0b-5e3f-444a-81af-25f35e898d94"/>
<textFieldExpression><![CDATA[$F{personMetName}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="6" y="316" width="152" height="20" uuid="aa65b98e-465f-4ed9-bd81-37d568675964"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Total Earning Members]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="158" y="316" width="100" height="20" uuid="0696b6ec-59e6-40e5-ac10-810c14311005"/>
<textFieldExpression><![CDATA[$F{totalEarningMembers}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="6" y="366" width="152" height="20" uuid="b0558e83-a73d-4688-9ba9-ea4ba5f85390"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Nature Of Business]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="158" y="366" width="100" height="20" uuid="eccfd44e-9cd3-450f-817c-a88956fa65b1"/>
<textFieldExpression><![CDATA[$F{natureOfBusiness}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="6" y="391" width="152" height="20" uuid="46f66c67-3f2a-4952-9b87-78aad42fbc49"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[TPC(Third Party Confirmation)]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="158" y="391" width="100" height="20" uuid="862d1873-b402-4f4d-8477-b33c68e631f9"/>
<textFieldExpression><![CDATA[$F{thirdPartyConfirmation}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="278" y="266" width="152" height="20" uuid="88c842e8-e992-4db8-a684-e888f7afd7fe"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Relationship]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="430" y="266" width="100" height="20" uuid="a8257f05-54ce-4b7f-9a70-20b6e890851f"/>
<textFieldExpression><![CDATA[$F{personMetRelationship}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="278" y="291" width="152" height="20" uuid="646fd2d8-ac92-4b60-af74-73f9394e55e5"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Family Members]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="430" y="291" width="100" height="20" uuid="c6e31380-5696-426a-81fc-435b7df7903d"/>
<textFieldExpression><![CDATA[$F{totalFamilyMembers}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="278" y="316" width="152" height="20" uuid="ec6c48e8-2f53-4f4a-ac76-a244e95a8fbc"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Premises]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="430" y="314" width="100" height="20" uuid="30f0b107-963e-46ea-a375-bfacd83907cc"/>
<textFieldExpression><![CDATA[$F{premises}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="278" y="341" width="152" height="20" uuid="22a985c6-ea42-4c9b-8206-503211c88b63"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Working Since]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="430" y="341" width="100" height="20" uuid="a303d565-bb15-43aa-b76f-dc608c5e5c27"/>
<textFieldExpression><![CDATA[$F{workingSinceYears}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="278" y="366" width="152" height="20" uuid="92dd039b-b675-445f-b8a1-b78e378c8a42"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Designation]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="430" y="366" width="100" height="20" uuid="315fe855-9f6e-4365-ade8-47ddc7f21a0c"/>
<textFieldExpression><![CDATA[$F{applicantDesignation}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="278" y="391" width="152" height="20" uuid="e102400a-5fa2-4242-a5a3-82662be98611"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[CPV Status]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="430" y="391" width="100" height="20" uuid="6fe2c9d0-1455-4133-89bc-b3900701becf"/>
<textFieldExpression><![CDATA[$F{cpvStatus}]]></textFieldExpression>
</textField>
<rectangle>
<reportElement x="0" y="443" width="555" height="27" uuid="2c0798e9-5b0e-4b81-8af0-ffa030128be3"/>
</rectangle>
<staticText>
<reportElement positionType="Float" x="6" y="446" width="100" height="20" uuid="3bbc2062-a750-4389-a4d4-0c5c6d965736"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Location Map]]></text>
</staticText>
<break>
<reportElement x="0" y="778" width="100" height="1" uuid="19386485-3fff-4bf3-98b6-be4019b469e5"/>
</break>
<rectangle>
<reportElement mode="Transparent" x="0" y="0" width="555" height="766" uuid="fc13ba56-846d-44e8-a626-17af9a6c65c7"/>
</rectangle>
<staticText>
<reportElement positionType="Float" x="6" y="129" width="152" height="20" uuid="6c873d74-71db-4920-9042-1fdad3e14b54"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Client Name]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="158" y="129" width="100" height="20" uuid="e5be58e7-e084-4029-b420-833314698149"/>
<textFieldExpression><![CDATA[$F{customerName}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="278" y="129" width="152" height="20" uuid="2e87d52c-86ef-480f-88ea-8b62542430b0"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Product Type]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="430" y="129" width="100" height="20" uuid="b2533daa-ae12-4b97-8743-161c609eb0db"/>
<textFieldExpression><![CDATA[$F{productName}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="278" y="181" width="152" height="20" uuid="4746a6cc-8e6d-4cb7-8b8c-d101882496d2"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Visit Closed Time]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="430" y="181" width="100" height="20" uuid="8b68baea-c313-48d4-a727-889d49cc492f"/>
<textFieldExpression><![CDATA[$F{closedDateTime}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="8" y="341" width="150" height="20" uuid="9e5ee8cf-db06-4fd4-890e-08e65759fb44"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Living At Location(Number Of Years)]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="158" y="341" width="100" height="20" uuid="b8ac6c61-1210-47dd-af3a-ecd94df7e477"/>
<textFieldExpression><![CDATA[$F{livingSinceYears}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="8" y="416" width="150" height="20" uuid="830740e3-4d41-40fe-a069-72a900905828"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Notes]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="158" y="416" width="100" height="20" uuid="06e30133-2abb-4740-acda-98a4157a0b76"/>
<textFieldExpression><![CDATA[$F{cpvNotes}]]></textFieldExpression>
</textField>
<componentElement>
<reportElement x="8" y="473" width="539" height="287" isRemoveLineWhenBlank="true" uuid="5e38f5a2-81fe-47d9-86eb-46a67c5c9e83"/>
<c:map xmlns:c="http://jasperreports.sourceforge.net/jasperreports/components" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd">
<c:latitudeExpression><![CDATA[$F{latitude}]]></c:latitudeExpression>
<c:longitudeExpression><![CDATA[$F{longitude}]]></c:longitudeExpression>
<c:zoomExpression><![CDATA[15]]></c:zoomExpression>
</c:map>
</componentElement>
</band>
<band height="802">
<rectangle>
<reportElement mode="Transparent" x="0" y="17" width="555" height="27" uuid="f483f3be-99ae-476b-973c-24ea9b680757"/>
</rectangle>
<rectangle>
<reportElement mode="Transparent" x="0" y="17" width="138" height="126" uuid="bda48dfa-9f57-4f6d-abd6-549f364c71bc"/>
</rectangle>
<rectangle>
<reportElement mode="Transparent" x="138" y="17" width="140" height="126" uuid="6c9608cf-6139-4279-ad65-76557e5972c0"/>
</rectangle>
<rectangle>
<reportElement mode="Transparent" x="414" y="17" width="141" height="126" uuid="a0ea3896-eee4-4027-a84d-4dca54958ee2"/>
</rectangle>
<rectangle>
<reportElement mode="Transparent" x="278" y="17" width="136" height="126" uuid="86fcbd5b-f93a-4478-8821-f79b230bb53a"/>
</rectangle>
<staticText>
<reportElement x="8" y="22" width="121" height="17" uuid="cbbd2bb9-a8a7-459b-b19a-95e99c697a9a"/>
<textElement textAlignment="Center" verticalAlignment="Middle"/>
<text><![CDATA[Signature]]></text>
</staticText>
<staticText>
<reportElement x="148" y="22" width="121" height="17" uuid="a85a397c-ff62-4613-845c-10e57045b1c8"/>
<textElement textAlignment="Center" verticalAlignment="Middle"/>
<text><![CDATA[Person Image]]></text>
</staticText>
<staticText>
<reportElement x="285" y="22" width="121" height="17" uuid="3abc9403-e4f6-405a-9a36-1e1982af621f"/>
<textElement textAlignment="Center" verticalAlignment="Middle"/>
<text><![CDATA[Location Image]]></text>
</staticText>
<staticText>
<reportElement x="423" y="22" width="121" height="17" uuid="580f5d13-7086-42e7-bf96-55bd16d18a8f"/>
<textElement textAlignment="Center" verticalAlignment="Middle"/>
<text><![CDATA[Document Image]]></text>
</staticText>
<image scaleImage="FillFrame">
<reportElement x="6" y="49" width="123" height="82" uuid="d26e6c89-b812-43d0-bf23-964baa285ca2"/>
<imageExpression><![CDATA["D:\\sig.jpg"]]></imageExpression>
</image>
<image scaleImage="FillFrame">
<reportElement x="148" y="49" width="121" height="82" uuid="8f3645f7-ca27-409a-ae17-04afee1131c3"/>
<imageExpression><![CDATA["D:\\per.jpg"]]></imageExpression>
</image>
<image scaleImage="FillFrame">
<reportElement x="285" y="49" width="121" height="82" uuid="d15bc13d-635c-4819-b749-309eb3fbcf0c"/>
<imageExpression><![CDATA["D:\\loc.jpg"]]></imageExpression>
</image>
<image scaleImage="FillFrame">
<reportElement x="423" y="49" width="121" height="82" uuid="8867b438-8845-4670-958c-4307be38333b"/>
<imageExpression><![CDATA["D:\\doc.jpg"]]></imageExpression>
</image>
<staticText>
<reportElement positionType="Float" x="8" y="157" width="100" height="20" uuid="6894d964-ed91-41c2-a3fb-2bb3cff2deee"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Visit Status]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="108" y="157" width="100" height="20" uuid="8145fa7b-2441-4655-a4ce-43f129901e76"/>
<textFieldExpression><![CDATA[$F{visitStatus}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="347" y="157" width="100" height="20" uuid="3592fb33-dacc-44e6-9e69-26c852ed3aba"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[CPV Status]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="447" y="157" width="100" height="20" uuid="05230776-ed5b-4299-a429-d4fdd473c081"/>
<textFieldExpression><![CDATA[$F{cpvStatus}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="8" y="184" width="100" height="20" uuid="689be3ce-27ba-4b7d-ae0a-d32e74274a17"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Auto Remarks]]></text>
</staticText>
<textField isStretchWithOverflow="true">
<reportElement positionType="Float" x="108" y="184" width="436" height="20" uuid="4eb96e40-43e1-4457-adaf-3afc3e8ff665"/>
<textElement markup="html"/>
<textFieldExpression><![CDATA[$F{autoRemarks}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="8" y="225" width="100" height="20" uuid="0ace91a5-2ef8-40c7-8d40-1e7578519d55"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[(Lat-Long)]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="108" y="225" width="100" height="20" uuid="c6944288-0244-42b8-9f28-5371f64c3ac4"/>
<textFieldExpression><![CDATA[$F{longLat}]]></textFieldExpression>
</textField>
<staticText>
<reportElement positionType="Float" x="8" y="251" width="100" height="20" uuid="a25ad202-11b4-47da-80da-67cd63c68b23"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[Verifier Name]]></text>
</staticText>
<textField>
<reportElement positionType="Float" x="108" y="251" width="100" height="20" uuid="c8a84c2c-07b6-46a8-acd9-1b00b108023a"/>
<textFieldExpression><![CDATA[$F{verifierName}]]></textFieldExpression>
</textField>
<image scaleImage="FillFrame">
<reportElement x="347" y="292" width="192" height="131" uuid="4b669087-d096-4708-9ab6-2e3c575be1da"/>
<imageExpression><![CDATA["D:\\stamp.jpg"]]></imageExpression>
</image>
<rectangle>
<reportElement positionType="Float" mode="Transparent" x="0" y="0" width="555" height="437" uuid="dd0c0561-4b0c-4179-bc6e-d5585b816f3d"/>
</rectangle>
<line>
<reportElement positionType="Float" mode="Transparent" x="0" y="218" width="554" height="1" forecolor="#FFFFFF" uuid="88c507d3-ac3a-4b27-b38b-990be2069c71"/>
</line>
</band>
</detail>