hxp
2026-02-26 5d79b486b2974522c2d1978dc90c3081827224e0
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/FormulaControl.py
@@ -112,7 +112,7 @@
    try:
        # 执行计算
        value = eval(compileFormula, safe_env)
        if ndigits > 0:
        if ndigits > 0 and not isinstance(value, int):
            value = round(value, ndigits)
        if ceil:
            value = math.ceil(value)