This commit is contained in:
2026-04-28 13:28:35 +08:00
parent 3284c5d938
commit 49b89352aa
293 changed files with 53784 additions and 83836 deletions

View File

@@ -0,0 +1,20 @@
DEFINE
FUNCTION Switch_Unit_Value = (unit, O_Value) =>
SWITCH(
unit,
"RMB", O_Value,
"K RMB", O_Value / 1000,
"M RMB", O_Value / 1000000,
"USD", DIVIDE(
O_Value,
[ExchangeRate]
),
"K USD", DIVIDE(
O_Value,
[ExchangeRate]
) / 1000,
"M USD", DIVIDE(
O_Value,
[ExchangeRate]
) / 1000000
)