This commit is contained in:
2021-05-07 23:10:21 +00:00
parent d7f6ef16eb
commit ec13b9265c

View File

@@ -71,6 +71,8 @@ namespace AyaNova.PickList
return $"auser.usertype!={(int)UserType.Customer} and auser.usertype!={(int)UserType.HeadOffice}"; return $"auser.usertype!={(int)UserType.Customer} and auser.usertype!={(int)UserType.HeadOffice}";
case "outside": case "outside":
return $"auser.usertype={(int)UserType.Customer} or auser.usertype={(int)UserType.HeadOffice}"; return $"auser.usertype={(int)UserType.Customer} or auser.usertype={(int)UserType.HeadOffice}";
case "tech":
return $"auser.usertype={(int)UserType.Service} or auser.usertype={(int)UserType.ServiceContractor}";
} }
return string.Empty; return string.Empty;
} }