This commit is contained in:
2021-05-14 17:21:09 +00:00
parent f9ef637daa
commit 4e3668673f
2 changed files with 9 additions and 4 deletions

View File

@@ -1900,9 +1900,9 @@ namespace AyaNova.Biz
if(c.ContractServiceRateOverrideItems.Count>0){
//does our contract rate have a matching tag?
subTags.All(z => objectTags.Any(x => x == z));
//TODO: Iterate all contract tagged items, use the one with the MOST matching tags
foreach(var csr in c.ContractServiceRateOverrideItems){
csr.Tags.
csr.Tags.All(z => Rate.Tags.Any(x => x == z));
}
}