//BEVEILIGING - ALLEEN TOEGANKELIJK MET EEN VAN DE PERMISSIE IN jo_access_control
if (!jo_access_control(['romanesco_beheer'])) {
return;
}
//HIER BEGINT PAGINA. ALLEEN TOEGANKELIJK MET JUISTE PERMISSIE
lt_table('lekkernassuh_gebruikers', 'Deelnemers',
"SELECT ospos_people.person_id,
ospos_people.person_id AS 'id',
ospos_people.first_name AS 'voornaam',
ospos_people.last_name AS 'achternaam',
ospos_people.email,
ospos_people.update_date AS 'laatst gewijzigd',
# ospos_people.address_1 AS 'Straat en huisnummer',
IF (ospos_people.active = 1, 'Actief', 'Pauze') AS 'Status',
ospos_stock_locations.location_name AS 'Afhaallocatie'
FROM ospos_people
JOIN ospos_customers
ON ospos_people.person_id = ospos_customers.person_id
JOIN ospos_stock_locations
ON ospos_people.location_id = ospos_stock_locations.location_id
WHERE ospos_customers.deleted = 0 ",
[
'rowaction' => [
[
'text' => 'Show details',
'setvar' => ['var_person_id' => '#0'],
'runblock' => 'lekkernassuh_gebruikersgegevens_beheren',
'output' => 'block'
]
],
'sortable' => true,
'filter' => true
]
);
Naar Deelnemerbeheer.
Naar Romanesco overzicht.