31 require_once DOL_DOCUMENT_ROOT.
'/core/modules/supplier_order/modules_commandefournisseur.php';
32 require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
33 require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
34 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
35 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
36 require_once DOL_DOCUMENT_ROOT.
'/core/lib/doc.lib.php';
53 public $version =
'dolibarr';
63 global $conf, $langs, $mysoc;
66 $langs->loadLangs(array(
"main",
"companies"));
69 $this->
name =
"ODT templates";
70 $this->
description = $langs->trans(
"DocumentModelOdt");
71 $this->scandir =
'SUPPLIER_ORDER_ADDON_PDF_ODT_PATH';
75 $this->page_largeur = 0;
76 $this->page_hauteur = 0;
77 $this->format = array($this->page_largeur, $this->page_hauteur);
78 $this->marge_gauche = 0;
79 $this->marge_droite = 0;
80 $this->marge_haute = 0;
81 $this->marge_basse = 0;
83 $this->option_logo = 1;
84 $this->option_tva = 0;
85 $this->option_modereg = 0;
86 $this->option_condreg = 0;
87 $this->option_escompte = 0;
88 $this->option_credit_note = 0;
89 $this->option_freetext = 1;
90 $this->option_draft_watermark = 0;
93 $this->issuer = $mysoc;
94 if (!$this->issuer->country_code) {
95 $this->issuer->country_code = substr($langs->defaultlang, -2);
108 global $conf, $langs;
111 $langs->loadLangs(array(
"errors",
"companies"));
116 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST" enctype="multipart/form-data">';
117 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
118 $texte .=
'<input type="hidden" name="page_y" value="">';
119 $texte .=
'<input type="hidden" name="action" value="setModuleOptions">';
120 $texte .=
'<input type="hidden" name="param1" value="SUPPLIER_ORDER_ADDON_PDF_ODT_PATH">';
121 $texte .=
'<table class="nobordernopadding" width="100%">';
124 $texte .=
'<tr><td>';
125 $texttitle = $langs->trans(
"ListOfDirectories");
126 $listofdir = explode(
',', preg_replace(
'/[\r\n]+/',
',', trim($conf->global->SUPPLIER_ORDER_ADDON_PDF_ODT_PATH)));
127 $listoffiles = array();
128 foreach ($listofdir as $key => $tmpdir) {
129 $tmpdir = trim($tmpdir);
130 $tmpdir = preg_replace(
'/DOL_DATA_ROOT/', DOL_DATA_ROOT, $tmpdir);
132 unset($listofdir[$key]);
135 if (!is_dir($tmpdir)) {
136 $texttitle .=
img_warning($langs->trans(
"ErrorDirNotFound", $tmpdir), 0);
138 $tmpfiles =
dol_dir_list($tmpdir,
'files', 0,
'\.(ods|odt)');
139 if (count($tmpfiles)) {
140 $listoffiles = array_merge($listoffiles, $tmpfiles);
144 $texthelp = $langs->trans(
"ListOfDirectoriesForModelGenODT");
146 $texthelp .=
'<br>'.$langs->trans(
"FollowingSubstitutionKeysCanBeUsed").
'<br>';
147 $texthelp .= $langs->transnoentitiesnoconv(
"FullListOnOnlineDocumentation");
149 $texte .=
$form->textwithpicto($texttitle, $texthelp, 1,
'help',
'', 1);
150 $texte .=
'<div><div style="display: inline-block; min-width: 100px; vertical-align: middle;">';
151 $texte .=
'<textarea class="flat" cols="60" name="value1">';
152 $texte .= $conf->global->SUPPLIER_ORDER_ADDON_PDF_ODT_PATH;
153 $texte .=
'</textarea>';
154 $texte .=
'</div><div style="display: inline-block; vertical-align: middle;">';
155 $texte .=
'<input type="submit" class="button small reposition" name="modify" value="'.$langs->trans(
"Modify").
'">';
156 $texte .=
'<br></div></div>';
159 $nbofiles = count($listoffiles);
160 if (!empty($conf->global->SUPPLIER_ORDER_ADDON_PDF_ODT_PATH)) {
161 $texte .= $langs->trans(
"NumberOfModelFilesFound").
': <b>';
163 $texte .= count($listoffiles);
169 $texte .=
'<div id="div_'.get_class($this).
'" class="hiddenx">';
171 foreach ($listoffiles as $file) {
172 $texte .=
'- '.$file[
'name'].
' <a href="'.DOL_URL_ROOT.
'/document.php?modulepart=doctemplates&file=supplier_orders/'.urlencode(basename($file[
'name'])).
'">'.
img_picto(
'',
'listlight').
'</a>';
173 $texte .=
' <a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?modulepart=doctemplates&keyforuploaddir=SUPPLIER_ORDER_ADDON_PDF_ODT_PATH&action=deletefile&token='.
newToken().
'&file='.urlencode(basename($file[
'name'])).
'">'.
img_picto(
'',
'delete').
'</a>';
179 $texte .=
'<div>'.$langs->trans(
"UploadNewTemplate").
' <input type="file" name="uploadfile">';
180 $texte .=
'<input type="hidden" value="SUPPLIER_ORDER_ADDON_PDF_ODT_PATH" name="keyforuploaddir">';
181 $texte .=
'<input type="submit" class="button small" value="'.dol_escape_htmltag($langs->trans(
"Upload")).
'" name="upload">';
185 $texte .=
'<td rowspan="2" class="tdtop hideonsmartphone">';
186 $texte .=
'<span class="opacitymedium">';
187 $texte .= $langs->trans(
"ExampleOfDirectoriesForModelGen");
192 $texte .=
'</table>';
210 public function write_file($object, $outputlangs, $srctemplatepath, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
213 global $user, $langs, $conf, $mysoc, $hookmanager;
215 if (empty($srctemplatepath)) {
216 dol_syslog(
"doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
221 if (!is_object($hookmanager)) {
222 include_once DOL_DOCUMENT_ROOT.
'/core/class/hookmanager.class.php';
225 $hookmanager->initHooks(array(
'odtgeneration'));
228 if (!is_object($outputlangs)) {
229 $outputlangs = $langs;
231 $sav_charset_output = $outputlangs->charset_output;
232 $outputlangs->charset_output =
'UTF-8';
234 $outputlangs->loadLangs(array(
"main",
"dict",
"companies",
"bills"));
236 if ($conf->fournisseur->commande->dir_output) {
237 $object->fetch_thirdparty();
239 if ($object->specimen) {
240 $dir = $conf->fournisseur->commande->dir_output;
241 $file = $dir.
"/SPECIMEN.pdf";
245 $dir = $conf->fournisseur->commande->dir_output.
'/'.$objectref;
246 $file = $dir.
"/".$objectref.
".pdf";
247 if (!empty($conf->global->SUPPLIER_REF_IN_NAME)) {
248 $file = $dir.
"/".$objectref.($objectrefsupplier ?
"_".$objectrefsupplier :
"").
".pdf";
252 if (!file_exists($dir)) {
254 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);
259 if (file_exists($dir)) {
261 $newfile = basename($srctemplatepath);
262 $newfiletmp = preg_replace(
'/\.od[ts]/i',
'', $newfile);
263 $newfiletmp = preg_replace(
'/template_/i',
'', $newfiletmp);
264 $newfiletmp = preg_replace(
'/modele_/i',
'', $newfiletmp);
265 $newfiletmp = $objectref .
'_' . $newfiletmp;
268 $newfileformat = substr($newfile, strrpos($newfile,
'.') + 1);
271 if ($format ==
'1') {
272 $format =
'%Y%m%d%H%M%S';
276 $filename = $newfiletmp .
'.' . $newfileformat;
278 $file = $dir .
'/' . $filename;
284 dol_mkdir($conf->fournisseur->commande->dir_temp);
285 if (!is_writable($conf->fournisseur->commande->dir_temp)) {
286 $this->error = $langs->transnoentities(
"ErrorFailedToWriteInTempDirectory", $conf->fournisseur->commande->dir_temp);
287 dol_syslog(
'Error in write_file: ' . $this->error, LOG_ERR);
293 $arrayidcontact = $object->getIdContact(
'external',
'CUSTOMER');
294 if (count($arrayidcontact) > 0) {
296 $result = $object->fetch_contact($arrayidcontact[0]);
300 $contactobject =
null;
301 if (!empty($usecontact)) {
303 if ($object->contact->socid != $object->thirdparty->id && (!isset($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT) || !empty($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT))) {
304 $object->contact->fetch_thirdparty();
305 $socobject = $object->contact->thirdparty;
306 $contactobject = $object->contact;
308 $socobject = $object->thirdparty;
310 $contactobject = $object->contact;
313 $socobject = $object->thirdparty;
317 $substitutionarray = array(
318 '__FROM_NAME__' => $this->issuer->name,
319 '__FROM_EMAIL__' => $this->issuer->email,
320 '__TOTAL_TTC__' => $object->total_ttc,
321 '__TOTAL_HT__' => $object->total_ht,
322 '__TOTAL_VAT__' => $object->total_tva
326 $parameters = array(
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$substitutionarray);
327 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
330 $paramfreetext =
'ORDER_FREE_TEXT';
331 if (!empty($conf->global->$paramfreetext)) {
336 require_once ODTPHP_PATH.
'odf.php';
338 $odfHandler =
new Odf(
341 'PATH_TO_TMP' => $conf->fournisseur->dir_temp,
342 'ZIP_PROXY' =>
'PclZipProxy',
343 'DELIMITER_LEFT' =>
'{',
344 'DELIMITER_RIGHT' =>
'}'
348 $this->error = $e->getMessage();
361 $odfHandler->setVars(
'free_text', $newfreetext,
true,
'UTF-8');
362 }
catch (OdfException $e) {
375 $array_thirdparty_contact = array();
376 if ($usecontact && is_object($contactobject)) {
380 $tmparray = array_merge($substitutionarray, $array_object_from_properties, $array_user, $array_soc, $array_thirdparty, $array_objet, $array_other, $array_thirdparty_contact);
384 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
385 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
387 foreach ($tmparray as $key => $value) {
389 if (preg_match(
'/logo$/', $key)) {
390 if (file_exists($value)) {
391 $odfHandler->setImage($key, $value);
393 $odfHandler->setVars($key,
'ErrorFileNotFound',
true,
'UTF-8');
397 $odfHandler->setVars($key, $value,
true,
'UTF-8');
399 }
catch (OdfException $e) {
405 $foundtagforlines = 1;
407 $listlines = $odfHandler->setSegment(
'lines');
408 }
catch (OdfException $e) {
410 $foundtagforlines = 0;
413 if ($foundtagforlines) {
415 foreach ($object->lines as $line) {
420 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray,
'line'=>$line);
421 $reshook = $hookmanager->executeHooks(
'ODTSubstitutionLine', $parameters, $this, $action);
422 foreach ($tmparray as $key => $val) {
424 $listlines->setVars($key, $val,
true,
'UTF-8');
425 }
catch (OdfException $e) {
427 }
catch (SegmentException $e) {
433 $odfHandler->mergeSegment($listlines);
435 }
catch (OdfException $e) {
436 $this->error = $e->getMessage();
442 $tmparray = $outputlangs->get_translations_for_substitutions();
443 foreach ($tmparray as $key => $value) {
445 $odfHandler->setVars($key, $value,
true,
'UTF-8');
446 }
catch (OdfException $e) {
453 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
454 $reshook = $hookmanager->executeHooks(
'beforeODTSave', $parameters, $this, $action);
457 if (!empty($conf->global->MAIN_ODT_AS_PDF)) {
459 $odfHandler->exportAsAttachedPDF($file);
461 $this->error = $e->getMessage();
467 $odfHandler->saveToDisk($file);
469 $this->error = $e->getMessage();
475 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
476 $reshook = $hookmanager->executeHooks(
'afterODTCreation', $parameters, $this, $action);
482 $this->result = array(
'fullpath'=>$file);
486 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);