This commit is contained in:
2021-07-27 17:23:19 +00:00
parent f80573a140
commit 228752e3f0
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ namespace AyaNova.Models
[Required]
public TimeSpan WorkOrderCompleteByAge { get; set; } = TimeSpan.Zero;//was workorderclosebyage
public bool AllowScheduleConflicts { get; set; }
public bool AllowScheduleConflicts { get; set; } = true;

View File

@@ -252,7 +252,7 @@ namespace AyaNova.Util
await ExecQueryAsync("CREATE TABLE aglobalbizsettings (id INTEGER NOT NULL PRIMARY KEY, "
+ "searchcasesensitiveonly BOOL DEFAULT FALSE, "
+ "useinventory BOOL DEFAULT TRUE, "
+ "allowscheduleconflicts BOOL DEFAULT FALSE, "
+ "allowscheduleconflicts BOOL DEFAULT TRUE, "
+ "workordercompletebyage INTERVAL NOT NULL DEFAULT '00:00:00', "
+ "workordertraveldefaultminutes INTEGER NOT NULL DEFAULT 0, "
+ "worklaborscheduledefaultminutes INTEGER NOT NULL DEFAULT 0, "