FM_OrgAdminCountry is a FiLMS module that allows country-specific organization admins to administrate multiple organizations by country.
It is an automated process that is triggered when:
If the organization's Primary Country is not assigned yet, users with Organization Admin role will administer it.
Installation
Install FM_OrgAdminCountry globally. During installation, FiLMS will create:
N/A.
Crescent Point
To find out what country is assigned to all organizations, run the following query:
SELECT
organizations.id,
organizations.name,
IF(organization_details.value=95,'Canada',IF(organization_details.value=96,'USA','')) AS 'Primary Country'
FROM organizations
LEFT JOIN organization_details ON organization_details.organization_id = organizations.id AND detail_field_id = 193