This commit is contained in:
2021-10-15 17:12:00 +00:00
parent 6a520b3e13
commit 7c0c13f4f5
4 changed files with 11 additions and 4 deletions

View File

@@ -23,8 +23,8 @@ SERVER
- BUMP AyaNova.csproj version number
- BUILD RELEASE Run buildrelease.bat in server project folder
https://www.ayanova.com/Downloads/v8/ayanova8.alpha.134-win-x64.7z
https://www.ayanova.com/Downloads/v8/migrate134.7z
https://www.ayanova.com/Downloads/v8/ayanova8.alpha.135-win-x64.7z
https://www.ayanova.com/Downloads/v8/migrate135.7z
**ARCHIVE IT, otherwise it could be false positived
- COPY TO DEVOPS SERVER

View File

@@ -31,6 +31,9 @@ For details see the [Authorization roles](ay-biz-admin-roles.md) guide for more
### Clients
* v7 Clients have been renamed to "Customers"
### Unit Models
* In v8 Unit Models no longer have the "Model Number" field. The "Name" field is now the primary identifier. Migrated v7 Unit Models will have their Model Number and Name fields combined into the single v8 Name field.
### Schedule markers
Schedule markers are now split into two separate types of objects in v8 corresponding to v7 Schedule markers with a "follow up" object link and those that do not.

View File

@@ -130,7 +130,11 @@ Pricing and costs are now clearly displayed on the work order in a consistent ma
#### Customer and Unit data list "Last completed... " columns
In v7 the Clients grid and the Units grid show the "Last closed service workorder" and "Last closed service date" columns.
In v8 since Closed is now a propert of the work order status the Customer and Unit data tables will show "Last completed work order" as "Last completed service date" instead.
In v8 the Customer and Unit data tables now have "Last work order" and "Last service date" columns available which will display the most recent Work order that Customer or Unit has been selected on regardless of Work order Status.
#### Unit Models
In v8 Unit Models no longer have the "Model Number" field. The "Name" field is now the primary identifier. Migrated v7 Unit Models will have their Model Number and Name fields combined into the single v8 Name field.
### Quotes

View File

@@ -5,7 +5,7 @@ namespace AyaNova.Util
/// </summary>
internal static class AyaNovaVersion
{
public const string VersionString = "8.0.0-alpha.134";
public const string VersionString = "8.0.0-alpha.135";
public const string FullNameAndVersion = "AyaNova server " + VersionString;
}//eoc
}//eons