Merge branch 'develop' of git://github.com/Dolibarr/dolibarr.git into develop
This commit is contained in:
commit
322928fbae
@ -978,7 +978,7 @@ $form = new Form($db);
|
|||||||
$formother = new FormOther($db);
|
$formother = new FormOther($db);
|
||||||
$formfile = new FormFile($db);
|
$formfile = new FormFile($db);
|
||||||
$formaskpricesupplier = new FormAskPriceSupplier($db);
|
$formaskpricesupplier = new FormAskPriceSupplier($db);
|
||||||
$formmargin = new FormMargin($this->db);
|
$formmargin = new FormMargin($db);
|
||||||
$companystatic = new Societe($db);
|
$companystatic = new Societe($db);
|
||||||
|
|
||||||
$now = dol_now();
|
$now = dol_now();
|
||||||
|
|||||||
@ -1184,7 +1184,7 @@ $form = new Form($db);
|
|||||||
$formother = new FormOther($db);
|
$formother = new FormOther($db);
|
||||||
$formfile = new FormFile($db);
|
$formfile = new FormFile($db);
|
||||||
$formpropal = new FormPropal($db);
|
$formpropal = new FormPropal($db);
|
||||||
$formmargin = new FormMargin($this->db);
|
$formmargin = new FormMargin($db);
|
||||||
$companystatic = new Societe($db);
|
$companystatic = new Societe($db);
|
||||||
if (! empty($conf->projet->enabled)) { $formproject = new FormProjets($db); }
|
if (! empty($conf->projet->enabled)) { $formproject = new FormProjets($db); }
|
||||||
|
|
||||||
|
|||||||
@ -1801,7 +1801,7 @@ if (empty($reshook))
|
|||||||
$form = new Form($db);
|
$form = new Form($db);
|
||||||
$formother = new FormOther($db);
|
$formother = new FormOther($db);
|
||||||
$formfile = new FormFile($db);
|
$formfile = new FormFile($db);
|
||||||
$formmargin = new FormMargin($this->db);
|
$formmargin = new FormMargin($db);
|
||||||
$bankaccountstatic = new Account($db);
|
$bankaccountstatic = new Account($db);
|
||||||
if (! empty($conf->projet->enabled)) { $formproject = new FormProjets($db); }
|
if (! empty($conf->projet->enabled)) { $formproject = new FormProjets($db); }
|
||||||
|
|
||||||
|
|||||||
@ -2145,6 +2145,16 @@ function dol_check_secure_access_document($modulepart,$original_file,$entity,$fu
|
|||||||
$original_file=$conf->banque->dir_output.'/bordereau/'.$original_file; // original_file should contains relative path so include the get_exdir result
|
$original_file=$conf->banque->dir_output.'/bordereau/'.$original_file; // original_file should contains relative path so include the get_exdir result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Wrapping for bank
|
||||||
|
else if ($modulepart == 'bank')
|
||||||
|
{
|
||||||
|
if ($fuser->rights->banque->lire)
|
||||||
|
{
|
||||||
|
$accessallowed=1;
|
||||||
|
}
|
||||||
|
$original_file=$conf->bank->dir_output.'/'.$original_file;
|
||||||
|
}
|
||||||
|
|
||||||
// Wrapping for export module
|
// Wrapping for export module
|
||||||
else if ($modulepart == 'export')
|
else if ($modulepart == 'export')
|
||||||
{
|
{
|
||||||
|
|||||||
@ -3,6 +3,7 @@ Suppliers=Suppliers
|
|||||||
AddSupplier=Create a supplier
|
AddSupplier=Create a supplier
|
||||||
SupplierRemoved=Supplier removed
|
SupplierRemoved=Supplier removed
|
||||||
SuppliersInvoice=Suppliers invoice
|
SuppliersInvoice=Suppliers invoice
|
||||||
|
ShowSupplierInvoice=Show Supplier Invoice
|
||||||
NewSupplier=New supplier
|
NewSupplier=New supplier
|
||||||
History=History
|
History=History
|
||||||
ListOfSuppliers=List of suppliers
|
ListOfSuppliers=List of suppliers
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user