Odoo reporting - display 0 when values is null
我正在 OpenOffice 报表设计器中为 Odoo 设计报表。
我需要在下面的列中显示单位费率和折扣
1 2 | "a?1. 95.0 each 5% Discount" |
我可以在报告中显示这些字段。
问题是当折扣为 0 时,它在报告中显示为空白,如下所示
1 2 | "a?1. 95.0 each % Discount" |
如果空白,我想显示 0。如何实现?
当字段值为
1 | [[ o.discount or '0' ]] |
要显示例如
1 | [[ o.discount and formatLang(o.discount) + '%' or '0']] |