28 require_once DOL_DOCUMENT_ROOT.
'/core/modules/propale/modules_propale.php';
29 require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
30 require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
31 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
32 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
33 require_once DOL_DOCUMENT_ROOT.
'/core/lib/doc.lib.php';
34 require_once DOL_DOCUMENT_ROOT.
'/core/lib/signature.lib.php';
50 public $version =
'dolibarr';
60 global $conf, $langs, $mysoc;
63 $langs->loadLangs(array(
"main",
"companies"));
66 $this->
name =
"ODT templates";
67 $this->
description = $langs->trans(
"DocumentModelOdt");
68 $this->update_main_doc_field = 1;
69 $this->scandir =
'PROPALE_ADDON_PDF_ODT_PATH';
73 $this->page_largeur = 0;
74 $this->page_hauteur = 0;
75 $this->format = array($this->page_largeur, $this->page_hauteur);
76 $this->marge_gauche = 0;
77 $this->marge_droite = 0;
78 $this->marge_haute = 0;
79 $this->marge_basse = 0;
81 $this->option_logo = 1;
82 $this->option_tva = 0;
83 $this->option_modereg = 0;
84 $this->option_condreg = 0;
85 $this->option_multilang = 1;
86 $this->option_escompte = 0;
87 $this->option_credit_note = 0;
88 $this->option_freetext = 1;
89 $this->option_draft_watermark = 0;
92 $this->emetteur = $mysoc;
93 if (!$this->emetteur->country_code) {
94 $this->emetteur->country_code = substr($langs->defaultlang, -2);
107 global $conf, $langs;
110 $langs->loadLangs(array(
"errors",
"companies"));
118 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST" enctype="multipart/form-data">';
119 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
120 $texte .=
'<input type="hidden" name="page_y" value="">';
121 $texte .=
'<input type="hidden" name="action" value="setModuleOptions">';
122 $texte .=
'<input type="hidden" name="param1" value="PROPALE_ADDON_PDF_ODT_PATH">';
124 $texte .=
'<input type="hidden" name="param2" value="PROPALE_ADDON_PDF_ODT_DEFAULT">';
125 $texte .=
'<input type="hidden" name="param3" value="PROPALE_ADDON_PDF_ODT_TOBILL">';
126 $texte .=
'<input type="hidden" name="param4" value="PROPALE_ADDON_PDF_ODT_CLOSED">';
128 $texte .=
'<table class="nobordernopadding centpercent">';
131 $texte .=
'<tr><td>';
132 $texttitle = $langs->trans(
"ListOfDirectories");
133 $listofdir = explode(
',', preg_replace(
'/[\r\n]+/',
',', $odtPath));
134 $listoffiles = array();
135 foreach ($listofdir as $key => $tmpdir) {
136 $tmpdir = trim($tmpdir);
137 $tmpdir = preg_replace(
'/DOL_DATA_ROOT/', DOL_DATA_ROOT, $tmpdir);
139 unset($listofdir[$key]);
142 if (!is_dir($tmpdir)) {
143 $texttitle .=
img_warning($langs->trans(
"ErrorDirNotFound", $tmpdir), 0);
145 $tmpfiles =
dol_dir_list($tmpdir,
'files', 0,
'\.(ods|odt)');
146 if (count($tmpfiles)) {
147 $listoffiles = array_merge($listoffiles, $tmpfiles);
151 $texthelp = $langs->trans(
"ListOfDirectoriesForModelGenODT");
153 $texthelp .=
'<br>'.$langs->trans(
"FollowingSubstitutionKeysCanBeUsed").
'<br>';
154 $texthelp .= $langs->transnoentitiesnoconv(
"FullListOnOnlineDocumentation");
156 $texte .=
$form->textwithpicto($texttitle, $texthelp, 1,
'help',
'', 1);
157 $texte .=
'<div><div style="display: inline-block; min-width: 100px; vertical-align: middle;">';
158 $texte .=
'<textarea class="flat" cols="60" name="value1">';
160 $texte .=
'</textarea>';
161 $texte .=
'</div><div style="display: inline-block; vertical-align: middle;">';
162 $texte .=
'<input type="submit" class="button small reposition" name="modify" value="'.$langs->trans(
"Modify").
'">';
163 $texte .=
'<br></div></div>';
166 $nbofiles = count($listoffiles);
167 if (!empty($odtPath)) {
168 $texte .= $langs->trans(
"NumberOfModelFilesFound").
': <b>';
170 $texte .= count($listoffiles);
176 $texte .=
'<div id="div_'.get_class($this).
'" class="hiddenx">';
178 foreach ($listoffiles as $file) {
179 $texte .=
'- '.$file[
'name'];
180 $texte .=
' <a href="'.DOL_URL_ROOT.
'/document.php?modulepart=doctemplates&file=proposals/'.urlencode(basename($file[
'name'])).
'">'.
img_picto(
'',
'listlight').
'</a>';
181 $texte .=
' <a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?modulepart=doctemplates&keyforuploaddir=PROPALE_ADDON_PDF_ODT_PATH&action=deletefile&token='.
newToken().
'&file='.urlencode(basename($file[
'name'])).
'">'.
img_picto(
'',
'delete').
'</a>';
190 $texte .=
'<table width="50%">';
192 $texte .=
'<td width="60%">'.$langs->trans(
"DefaultModelPropalCreate").
'</td>';
193 $texte .=
'<td colspan="">';
195 $texte .=
"</td></tr>";
198 $texte .=
'<td width="60%">'.$langs->trans(
"DefaultModelPropalToBill").
'</td>';
199 $texte .=
'<td colspan="">';
201 $texte .=
"</td></tr>";
204 $texte .=
'<td width="60%">'.$langs->trans(
"DefaultModelPropalClosed").
'</td>';
205 $texte .=
'<td colspan="">';
207 $texte .=
"</td></tr>";
208 $texte .=
'</table>';
212 $texte .=
'<div>'.$langs->trans(
"UploadNewTemplate");
214 $maxmin = $maxfilesizearray[
'maxmin'];
216 $texte .=
'<input type="hidden" name="MAX_FILE_SIZE" value="'.($maxmin * 1024).
'">';
218 $texte .=
' <input type="file" name="uploadfile">';
219 $texte .=
'<input type="hidden" value="PROPALE_ADDON_PDF_ODT_PATH" name="keyforuploaddir">';
220 $texte .=
'<input type="submit" class="button small reposition" value="'.dol_escape_htmltag($langs->trans(
"Upload")).
'" name="upload">';
224 $texte .=
'<td rowspan="2" class="tdtop hideonsmartphone">';
225 $texte .=
'<span class="opacitymedium">';
226 $texte .= $langs->trans(
"ExampleOfDirectoriesForModelGen");
231 $texte .=
'</table>';
249 public function write_file($object, $outputlangs, $srctemplatepath, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
252 global $user, $langs, $conf, $mysoc, $hookmanager;
254 if (empty($srctemplatepath)) {
255 dol_syslog(
"doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
260 if (!is_object($hookmanager)) {
261 include_once DOL_DOCUMENT_ROOT.
'/core/class/hookmanager.class.php';
264 $hookmanager->initHooks(array(
'odtgeneration'));
267 if (!is_object($outputlangs)) {
268 $outputlangs = $langs;
270 $sav_charset_output = $outputlangs->charset_output;
271 $outputlangs->charset_output =
'UTF-8';
274 $outputlangs->loadLangs(array(
"main",
"dict",
"companies",
"bills"));
276 if ($conf->propal->multidir_output[$conf->entity]) {
278 if (!is_object($object)) {
280 $object =
new Propal($this->db);
281 $result = $object->fetch($id);
288 $object->fetch_thirdparty();
290 $dir = $conf->propal->multidir_output[$object->entity];
292 if (!preg_match(
'/specimen/i', $objectref)) {
293 $dir .=
"/".$objectref;
295 $file = $dir.
"/".$objectref.
".odt";
297 if (!file_exists($dir)) {
299 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);
304 if (file_exists($dir)) {
306 $newfile = basename($srctemplatepath);
307 $newfiletmp = preg_replace(
'/\.od[ts]/i',
'', $newfile);
308 $newfiletmp = preg_replace(
'/template_/i',
'', $newfiletmp);
309 $newfiletmp = preg_replace(
'/modele_/i',
'', $newfiletmp);
311 $newfiletmp = $objectref .
'_' . $newfiletmp;
314 $newfileformat = substr($newfile, strrpos($newfile,
'.') + 1);
317 if ($format ==
'1') {
318 $format =
'%Y%m%d%H%M%S';
322 $filename = $newfiletmp .
'.' . $newfileformat;
324 $file = $dir .
'/' . $filename;
330 dol_mkdir($conf->propal->multidir_temp[$object->entity]);
331 if (!is_writable($conf->propal->dir_temp)) {
332 $this->error = $langs->transnoentities(
"ErrorFailedToWriteInTempDirectory", $conf->propal->dir_temp);
333 dol_syslog(
'Error in write_file: ' . $this->error, LOG_ERR);
339 $arrayidcontact = $object->getIdContact(
'external',
'CUSTOMER');
340 if (count($arrayidcontact) > 0) {
342 $result = $object->fetch_contact($arrayidcontact[0]);
346 $contactobject =
null;
347 if (!empty($usecontact)) {
349 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))) {
350 $object->contact->fetch_thirdparty();
351 $socobject = $object->contact->thirdparty;
352 $contactobject = $object->contact;
354 $socobject = $object->thirdparty;
356 $contactobject = $object->contact;
359 $socobject = $object->thirdparty;
362 $substitutionarray = array(
363 '__FROM_NAME__' => $this->emetteur->name,
364 '__FROM_EMAIL__' => $this->emetteur->email,
365 '__TOTAL_TTC__' => $object->total_ttc,
366 '__TOTAL_HT__' => $object->total_ht,
367 '__TOTAL_VAT__' => $object->total_tva
371 $parameters = array(
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$substitutionarray);
372 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
376 $paramfreetext =
'PROPOSAL_FREE_TEXT';
377 if (!empty($conf->global->$paramfreetext)) {
382 require_once ODTPHP_PATH.
'odf.php';
384 $odfHandler =
new Odf(
387 'PATH_TO_TMP' => $conf->propal->multidir_temp[$object->entity],
388 'ZIP_PROXY' =>
'PclZipProxy',
389 'DELIMITER_LEFT' =>
'{',
390 'DELIMITER_RIGHT' =>
'}'
394 $this->error = $e->getMessage();
404 $object->fetch_optionals();
408 $odfHandler->setVars(
'free_text', $newfreetext,
true,
'UTF-8');
409 }
catch (OdfException $e) {
422 $array_thirdparty_contact = array();
423 if ($usecontact && is_object($contactobject)) {
427 $tmparray = array_merge($substitutionarray, $array_object_from_properties, $array_user, $array_soc, $array_thirdparty, $array_objet, $array_other, $array_thirdparty_contact);
431 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
432 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
434 foreach ($tmparray as $key => $value) {
436 if (preg_match(
'/logo$/', $key)) {
437 if (file_exists($value)) {
438 $odfHandler->setImage($key, $value);
440 $odfHandler->setVars($key,
'ErrorFileNotFound',
true,
'UTF-8');
444 $odfHandler->setVars($key, $value,
true,
'UTF-8');
446 }
catch (OdfException $e) {
452 $foundtagforlines = 1;
454 $listlines = $odfHandler->setSegment(
'lines');
455 }
catch (OdfException $e) {
457 $foundtagforlines = 0;
460 if ($foundtagforlines) {
462 foreach ($object->lines as $line) {
467 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray,
'line'=>$line);
468 $reshook = $hookmanager->executeHooks(
'ODTSubstitutionLine', $parameters, $this, $action);
469 foreach ($tmparray as $key => $val) {
471 $listlines->setVars($key, $val,
true,
'UTF-8');
472 }
catch (OdfException $e) {
474 }
catch (SegmentException $e) {
480 $odfHandler->mergeSegment($listlines);
482 }
catch (OdfException $e) {
483 $this->error = $e->getMessage();
489 $tmparray = $outputlangs->get_translations_for_substitutions();
490 foreach ($tmparray as $key => $value) {
492 $odfHandler->setVars($key, $value,
true,
'UTF-8');
493 }
catch (OdfException $e) {
499 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
500 $reshook = $hookmanager->executeHooks(
'beforeODTSave', $parameters, $this, $action);
503 if (!empty($conf->global->MAIN_ODT_AS_PDF)) {
505 $odfHandler->exportAsAttachedPDF($file);
507 $this->error = $e->getMessage();
513 $odfHandler->saveToDisk($file);
515 $this->error = $e->getMessage();
520 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
521 $reshook = $hookmanager->executeHooks(
'afterODTCreation', $parameters, $this, $action);
527 $this->result = array(
'fullpath'=>$file);
531 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);