我有一个显示用户数据的报告和一个显示付款数据的子报告。如果子报告中没有付款,我想定制报告。
我遇到的问题是共享子报表中的共享变量,但这仅在子报表下方起作用。我还尝试创建一个公式函数,该函数调用金额字段上的计数,如果计数大于0.00,则表示有付款。但是出于某种奇怪的原因,水晶报表会创建两个相同的pdf。
我如何确定子报表中是否有任何记录,并在其继承的报表周围传递该true / false值?
我尝试了什么
Wizard.vue
<template>
<div>
<div class="dropdown">
<select name="" id="">
<option value="hide">hide</option>
<option value="show">show</option>
</select>
</div>
<form-wizard @on-complete="onComplete">
<tab-content title="first"
icon="ti-user">
first
</tab-content>
<tab-content title="second" icon="ti-settings">
second
</tab-content>
<tab-content title="four" icon="ti-settings">
four
</tab-content>
<tab-content title="five"
icon="ti-settings">
five
</tab-content>
<tab-content title="Last step"
icon="ti-check">
Yuhuuu! This seems pretty damn simple
</tab-content>
</form-wizard>
</div>
</template>
谢谢。...
答案 0 :(得分:-1)
子报表中的共享变量值只能在子报表部分下方的部分中用于主报表。