case 4460
This commit is contained in:
@@ -14,6 +14,10 @@ See the [upgrade instructions](ops-upgrade.md) section of this manual for detail
|
|||||||
|
|
||||||
- Server: Fixed bug in Unit report data's "LastWorkOrderViz" field being set to incorrect value
|
- Server: Fixed bug in Unit report data's "LastWorkOrderViz" field being set to incorrect value
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
- Server: manual / on demand backup files no longer prepended with "manual-", named same as daily automated backups. Existing "manual-" files found will have the "manual-" portion removed when next backup runs. This resolves a potential issue with pruning of excess backup sets and removes potential confusion from lack of consistent naming. Docs updated to remove reference to "manual-" naming of backup sets.
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- App: added `Quote w Travel Loan Item Expense Outside Service` report to available Quote reports as the original stock one left out some sections of the quote.
|
- App: added `Quote w Travel Loan Item Expense Outside Service` report to available Quote reports as the original stock one left out some sections of the quote.
|
||||||
@@ -21,6 +25,9 @@ See the [upgrade instructions](ops-upgrade.md) section of this manual for detail
|
|||||||
For existing databases [download Quote w Travel Loan Item Expense Outside Service](https://ayanova.com/download/xtra/Customer Quote w Travel Loan Item Expense Outside Service.ayrt)
|
For existing databases [download Quote w Travel Loan Item Expense Outside Service](https://ayanova.com/download/xtra/Customer Quote w Travel Loan Item Expense Outside Service.ayrt)
|
||||||
and [import to AyaNova](adm-report-templates.md#import).
|
and [import to AyaNova](adm-report-templates.md#import).
|
||||||
|
|
||||||
|
- Docs: added [documentation page](sub-service-intro.md) for AyaNova subscription service on-boarding information
|
||||||
|
|
||||||
|
|
||||||
### AyaNova 8.0.35 (2023-01-27)
|
### AyaNova 8.0.35 (2023-01-27)
|
||||||
|
|
||||||
#### Fixed
|
#### Fixed
|
||||||
@@ -31,7 +38,7 @@ See the [upgrade instructions](ops-upgrade.md) section of this manual for detail
|
|||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
- Server: added new [AYANOVA_REPORT_RENDER_API_URL_OVERRIDE](ops-config-report-rendering-api-url-override.md) configuration option for specific report rendering issue scenarios.
|
- Server: added new [AYANOVA_REPORT_RENDER_API_URL_OVERRIDE](ops-config-report-rendering-api-url-override.md) configuration option for specific report rendering issue scenarios
|
||||||
|
|
||||||
### AyaNova 8.0.33 (2023-01-24)
|
### AyaNova 8.0.33 (2023-01-24)
|
||||||
|
|
||||||
|
|||||||
@@ -327,7 +327,16 @@ namespace AyaNova.Util
|
|||||||
{
|
{
|
||||||
if (keepCount < 1) keepCount = 1;
|
if (keepCount < 1) keepCount = 1;
|
||||||
|
|
||||||
//case 4204 prepended db and at with * to accomodate manual backups also being pruned
|
//case 4460 rename manual- file pattern to support removal of manual- prepend on demand backup
|
||||||
|
//this ensures that pruning happens properly
|
||||||
|
var renameList = Directory.EnumerateFiles(ServerBootConfig.AYANOVA_BACKUP_FILES_PATH, "manual-*");
|
||||||
|
if (renameList.Count() > 0)
|
||||||
|
{
|
||||||
|
foreach (string renameFile in renameList)
|
||||||
|
{
|
||||||
|
File.Move(renameFile, renameFile.Replace("manual-", ""), true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//Database backups
|
//Database backups
|
||||||
var BackupFileList = Directory.EnumerateFiles(ServerBootConfig.AYANOVA_BACKUP_FILES_PATH, "*db-*.backup");
|
var BackupFileList = Directory.EnumerateFiles(ServerBootConfig.AYANOVA_BACKUP_FILES_PATH, "*db-*.backup");
|
||||||
|
|||||||
Reference in New Issue
Block a user