2

サブレポートからメインレポートに単純に値を返したいのですがnull、レポートが実行されると常に表示されます。iReport 5.1.0 を使用しています。

主な報告

<?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="report4" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="ce028d85-f7e8-4abd-ad6b-e3b2ba04d14e">
<property name="ireport.zoom" value="1.0"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="0"/>
<parameter name="SUBREPORT_DIR" class="java.lang.String" isForPrompting="false">
    <defaultValueExpression><![CDATA["C:\\Users\\DellXFR\\"]]></defaultValueExpression>
</parameter>
<variable name="z" class="java.lang.Integer" calculation="System">
    <variableExpression><![CDATA[8]]></variableExpression>
</variable>
<background>
    <band splitType="Stretch"/>
</background>
<title>
    <band height="79" splitType="Stretch"/>
</title>
<detail>
    <band height="125" splitType="Stretch">
        <subreport>
            <reportElement uuid="0c501730-d98a-4982-9953-2939f127ad9e" x="40" y="10" width="200" height="100"/>
            <connectionExpression><![CDATA[$P{REPORT_CONNECTION}]]></connectionExpression>
            <returnValue subreportVariable="x" toVariable="z"/>
            <subreportExpression><![CDATA[$P{SUBREPORT_DIR} + "report4_subreport1.jasper"]]></subreportExpression>
        </subreport>
        <textField evaluationTime="Band">
            <reportElement uuid="9020a8d9-5799-4907-b8a3-704f41ffdcc0" x="399" y="73" width="100" height="20"/>
            <textElement/>
            <textFieldExpression><![CDATA[$V{z}]]></textFieldExpression>
        </textField>
    </band>
</detail>
<summary>
    <band height="42" splitType="Stretch"/>
</summary>
  </jasperReport>

サブレポート

<?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="report4_subreport1" language="groovy" pageWidth="555" pageHeight="802" columnWidth="555" leftMargin="0" rightMargin="0" topMargin="0" bottomMargin="0" uuid="78290b3a-34c2-496e-86ff-e213ca2c1039">
<property name="ireport.zoom" value="1.0"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="0"/>
<queryString language="SQL">
    <![CDATA[select * from ot;]]>
</queryString>
<field name="salscheme_id" class="java.lang.String">
    <fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="ot_amount" class="java.lang.Double">
    <fieldDescription><![CDATA[]]></fieldDescription>
</field>
<variable name="x" class="java.lang.Integer">
    <variableExpression><![CDATA[1]]></variableExpression>
</variable>
<group name="salscheme_id">
    <groupExpression><![CDATA[$F{salscheme_id}]]></groupExpression>
</group>
<background>
    <band splitType="Stretch"/>
</background>
<detail>
    <band height="125" splitType="Stretch"/>
</detail>
    </jasperReport>
4

3 に答える 3

5

次のように、サブレポートからメイン レポートに変数を渡します。

  1. メイン レポートで、変数を作成します。

    <variable name="subReportValue" class="java.lang.Integer"/>
    

    注:計算値は設定しないでください。

  2. サブレポートで、変数も作成します。

    <variable name="returnValue" class="java.lang.Integer" calculation="First">
      <variableExpression><![CDATA[$F{myField}]]></variableExpression>
    </variable>
    

    計算と返すものを設定します。注: メイン レポート変数のクラス値を考慮してください。それらは同じクラスである必要があります。

  3. メイン レポートで、subreport タグにサブレポートの戻り値を設定します。

    <returnValue subreportVariable="returnValue" toVariable="subReportValue"/>
    
  4. subReportValue詳細バンドにを配置したい場合は、evalutationTimeの を設定textFieldする必要があるため、サブレポートの後に配置する必要があります (それ以外の場合は null のままです)。

    <textField evaluationTime="Band">
            <reportElement x="251" y="109" width="100" height="20"/>
            <textElement lineSpacing="Single"/>
            <textFieldExpression class="java.lang.Integer"><![CDATA[$V{subReportValue}]]></textFieldExpression>
    </textField>
    

グループ化に設定された詳細帯に含まれていない場合evaluationTime="Report"。異なる EvaluationTime を理解するには、EvaluationTimeEnumを参照してください。

.jasperメイン レポートはソースではなくコンパイル済みファイルを参照するため、完了したらサブレポートを再コンパイルします.jrxml

于 2015-11-13T16:17:23.400 に答える