本帖最后由 Bella.Yuan 于 2023-12-1 15:25 编辑
我们的报表支持很多常规的计算公式。能满足我们的常规使用。但是我们可能会有使用在自己场景中的特殊的方法函数,需要在报表中继续试用,如果是ActiveReports,我们可以在桌面设设计器中添加脚本,如果是Wyn的话,我们可以在后台添加自定义函数。那么在ARJS中我们如何添加自己的函数方法呢?从ARJS4.1版本之后,支持用户添加自定义函数。
今天我们就介绍如何在ARJS中添加自己的函数方法。
以比较常见的数字金额转大写函数为例。
首先,我们准备写好可以正常运行的函数,要是前段浏览器可以识别运行的。
<script>
// 金额转为大写
function transform(price) {
const fraction = ["角", "分"];
const digit = ["零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"];
const unit = [
["元", "万", "亿"],
["", "拾", "佰", "仟"],
];
let num = Math.abs(price);
let s = "";
fraction.forEach((item, index) => {
s += (digit[Math.floor(num * 10 * 10 ** index) % 10] + item).replace(
/零./,
""
);
});
s = s || "整";
num = Math.floor(num);
for (let i = 0; i < unit[0].length && num > 0; i += 1) {
let p = "";
for (let j = 0; j < unit[1].length && num > 0; j += 1) {
p = digit[num % 10] + unit[1][j] + p;
num = Math.floor(num / 10);
}
s = p.replace(/(零.)*零$/, "").replace(/^$/, "零") + unit[0] + s;
}
return s
.replace(/(零.)*零元/, "元")
.replace(/(零.)+/g, "零")
.replace(/^整$/, "零元整");
}
</script>
然后,在ARJS中注册这个函数:
const ARJS = GC.ActiveReports.Core;
ARJS.CustomCode.registerFunctions([{ name: "transform", body: transform }]);
在报表设计时通过Code.方法名(参数),的方式进行使用:
最终效果:
|