This commit is contained in:
2020-12-29 01:29:43 +00:00
parent 6c430068f0
commit 3f4c043ac3
4 changed files with 11 additions and 8 deletions

View File

@@ -773,6 +773,7 @@ namespace AyaNova.Util
TaxCode tc = new TaxCode();
tc.Name = "Sales only";
tc.Notes = "Example sales only tax";
tc.Active=true;
tc.Tags = RandomTags();
tc.TaxA = 0;
tc.TaxB = 0.07m;
@@ -793,6 +794,7 @@ namespace AyaNova.Util
{
TaxCode tc = new TaxCode();
tc.Name = "Goods only";
tc.Active=true;
tc.Notes = "Example goods only tax";
tc.Tags = RandomTags();
tc.TaxB = 0;
@@ -814,6 +816,7 @@ namespace AyaNova.Util
{
TaxCode tc = new TaxCode();
tc.Name = "Sales & Goods";
tc.Active=true;
tc.Notes = "Example sales and goods tax";
tc.Tags = RandomTags();
tc.TaxA = 0.07m;