case 4610

This commit is contained in:
2024-08-28 23:00:00 +00:00
parent e0f57fb1ee
commit 2548ba53d3
4 changed files with 48 additions and 41 deletions

2
.vscode/launch.json vendored
View File

@@ -63,7 +63,7 @@
"AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=raven;Database=AyaNova;CommandTimeout=300;",
"AYANOVA_DATA_PATH": "c:\\temp\\ravendata",
"AYANOVA_USE_URLS": "http://*:7575;",
//"AYANOVA_PERMANENTLY_ERASE_DATABASE":"true",
"AYANOVA_PERMANENTLY_ERASE_DATABASE":"true",
//"AYANOVA_REMOVE_LICENSE_FROM_DB":"true",
"AYANOVA_REPORT_RENDERING_TIMEOUT":"60",
//"AYANOVA_REPORT_RENDER_API_URL_OVERRIDE": "http://localhost:7575",

View File

@@ -10,7 +10,15 @@ See the [upgrade instructions](ops-upgrade.md) section of this manual for detail
### AyaNova 8.2.1
In progress....
Released 2024-08-28
\*\*Changed
- Server: updated internal 3rd party database related dependencies
**Fixed**
- Server: resolved issue which could result in an overflow exception error when opening an existing work order
### AyaNova 8.2.0

View File

@@ -8,7 +8,7 @@ site_name: AyaNova manual
site_dir: "../../../server/AyaNova/wwwroot/docs"
site_url: https://ayanova.com/docs/
strict: true
copyright: Copyright © 2022-2024 Ground Zero Tech-Works Inc. REV-2024-06-03
copyright: Copyright © 2022-2024 Ground Zero Tech-Works Inc. REV-2024-08-28
extra:
generator: false
# Extensions

View File

@@ -1980,7 +1980,6 @@ CREATE OR REPLACE VIEW public.viewpartinventorylist
+ "AALTWHOLE.NAME AS ALTWHOLENAME, AALTWHOLE.ID AS ALTWHOLEID, (SELECT ARRAY_TO_STRING(ARRAY_AGG(serial),', ') FROM APARTSERIAL WHERE PARTID = APART.ID GROUP BY PARTID) AS PARTSERIALS "
+ "FROM APART LEFT JOIN AVENDOR AS AMAN ON (APART.MANUFACTURERID = AMAN.ID) LEFT JOIN AVENDOR AS AWHOLE ON (APART.WHOLESALERID = AWHOLE.ID) LEFT JOIN AVENDOR AS AALTWHOLE ON (APART.ALTERNATIVEWHOLESALERID = AALTWHOLE.ID)");
await ExecQueryAsync(@"
CREATE OR REPLACE VIEW public.viewpartinventorylist
AS