首页 > 开发 > 综合 > 正文

水晶报表打印单据时增加空行或空白行的示例脚本

2024-07-21 02:24:01
字体:
来源:转载
供稿:网友
假设我们的单据每张共打印五行,则最多会增加空白行4行,
在重复出现的表体中定义四个空白节。
我们首要的任务是根据记录数来确定这四个节什么时候显示,什么时候不显示。
我们定义的节的抑制显示脚本为:
节1,只有当记录数等于1时才需要显示第一个空白节。
if onlastrecord=false then
formula = true
else

if (count({销售单表体.商品代码}) mod 5 > 1) then
formula = true
else
if (count({销售单表体.商品代码}) mod 5 = 0) then
formula = true
else
formula = false
end if
end if
end if

节2,只有当记录数等于1或等于2时才需要显示第二个空白节。
if onlastrecord=false then
formula = true
else
if (count({销售单表体.商品代码}) mod 5 > 2) then
formula = true
else
if (count({销售单表体.商品代码}) mod 5 = 0) then
formula = true
else
formula = false
end if
end if
end if

其它两个节,以此类推是很简单的。
注意的是分界条件是 完全求模后 返回 0 和记录数本身就为零的情况的处理。





发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表