This commit is contained in:
2020-06-15 19:43:52 +00:00
parent 59f4c6a9d2
commit 57e24cc7d9
2 changed files with 28 additions and 2 deletions

View File

@@ -401,7 +401,13 @@ namespace AyaNova.Util
if (await ct.WorkOrder.AnyAsync()) return false;
if (await ct.Quote.AnyAsync()) return false;
if (await ct.PM.AnyAsync()) return false;
if (await ct.Unit.AnyAsync()) return false;
if (await ct.HeadOffice.AnyAsync()) return false;
if (await ct.LoanUnit.AnyAsync()) return false;
if (await ct.Part.AnyAsync()) return false;
if (await ct.Project.AnyAsync()) return false;
if (await ct.PurchaseOrder.AnyAsync()) return false;
return true;
}