Currency : export PDF and CSV with currency for printing financial ledger listing(oneline)

This commit is contained in:
Dany De Bontridder 2018-12-03 13:53:30 +01:00
parent dd8bc6750f
commit 18bb3ec046
7 changed files with 96 additions and 22 deletions

View file

@ -271,7 +271,10 @@ if ( ! file_exists($ps2pdf) )
/**
* Outil pour manipuler les PDF
*/
$pdftk='/usr/bin/pdftk';
if ( ! isset ($pdftk))
{
$pdftk='/usr/bin/pdftk';
}
if (file_exists($pdftk))
{
define ('PDFTK',$pdftk);