Ajout de la permission "consulter tous les clients" dans le module commercial, afin

qu'un commercial puisse voir que les clients qui lui sont affects.
This commit is contained in:
Regis Houssin 2006-03-07 12:30:09 +00:00
parent e3954f4ac7
commit c5fb4bc894

View File

@ -92,6 +92,15 @@ class modCommercial extends DolibarrModules
$this->rights[$r][4] = 'main';
$this->rights[$r][5] = 'lire';
$r++;
// 262 : Permission générale
$this->rights[$r][0] = 262;
$this->rights[$r][1] = 'Consulter tous les clients';
$this->rights[$r][2] = 'r';
$this->rights[$r][3] = 0;
$this->rights[$r][4] = 'main';
$this->rights[$r][5] = 'voir';
$r++;
}
/**