31 require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
32 require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
33 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
34 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
35 require_once DOL_DOCUMENT_ROOT.
'/core/lib/doc.lib.php';
53 public $phpmin = array(7, 0);
58 public $version =
'dolibarr';
68 global $conf, $langs, $mysoc;
71 $langs->loadLangs(array(
"main",
"companies"));
74 $this->
name =
"ODT templates";
75 $this->
description = $langs->trans(
"DocumentModelOdt");
76 $this->scandir =
'ASSET_ASSET_ADDON_PDF_ODT_PATH';
80 $this->page_largeur = 0;
81 $this->page_hauteur = 0;
82 $this->format = array($this->page_largeur, $this->page_hauteur);
83 $this->marge_gauche = 0;
84 $this->marge_droite = 0;
85 $this->marge_haute = 0;
86 $this->marge_basse = 0;
88 $this->option_logo = 1;
89 $this->option_tva = 0;
90 $this->option_modereg = 0;
91 $this->option_condreg = 0;
92 $this->option_multilang = 1;
93 $this->option_escompte = 0;
94 $this->option_credit_note = 0;
95 $this->option_freetext = 1;
96 $this->option_draft_watermark = 0;
99 $this->emetteur = $mysoc;
100 if (!$this->emetteur->country_code) {
101 $this->emetteur->country_code = substr($langs->defaultlang, -2);
114 global $conf, $langs;
117 $langs->loadLangs(array(
"errors",
"companies"));
122 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
123 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
124 $texte .=
'<input type="hidden" name="action" value="setModuleOptions">';
125 $texte .=
'<input type="hidden" name="param1" value="ASSET_ASSET_ADDON_PDF_ODT_PATH">';
126 $texte .=
'<table class="nobordernopadding" width="100%">';
129 $texte .=
'<tr><td>';
130 $texttitle = $langs->trans(
"ListOfDirectories");
131 $listofdir = explode(
',', preg_replace(
'/[\r\n]+/',
',', trim($conf->global->ASSET_ASSET_ADDON_PDF_ODT_PATH)));
132 $listoffiles = array();
133 foreach ($listofdir as $key => $tmpdir) {
134 $tmpdir = trim($tmpdir);
135 $tmpdir = preg_replace(
'/DOL_DATA_ROOT/', DOL_DATA_ROOT, $tmpdir);
137 unset($listofdir[$key]);
140 if (!is_dir($tmpdir)) {
141 $texttitle .=
img_warning($langs->trans(
"ErrorDirNotFound", $tmpdir), 0);
143 $tmpfiles =
dol_dir_list($tmpdir,
'files', 0,
'\.(ods|odt)');
144 if (count($tmpfiles)) {
145 $listoffiles = array_merge($listoffiles, $tmpfiles);
149 $texthelp = $langs->trans(
"ListOfDirectoriesForModelGenODT");
151 $texthelp .=
'<br>'.$langs->trans(
"FollowingSubstitutionKeysCanBeUsed").
'<br>';
152 $texthelp .= $langs->transnoentitiesnoconv(
"FullListOnOnlineDocumentation");
154 $texte .=
$form->textwithpicto($texttitle, $texthelp, 1,
'help',
'', 1);
155 $texte .=
'<div><div style="display: inline-block; min-width: 100px; vertical-align: middle;">';
156 $texte .=
'<textarea class="flat" cols="60" name="value1">';
157 $texte .= $conf->global->ASSET_ASSET_ADDON_PDF_ODT_PATH;
158 $texte .=
'</textarea>';
159 $texte .=
'</div><div style="display: inline-block; vertical-align: middle;">';
160 $texte .=
'<input type="submit" class="button small" name="Button"value="'.$langs->trans(
"Modify").
'">';
161 $texte .=
'<br></div></div>';
164 $nbofiles = count($listoffiles);
165 if (!empty($conf->global->ASSET_ASSET_ADDON_PDF_ODT_PATH)) {
166 $texte .= $langs->trans(
"NumberOfModelFilesFound").
': <b>';
168 $texte .= count($listoffiles);
174 $texte .=
'<div id="div_'.get_class($this).
'" class="hidden">';
175 foreach ($listoffiles as $file) {
176 $texte .=
'- '.$file[
'name'].
' <a href="'.DOL_URL_ROOT.
'/document.php?modulepart=doctemplates&file=asset_asset/'.urlencode(basename($file[
'name'])).
'">'.
img_picto(
'',
'listlight').
'</a>';
177 $texte .=
' <a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?modulepart=doctemplates&keyforuploaddir=ASSET_ASSET_ADDON_PDF_ODT_PATH&action=deletefile&token='.
newToken().
'&file='.urlencode(basename($file[
'name'])).
'">'.
img_picto(
'',
'delete').
'</a>';
185 $texte .=
'<td rowspan="2" class="tdtop hideonsmartphone">';
186 $texte .= $langs->trans(
"ExampleOfDirectoriesForModelGen");
190 $texte .=
'</table>';
208 public function write_file($object, $outputlangs, $srctemplatepath, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
211 global $user, $langs, $conf, $mysoc, $hookmanager;
213 if (empty($srctemplatepath)) {
214 dol_syslog(
"doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
219 if (!is_object($hookmanager)) {
220 include_once DOL_DOCUMENT_ROOT.
'/core/class/hookmanager.class.php';
223 $hookmanager->initHooks(array(
'odtgeneration'));
226 if (!is_object($outputlangs)) {
227 $outputlangs = $langs;
229 $sav_charset_output = $outputlangs->charset_output;
230 $outputlangs->charset_output =
'UTF-8';
232 $outputlangs->loadLangs(array(
"main",
"dict",
"companies",
"bills"));
234 if ($conf->asset->dir_output) {
236 if (!is_object($object)) {
238 $object =
new Asset($this->
db);
239 $result = $object->fetch($id);
246 $object->fetch_thirdparty();
248 $dir = $conf->asset->multidir_output[isset($object->entity) ? $object->entity : 1];
250 if (!preg_match(
'/specimen/i', $objectref)) {
251 $dir .=
"/".$objectref;
253 $file = $dir.
"/".$objectref.
".odt";
255 if (!file_exists($dir)) {
257 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);
262 if (file_exists($dir)) {
264 $newfile = basename($srctemplatepath);
265 $newfiletmp = preg_replace(
'/\.od[ts]/i',
'', $newfile);
266 $newfiletmp = preg_replace(
'/template_/i',
'', $newfiletmp);
267 $newfiletmp = preg_replace(
'/modele_/i',
'', $newfiletmp);
268 $newfiletmp = $objectref.
'_'.$newfiletmp;
271 $newfileformat = substr($newfile, strrpos($newfile,
'.') + 1);
272 if (!empty($conf->global->MAIN_DOC_USE_TIMING)) {
273 $format = $conf->global->MAIN_DOC_USE_TIMING;
274 if ($format ==
'1') {
275 $format =
'%Y%m%d%H%M%S';
279 $filename = $newfiletmp.
'.'.$newfileformat;
281 $file = $dir.
'/'.$filename;
288 if (!is_writable($conf->asset->dir_temp)) {
289 $this->error = $langs->transnoentities(
"ErrorFailedToWriteInTempDirectory", $conf->asset->dir_temp);
290 dol_syslog(
'Error in write_file: ' . $this->error, LOG_ERR);
296 $arrayidcontact = $object->getIdContact(
'external',
'CUSTOMER');
297 if (count($arrayidcontact) > 0) {
299 $result = $object->fetch_contact($arrayidcontact[0]);
303 $contactobject =
null;
304 if (!empty($usecontact)) {
306 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))) {
307 $object->contact->fetch_thirdparty();
308 $socobject = $object->contact->thirdparty;
309 $contactobject = $object->contact;
311 $socobject = $object->thirdparty;
313 $contactobject = $object->contact;
316 $socobject = $object->thirdparty;
320 $substitutionarray = array(
321 '__FROM_NAME__' => $this->emetteur->name,
322 '__FROM_EMAIL__' => $this->emetteur->email,
323 '__TOTAL_TTC__' => $object->total_ttc,
324 '__TOTAL_HT__' => $object->total_ht,
325 '__TOTAL_VAT__' => $object->total_tva
329 $parameters = array(
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$substitutionarray);
330 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
334 $paramfreetext =
'ORDER_FREE_TEXT';
335 if (!empty($conf->global->$paramfreetext)) {
340 require_once ODTPHP_PATH.
'odf.php';
342 $odfHandler =
new odf(
345 'PATH_TO_TMP' => $conf->asset->dir_temp,
346 'ZIP_PROXY' =>
'PclZipProxy',
347 'DELIMITER_LEFT' =>
'{',
348 'DELIMITER_RIGHT' =>
'}'
352 $this->error = $e->getMessage();
365 $odfHandler->setVars(
'free_text', $newfreetext,
true,
'UTF-8');
366 }
catch (OdfException $e) {
379 $array_thirdparty_contact = array();
380 if ($usecontact && is_object($contactobject)) {
384 $tmparray = array_merge($substitutionarray, $array_object_from_properties, $array_user, $array_soc, $array_thirdparty, $array_objet, $array_other, $array_thirdparty_contact);
388 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
389 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
391 foreach ($tmparray as $key => $value) {
393 if (preg_match(
'/logo$/', $key)) {
395 if (file_exists($value)) {
396 $odfHandler->setImage($key, $value);
398 $odfHandler->setVars($key,
'ErrorFileNotFound',
true,
'UTF-8');
402 $odfHandler->setVars($key, $value,
true,
'UTF-8');
404 }
catch (OdfException $e) {
410 $foundtagforlines = 1;
412 $listlines = $odfHandler->setSegment(
'lines');
413 }
catch (OdfException $e) {
415 $foundtagforlines = 0;
418 if ($foundtagforlines) {
420 foreach ($object->lines as $line) {
425 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray,
'line'=>$line);
426 $reshook = $hookmanager->executeHooks(
'ODTSubstitutionLine', $parameters, $this, $action);
427 foreach ($tmparray as $key => $val) {
429 $listlines->setVars($key, $val,
true,
'UTF-8');
430 }
catch (OdfException $e) {
432 }
catch (SegmentException $e) {
438 $odfHandler->mergeSegment($listlines);
440 }
catch (OdfException $e) {
441 $this->error = $e->getMessage();
447 $tmparray = $outputlangs->get_translations_for_substitutions();
448 foreach ($tmparray as $key => $value) {
450 $odfHandler->setVars($key, $value,
true,
'UTF-8');
451 }
catch (OdfException $e) {
458 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
459 $reshook = $hookmanager->executeHooks(
'beforeODTSave', $parameters, $this, $action);
462 if (!empty($conf->global->MAIN_ODT_AS_PDF)) {
464 $odfHandler->exportAsAttachedPDF($file);
466 $this->error = $e->getMessage();
472 $odfHandler->saveToDisk($file);
474 $this->error = $e->getMessage();
480 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
481 $reshook = $hookmanager->executeHooks(
'afterODTCreation', $parameters, $this, $action);
487 $this->result = array(
'fullpath'=>$file);
491 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);