New: Add permissions to read all trips and expenses.
This commit is contained in:
parent
47c2dc4fcf
commit
3ffd4432df
@ -5,6 +5,7 @@ English Dolibarr ChangeLog
|
||||
|
||||
***** ChangeLog for 3.7 compared to 3.6.* *****
|
||||
For users:
|
||||
- New: Add permissions to read all trips and expenses.
|
||||
- New: Can filter on date into tab "Referring object" of a project.
|
||||
- New: Module notification has been enhanced:
|
||||
EMail use now language of target contact.
|
||||
|
||||
@ -78,25 +78,31 @@ class modDeplacement extends DolibarrModules
|
||||
$this->rights_class = 'deplacement';
|
||||
|
||||
$this->rights[1][0] = 171;
|
||||
$this->rights[1][1] = 'Lire les deplacements';
|
||||
$this->rights[1][1] = 'Lire ses notes de frais et deplacements et celles de sa hierarchy';
|
||||
$this->rights[1][2] = 'r';
|
||||
$this->rights[1][3] = 1;
|
||||
$this->rights[1][4] = 'lire';
|
||||
|
||||
$this->rights[2][0] = 172;
|
||||
$this->rights[2][1] = 'Creer/modifier les deplacements';
|
||||
$this->rights[2][1] = 'Creer/modifier une note de frais et deplacements';
|
||||
$this->rights[2][2] = 'w';
|
||||
$this->rights[2][3] = 0;
|
||||
$this->rights[2][4] = 'creer';
|
||||
|
||||
$this->rights[3][0] = 173;
|
||||
$this->rights[3][1] = 'Supprimer les deplacements';
|
||||
$this->rights[3][1] = 'Supprimer les notes de frais et deplacements';
|
||||
$this->rights[3][2] = 'd';
|
||||
$this->rights[3][3] = 0;
|
||||
$this->rights[3][4] = 'supprimer';
|
||||
|
||||
$this->rights[3][0] = 174;
|
||||
$this->rights[3][1] = 'Lire toutes les notes de frais';
|
||||
$this->rights[3][2] = 'd';
|
||||
$this->rights[3][3] = 0;
|
||||
$this->rights[3][4] = 'readall';
|
||||
|
||||
$this->rights[6][0] = 178;
|
||||
$this->rights[6][1] = 'Exporter les deplacements';
|
||||
$this->rights[6][1] = 'Exporter les notes de frais et deplacements';
|
||||
$this->rights[6][2] = 'd';
|
||||
$this->rights[6][3] = 0;
|
||||
$this->rights[6][4] = 'export';
|
||||
|
||||
@ -611,10 +611,11 @@ Permission162=Create/modify contracts
|
||||
Permission163=Activate a service of a contract
|
||||
Permission164=Disable a service of a contract
|
||||
Permission165=Delete contracts
|
||||
Permission171=Read trips
|
||||
Permission172=Create/modify trips
|
||||
Permission173=Delete trips
|
||||
Permission178=Export trips
|
||||
Permission171=Read trips and expenses (own and his subordinates)
|
||||
Permission172=Create/modify trips and expenses
|
||||
Permission173=Delete trips and expenses
|
||||
Permission174=Read all trips and expenses
|
||||
Permission178=Export trips and expenses
|
||||
Permission180=Read suppliers
|
||||
Permission181=Read supplier orders
|
||||
Permission182=Create/modify supplier orders
|
||||
|
||||
Loading…
Reference in New Issue
Block a user