'Edit the sales_order' => 'Bearbeiten des Auftrags',
'Edit the sales_quotation' => 'Bearbeiten des Angebots',
'Edit time recording type' => 'Typ für Zeiterfassung bearbeiten',
+ 'Edit time recordings of all staff members' => 'Zeiterfassungseinträge aller Mitarbeiter bearbeiten',
'Edit title' => 'Titiel bearbeiten',
'Edit units' => 'Einheiten bearbeiten',
'Edit user signature' => 'Benutzersignatur bearbeiten',
'List of jobs' => 'Jobliste',
'List of tax zones' => 'Liste der Steuerzonen',
'List open SEPA exports' => 'Noch nicht ausgeführte SEPA-Exporte anzeigen',
+ 'List time recordings of all staff members' => 'Zeiterfassungseinträge aller Mitarbeiter anzeigen',
'Listprice' => 'Listenpreis',
'Load' => 'Laden',
'Load an existing draft' => 'Einen bestehenden Entwurf laden',
'Edit the sales_order' => '',
'Edit the sales_quotation' => '',
'Edit time recording type' => '',
+ 'Edit time recordings of all staff members' => '',
'Edit title' => '',
'Edit units' => '',
'Edit user signature' => '',
'List of jobs' => '',
'List of tax zones' => '',
'List open SEPA exports' => '',
+ 'List time recordings of all staff members' => '',
'Listprice' => '',
'Load' => '',
'Load an existing draft' => '',
--- /dev/null
+-- @tag: rights_time_recording_show_edit_all
+-- @description: Rechte, Zeiterfassungseinträge aller Mitarbeiter anzuzeigen bzw. zu bearbeiten
+-- @depends: right_time_recording
+-- @locales: List time recordings of all staff members
+-- @locales: Edit time recordings of all staff members
+
+INSERT INTO auth.master_rights (position, name, description, category)
+ VALUES ((SELECT position + 20 FROM auth.master_rights WHERE name = 'time_recording'),
+ 'time_recording_show_all',
+ 'List time recordings of all staff members',
+ FALSE);
+
+INSERT INTO auth.group_rights (group_id, "right", granted)
+ SELECT id, 'time_recording_show_all', true
+ FROM auth.group
+ WHERE name = 'Vollzugriff';
+
+INSERT INTO auth.master_rights (position, name, description, category)
+ VALUES ((SELECT position + 20 FROM auth.master_rights WHERE name = 'time_recording_show_all'),
+ 'time_recording_edit_all',
+ 'Edit time recordings of all staff members',
+ FALSE);
+
+INSERT INTO auth.group_rights (group_id, "right", granted)
+ SELECT id, 'time_recording_edit_all', true
+ FROM auth.group
+ WHERE name = 'Vollzugriff';