diff --git a/htdocs/core/modules/commande/doc/doc_generic_order_odt.modules.php b/htdocs/core/modules/commande/doc/doc_generic_order_odt.modules.php index ceccfdc5765a899fc48e4c8c71a9853db6b3bb46..5529a25ce1072cf32f57fffdea6543b12074f3d0 100644 --- a/htdocs/core/modules/commande/doc/doc_generic_order_odt.modules.php +++ b/htdocs/core/modules/commande/doc/doc_generic_order_odt.modules.php @@ -144,8 +144,26 @@ class doc_generic_order_odt extends ModelePDFCommandes $texte.= '<br></div></div>'; // Scan directories - if (count($listofdir)) $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'.count($listoffiles).'</b>'; + $nbofiles=count($listoffiles); + if (! empty($conf->global->COMMANDE_ADDON_PDF_ODT_PATH)) + { + $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'; + //$texte.=$nbofiles?'<a id="a_'.get_class($this).'" href="#">':''; + $texte.=count($listoffiles); + //$texte.=$nbofiles?'</a>':''; + $texte.='</b>'; + } + if ($nbofiles) + { + $texte.='<div id="div_'.get_class($this).'" class="hidden">'; + foreach($listoffiles as $file) + { + $texte.=$file['name'].'<br>'; + } + $texte.='<div id="div_'.get_class($this).'">'; + } + $texte.= '</td>'; $texte.= '<td valign="top" rowspan="2" class="hideonsmartphone">'; diff --git a/htdocs/core/modules/expedition/doc/doc_generic_shipment_odt.modules.php b/htdocs/core/modules/expedition/doc/doc_generic_shipment_odt.modules.php index 969fda5e072c7743978e1e7350821b5bfeb82941..9681e1a6d3e12515c21aba9be328a7cb66ba4d45 100644 --- a/htdocs/core/modules/expedition/doc/doc_generic_shipment_odt.modules.php +++ b/htdocs/core/modules/expedition/doc/doc_generic_shipment_odt.modules.php @@ -145,7 +145,24 @@ class doc_generic_shipment_odt extends ModelePdfExpedition $texte.= '<br></div></div>'; // Scan directories - if (count($listofdir)) $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'.count($listoffiles).'</b>'; + $nbofiles=count($listoffiles); + if (! empty($conf->global->EXPEDITION_ADDON_PDF_ODT_PATH)) + { + $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'; + //$texte.=$nbofiles?'<a id="a_'.get_class($this).'" href="#">':''; + $texte.=count($listoffiles); + //$texte.=$nbofiles?'</a>':''; + $texte.='</b>'; + } + if ($nbofiles) + { + $texte.='<div id="div_'.get_class($this).'" class="hidden">'; + foreach($listoffiles as $file) + { + $texte.=$file['name'].'<br>'; + } + $texte.='<div id="div_'.get_class($this).'">'; + } $texte.= '</td>'; diff --git a/htdocs/core/modules/facture/doc/doc_generic_invoice_odt.modules.php b/htdocs/core/modules/facture/doc/doc_generic_invoice_odt.modules.php index 657688cb20e54812cddc53a0a34c34cfad5274f6..34d1bcf0b2e18bf0f325ac45354c29ef4d48943e 100644 --- a/htdocs/core/modules/facture/doc/doc_generic_invoice_odt.modules.php +++ b/htdocs/core/modules/facture/doc/doc_generic_invoice_odt.modules.php @@ -144,7 +144,24 @@ class doc_generic_invoice_odt extends ModelePDFFactures $texte.= '<br></div></div>'; // Scan directories - if (count($listofdir)) $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'.count($listoffiles).'</b>'; + $nbofiles=count($listoffiles); + if (! empty($conf->global->FACTURE_ADDON_PDF_ODT_PATH)) + { + $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'; + //$texte.=$nbofiles?'<a id="a_'.get_class($this).'" href="#">':''; + $texte.=count($listoffiles); + //$texte.=$nbofiles?'</a>':''; + $texte.='</b>'; + } + if ($nbofiles) + { + $texte.='<div id="div_'.get_class($this).'" class="hidden">'; + foreach($listoffiles as $file) + { + $texte.=$file['name'].'<br>'; + } + $texte.='<div id="div_'.get_class($this).'">'; + } $texte.= '</td>'; diff --git a/htdocs/core/modules/project/doc/doc_generic_project_odt.modules.php b/htdocs/core/modules/project/doc/doc_generic_project_odt.modules.php index b80eded4bd9dfc664300058528d164914e7409ca..c18b6a17e8d463b0b0d183dfffc8c6ef4e7609ac 100644 --- a/htdocs/core/modules/project/doc/doc_generic_project_odt.modules.php +++ b/htdocs/core/modules/project/doc/doc_generic_project_odt.modules.php @@ -357,7 +357,25 @@ class doc_generic_project_odt extends ModelePDFProjects $texte.= '<br></div></div>'; // Scan directories - if (count($listofdir)) $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'.count($listoffiles).'</b>'; + $nbofiles=count($listoffiles); + if (! empty($conf->global->PROJECT_ADDON_PDF_ODT_PATH)) + { + $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'; + //$texte.=$nbofiles?'<a id="a_'.get_class($this).'" href="#">':''; + $texte.=$nbofiles; + //$texte.=$nbofiles?'</a>':''; + $texte.='</b>'; + } + + if ($nbofiles) + { + $texte.='<div id="div_'.get_class($this).'" class="hidden">'; + foreach($listoffiles as $file) + { + $texte.=$file['name'].'<br>'; + } + $texte.='<div id="div_'.get_class($this).'">'; + } $texte.= '</td>'; diff --git a/htdocs/core/modules/project/task/doc/doc_generic_task_odt.modules.php b/htdocs/core/modules/project/task/doc/doc_generic_task_odt.modules.php index 19dbe2f5ad288da02490d1f234eb38aaddbaf2e2..e9dbc1d2adcb2233039477d8038683638bb567bb 100644 --- a/htdocs/core/modules/project/task/doc/doc_generic_task_odt.modules.php +++ b/htdocs/core/modules/project/task/doc/doc_generic_task_odt.modules.php @@ -358,7 +358,25 @@ class doc_generic_task_odt extends ModelePDFTask $texte.= '<br></div></div>'; // Scan directories - if (count($listofdir)) $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'.count($listoffiles).'</b>'; + $nbofiles=count($listoffiles); + if (! empty($conf->global->PROJECT_TASK_ADDON_PDF_ODT_PATH)) + { + $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'; + //$texte.=$nbofiles?'<a id="a_'.get_class($this).'" href="#">':''; + $texte.=$nbofiles; + //$texte.=$nbofiles?'</a>':''; + $texte.='</b>'; + } + + if ($nbofiles) + { + $texte.='<div id="div_'.get_class($this).'" class="hidden">'; + foreach($listoffiles as $file) + { + $texte.=$file['name'].'<br>'; + } + $texte.='<div id="div_'.get_class($this).'">'; + } $texte.= '</td>'; diff --git a/htdocs/core/modules/propale/doc/doc_generic_proposal_odt.modules.php b/htdocs/core/modules/propale/doc/doc_generic_proposal_odt.modules.php index e2272ba6ffbe87ee01e43c2ecf0505bfbb10f979..4ca44452c8afd031268d3203497c53546a8ba3d1 100644 --- a/htdocs/core/modules/propale/doc/doc_generic_proposal_odt.modules.php +++ b/htdocs/core/modules/propale/doc/doc_generic_proposal_odt.modules.php @@ -149,10 +149,25 @@ class doc_generic_proposal_odt extends ModelePDFPropales $texte.= '<br></div></div>'; // Scan directories - if (count($listofdir)) + $nbofiles=count($listoffiles); + if (! empty($conf->global->PROPALE_ADDON_PDF_ODT_PATH)) { - $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'.count($listoffiles).'</b>'; + $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'; + //$texte.=$nbofiles?'<a id="a_'.get_class($this).'" href="#">':''; + $texte.=count($listoffiles); + //$texte.=$nbofiles?'</a>':''; + $texte.='</b>'; + } + if ($nbofiles) + { + $texte.='<div id="div_'.get_class($this).'" class="hidden">'; + foreach($listoffiles as $file) + { + $texte.=$file['name'].'<br>'; + } + $texte.='<div id="div_'.get_class($this).'">'; + if ($conf->global->MAIN_PROPAL_CHOOSE_ODT_DOCUMENT > 0) { // Model for creation diff --git a/htdocs/core/modules/societe/doc/doc_generic_odt.modules.php b/htdocs/core/modules/societe/doc/doc_generic_odt.modules.php index 548e72b56756f09d1ab6576bfa15bfaa8153ff56..63dbc12cf5b443f3a0839b350a98815ca36dd7c4 100644 --- a/htdocs/core/modules/societe/doc/doc_generic_odt.modules.php +++ b/htdocs/core/modules/societe/doc/doc_generic_odt.modules.php @@ -131,8 +131,26 @@ class doc_generic_odt extends ModeleThirdPartyDoc $texte.= '</table>'; // Scan directories - if (count($listofdir)) $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'.count($listoffiles).'</b>'; + $nbofiles=count($listoffiles); + if (! empty($conf->global->COMPANY_ADDON_PDF_ODT_PATH)) + { + $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'; + //$texte.=$nbofiles?'<a id="a_'.get_class($this).'" href="#">':''; + $texte.=$nbofiles; + //$texte.=$nbofiles?'</a>':''; + $texte.='</b>'; + } + if ($nbofiles) + { + $texte.='<div id="div_'.get_class($this).'" class="hidden">'; + foreach($listoffiles as $file) + { + $texte.=$file['name'].'<br>'; + } + $texte.='<div id="div_'.get_class($this).'">'; + } + $texte.= '</td>'; $texte.= '<td valign="top" rowspan="2" class="hideonsmartphone">'; diff --git a/htdocs/core/modules/supplier_proposal/doc/doc_generic_supplier_proposal_odt.modules.php b/htdocs/core/modules/supplier_proposal/doc/doc_generic_supplier_proposal_odt.modules.php index 0a468681edc6bad6bc33a0d5bf076c0ac4e0d24c..a820265571cf76da3234fbb959aff875bcc00b24 100644 --- a/htdocs/core/modules/supplier_proposal/doc/doc_generic_supplier_proposal_odt.modules.php +++ b/htdocs/core/modules/supplier_proposal/doc/doc_generic_supplier_proposal_odt.modules.php @@ -149,9 +149,24 @@ class doc_generic_supplier_proposal_odt extends ModelePDFSupplierProposal $texte.= '<br></div></div>'; // Scan directories - if (count($listofdir)) + $nbofiles=count($listoffiles); + if (! empty($conf->global->SUPPLIER_PROPOSAL_ADDON_PDF_ODT_PATH)) { - $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'.count($listoffiles).'</b>'; + $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'; + //$texte.=$nbofiles?'<a id="a_'.get_class($this).'" href="#">':''; + $texte.=count($listoffiles); + //$texte.=$nbofiles?'</a>':''; + $texte.='</b>'; + } + + if ($nbofiles) + { + $texte.='<div id="div_'.get_class($this).'" class="hidden">'; + foreach($listoffiles as $file) + { + $texte.=$file['name'].'<br>'; + } + $texte.='<div id="div_'.get_class($this).'">'; if ($conf->global->MAIN_SUPPLIER_PROPOSAL_CHOOSE_ODT_DOCUMENT > 0) {