27 lines
911 B
Python
27 lines
911 B
Python
VISIBILITY_MAP = {
|
|
'userrelations': 'organization',
|
|
'organization': 'id',
|
|
'quota': ['registerer_organization', 'assigned_organizations'],
|
|
'quotastats': ['quota__registerer_organization', 'quota__assigned_organizations'],
|
|
'productstats': 'organization',
|
|
'quotadistribution': ['assigner_organization', 'assigned_organization'],
|
|
'inventoryentry': 'organization',
|
|
'inventoryquotasaletransaction': 'organization',
|
|
'device': 'organization',
|
|
|
|
# 'deviceactivationcode': 'organization',
|
|
# 'deviceversion': 'organization',
|
|
# 'posclient': 'organization',
|
|
# 'deviceassignment': 'organization',
|
|
# 'stakeholders': 'organization',
|
|
# 'stakeholdershareamount': 'registering_organization',
|
|
# 'posfreeproducts': 'organization',
|
|
}
|
|
|
|
VISIBILITY_MAP_BY_ORG_KEY = {
|
|
'device': {
|
|
'PSP': 'organization',
|
|
'CO': 'assignment__client__organization'
|
|
},
|
|
}
|