This commit is contained in:
2021-05-28 18:09:12 +00:00
parent 8010eb6833
commit e40ea05b4d
4 changed files with 4 additions and 5 deletions

2
.vscode/launch.json vendored
View File

@@ -53,7 +53,7 @@
"AYANOVA_FOLDER_USER_FILES": "c:\\temp\\RavenTestData\\userfiles",
"AYANOVA_FOLDER_BACKUP_FILES": "c:\\temp\\RavenTestData\\backupfiles",
"AYANOVA_FOLDER_TEMPORARY_SERVER_FILES": "c:\\temp\\RavenTestData\\tempfiles",
"AYANOVA_SERVER_TEST_MODE": "true",
"AYANOVA_SERVER_TEST_MODE": "false",
"AYANOVA_SERVER_TEST_MODE_SEEDLEVEL": "small",
"AYANOVA_SERVER_TEST_MODE_TZ_OFFSET": "-7",
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\data\\code\\postgres_13\\bin\\"

View File

@@ -3606,7 +3606,7 @@ namespace AyaNova.Biz
//await FileUtil.DeleteAttachmentsForObjectAsync(dbObject.AyaType, dbObject.Id, ct);
if (parentTransaction == null)
await transaction.CommitAsync();
await ExpenseHandlePotentialNotificationEvent(AyaEvent.Deleted, dbObject);
await PartRequestHandlePotentialNotificationEvent(AyaEvent.Deleted, dbObject);
}
catch
{

View File

@@ -24,8 +24,7 @@ namespace AyaNova.Models
public string PartWarehouseViz { get; set; }
[Required]
public decimal Quantity { get; set; }
[Required]
public long? PurchaseOrderItemId { get; set; }
[NotMapped]
public string PurchaseOrderViz { get; set; }

View File

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