|
|
@ -194,7 +194,7 @@ public class ClientCommonService : IClientCommonService
|
|
|
|
.Select<ClientContactRes>().ToListAsync();
|
|
|
|
.Select<ClientContactRes>().ToListAsync();
|
|
|
|
var conditions = new List<IConditionalModel>();
|
|
|
|
var conditions = new List<IConditionalModel>();
|
|
|
|
|
|
|
|
|
|
|
|
var query = tenantDb.Queryable<InfoClient>();
|
|
|
|
var query = tenantDb.Queryable<InfoClient>().ClearFilter<ISharedOrgId>();
|
|
|
|
(query, _, conditions) = await commonService.GetSpecialVisibleDataRuleFilter<InfoClient>(query, tenantDb);
|
|
|
|
(query, _, conditions) = await commonService.GetSpecialVisibleDataRuleFilter<InfoClient>(query, tenantDb);
|
|
|
|
var userids = new List<string>();
|
|
|
|
var userids = new List<string>();
|
|
|
|
if (conditions.Count>0)
|
|
|
|
if (conditions.Count>0)
|
|
|
@ -1271,7 +1271,7 @@ public class ClientCommonService : IClientCommonService
|
|
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
|
|
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
|
|
|
|
var conditions = new List<IConditionalModel>();
|
|
|
|
var conditions = new List<IConditionalModel>();
|
|
|
|
|
|
|
|
|
|
|
|
var query = tenantDb.Queryable<InfoClient>();
|
|
|
|
var query = tenantDb.Queryable<InfoClient>().ClearFilter<ISharedOrgId>();
|
|
|
|
(query, _, conditions) = await commonService.GetSpecialVisibleDataRuleFilter<InfoClient>(query, tenantDb);
|
|
|
|
(query, _, conditions) = await commonService.GetSpecialVisibleDataRuleFilter<InfoClient>(query, tenantDb);
|
|
|
|
var userids = new List<string>();
|
|
|
|
var userids = new List<string>();
|
|
|
|
if (conditions.Count > 0)
|
|
|
|
if (conditions.Count > 0)
|
|
|
|