This commit is contained in:
2022-03-03 01:00:17 +00:00
parent 6ba44e792e
commit 725fdefda0
2 changed files with 2 additions and 2 deletions

2
.vscode/launch.json vendored
View File

@@ -48,7 +48,7 @@
"AYANOVA_DATA_PATH": "c:\\temp\\ravendata",
"AYANOVA_USE_URLS": "http://*:7575;",
//"AYANOVA_PERMANENTLY_ERASE_DATABASE":"true",
"AYANOVA_SERVER_TEST_MODE": "true",
"AYANOVA_SERVER_TEST_MODE": "false",
"AYANOVA_SERVER_TEST_MODE_TZ_OFFSET": "-8",
//"AYANOVA_REPORT_RENDERING_TIMEOUT":"1",
"AYANOVA_SERVER_TEST_MODE_SEEDLEVEL": "small",

View File

@@ -58,7 +58,7 @@ AuthorizationRoles.Accounting;
GROUP BY x,z
)
select X,Z,
wocount / sum(wocount) over (partition by X) * 100 as Y
ROUND(wocount / sum(wocount) over (partition by X) * 100,2) as Y
from subq
order by x ASC
) t";