This commit is contained in:
2021-09-10 17:35:26 +00:00
parent caf0f3071d
commit adda80c05b
11 changed files with 32 additions and 43 deletions

View File

@@ -22,7 +22,7 @@ namespace AyaNova.Models
//Picklist and other searches override the normal case insensitive value
//this is precautionarily added for non latinate languages where it could be an issue
public bool SearchCaseSensitiveOnly { get; set; }
public bool FilterCaseSensitive { get; set; }
public bool UseInventory { get; set; }
//TAX CODE DEFAULTS
@@ -92,7 +92,7 @@ namespace AyaNova.Models
public GlobalBizSettings()
{
Id = 1;//always 1
SearchCaseSensitiveOnly = false;
FilterCaseSensitive = false;
UseInventory = true;
}
}