hxp
2026-01-29 b30b110fc4e5901fde2cd4e4e6444bbd32980d86
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/FormulaControl.py
@@ -101,6 +101,7 @@
        'round': round,
        # 类型转换
        'int': int,
        'long': long,
        'float': float,
        'bool': bool,
        # 数学常数
@@ -111,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)