27 require_once DOL_DOCUMENT_ROOT.
'/core/modules/member/modules_member.class.php';
28 require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
29 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
30 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
31 require_once DOL_DOCUMENT_ROOT.
'/core/lib/doc.lib.php';
48 public $version =
'dolibarr';
58 global $conf, $langs, $mysoc;
61 $langs->loadLangs(array(
"main",
"companies"));
64 $this->
name =
"ODT templates";
65 $this->
description = $langs->trans(
"DocumentModelOdt");
66 $this->scandir =
'MEMBER_ADDON_PDF_ODT_PATH';
70 $this->page_largeur = 0;
71 $this->page_hauteur = 0;
72 $this->format = array($this->page_largeur, $this->page_hauteur);
73 $this->marge_gauche = 0;
74 $this->marge_droite = 0;
75 $this->marge_haute = 0;
76 $this->marge_basse = 0;
78 $this->option_logo = 1;
79 $this->option_tva = 0;
80 $this->option_modereg = 0;
81 $this->option_condreg = 0;
82 $this->option_multilang = 1;
83 $this->option_escompte = 0;
84 $this->option_credit_note = 0;
85 $this->option_freetext = 1;
86 $this->option_draft_watermark = 0;
89 $this->emetteur = $mysoc;
90 if (!$this->emetteur->country_code) {
91 $this->emetteur->country_code = substr($langs->defaultlang, -2);
104 global $conf, $langs;
107 $langs->loadLangs(array(
'companies',
'errors'));
112 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST" enctype="multipart/form-data">';
113 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
114 $texte .=
'<input type="hidden" name="page_y" value="">';
115 $texte .=
'<input type="hidden" name="action" value="setModuleOptions">';
116 $texte .=
'<input type="hidden" name="param1" value="MEMBER_ADDON_PDF_ODT_PATH">';
117 $texte .=
'<table class="nobordernopadding" width="100%">';
120 $texte .=
'<tr><td>';
121 $texttitle = $langs->trans(
"ListOfDirectories");
122 $listofdir = explode(
',', preg_replace(
'/[\r\n]+/',
',', trim(
getDolGlobalString(
'MEMBER_ADDON_PDF_ODT_PATH'))));
123 $listoffiles = array();
124 foreach ($listofdir as $key => $tmpdir) {
125 $tmpdir = trim($tmpdir);
126 $tmpdir = preg_replace(
'/DOL_DATA_ROOT/', DOL_DATA_ROOT, $tmpdir);
128 unset($listofdir[$key]);
131 if (!is_dir($tmpdir)) {
132 $texttitle .=
img_warning($langs->trans(
"ErrorDirNotFound", $tmpdir), 0);
134 $tmpfiles =
dol_dir_list($tmpdir,
'files', 0,
'\.(ods|odt)');
135 if (count($tmpfiles)) {
136 $listoffiles = array_merge($listoffiles, $tmpfiles);
140 $texthelp = $langs->trans(
"ListOfDirectoriesForModelGenODT");
142 $texthelp .=
'<br>'.$langs->trans(
"FollowingSubstitutionKeysCanBeUsed").
'<br>';
143 $texthelp .= $langs->transnoentitiesnoconv(
"FullListOnOnlineDocumentation");
145 $texte .=
$form->textwithpicto($texttitle, $texthelp, 1,
'help',
'', 1);
146 $texte .=
'<div><div style="display: inline-block; min-width: 100px; vertical-align: middle;">';
147 $texte .=
'<textarea class="flat" cols="60" name="value1">';
149 $texte .=
'</textarea>';
150 $texte .=
'</div><div style="display: inline-block; vertical-align: middle;">';
151 $texte .=
'<input type="submit" class="button small reposition" name="modify" value="'.$langs->trans(
"Modify").
'">';
152 $texte .=
'<br></div></div>';
155 if (count($listofdir)) {
156 $texte .= $langs->trans(
"NumberOfModelFilesFound").
': <b>'.count($listoffiles).
'</b>';
158 $texte .=
'<div id="div_'.get_class($this).
'" class="hiddenx">';
160 foreach ($listoffiles as $file) {
161 $texte .=
'- '.$file[
'name'].
' <a href="'.DOL_URL_ROOT.
'/document.php?modulepart=doctemplates&file=members/'.urlencode(basename($file[
'name'])).
'">'.
img_picto(
'',
'listlight').
'</a>';
162 $texte .=
' <a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?modulepart=doctemplates&keyforuploaddir=MEMBER_ADDON_PDF_ODT_PATH&action=deletefile&token='.
newToken().
'&file='.urlencode(basename($file[
'name'])).
'">'.
img_picto(
'',
'delete').
'</a>';
168 $texte .=
'<div>'.$langs->trans(
"UploadNewTemplate");
170 $maxmin = $maxfilesizearray[
'maxmin'];
172 $texte .=
'<input type="hidden" name="MAX_FILE_SIZE" value="'.($maxmin * 1024).
'">';
174 $texte .=
' <input type="file" name="uploadfile">';
175 $texte .=
'<input type="hidden" value="MEMBER_ADDON_PDF_ODT_PATH" name="keyforuploaddir">';
176 $texte .=
'<input type="submit" class="button small reposition" value="'.dol_escape_htmltag($langs->trans(
"Upload")).
'" name="upload">';
180 $texte .=
'<td rowspan="2" class="tdtop hideonsmartphone">';
181 $texte .=
'<span class="opacitymedium">';
182 $texte .= $langs->trans(
"ExampleOfDirectoriesForModelGen");
187 $texte .=
'</table>';
205 public function write_file($object, $outputlangs, $srctemplatepath, $mode =
'member', $nooutput = 0, $filename =
'tmp_cards')
208 global $user, $langs, $conf, $mysoc, $hookmanager;
210 if (empty($srctemplatepath)) {
211 dol_syslog(
"doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
216 if (!is_object($hookmanager)) {
217 include_once DOL_DOCUMENT_ROOT.
'/core/class/hookmanager.class.php';
220 $hookmanager->initHooks(array(
'odtgeneration'));
223 if (!is_object($outputlangs)) {
224 $outputlangs = $langs;
226 $sav_charset_output = $outputlangs->charset_output;
227 $outputlangs->charset_output =
'UTF-8';
230 $outputlangs->loadLangs(array(
"main",
"companies",
"bills",
"dict"));
232 if ($conf->adherent->dir_output) {
234 if (!is_object($object)) {
236 $object =
new User($this->db);
237 $result = $object->fetch($id);
244 $object->fetch_thirdparty();
246 $dir = $conf->adherent->dir_output;
248 if (!preg_match(
'/specimen/i', $objectref)) {
249 $dir .=
"/".$objectref;
251 $file = $dir.
"/".$objectref.
".odt";
253 if (!file_exists($dir)) {
255 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);
260 if (file_exists($dir)) {
262 $newfile = basename($srctemplatepath);
263 $newfiletmp = preg_replace(
'/\.od[ts]/i',
'', $newfile);
264 $newfiletmp = preg_replace(
'/template_/i',
'', $newfiletmp);
265 $newfiletmp = preg_replace(
'/modele_/i',
'', $newfiletmp);
267 $newfiletmp = $objectref .
'_' . $newfiletmp;
270 $newfileformat = substr($newfile, strrpos($newfile,
'.') + 1);
273 if ($format ==
'1') {
274 $format =
'%Y%m%d%H%M%S';
278 $filename = $newfiletmp .
'.' . $newfileformat;
280 $file = $dir .
'/' . $filename;
287 if (!is_writable($conf->adherent->dir_temp)) {
288 $this->error = $langs->transnoentities(
"ErrorFailedToWriteInTempDirectory", $conf->adherent->dir_temp);
289 dol_syslog(
'Error in write_file: ' . $this->error, LOG_ERR);
295 $arrayidcontact = $object->getIdContact(
'external',
'CUSTOMER');
296 if (count($arrayidcontact) > 0) {
298 $result = $object->fetch_contact($arrayidcontact[0]);
302 if (!empty($usecontact)) {
304 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))) {
305 $object->contact->fetch_thirdparty();
306 $socobject = $object->contact->thirdparty;
307 $contactobject = $object->contact;
309 $socobject = $object->thirdparty;
311 $contactobject = $object->contact;
314 $socobject = $object->thirdparty;
318 require_once ODTPHP_PATH.
'odf.php';
320 $odfHandler =
new Odf(
323 'PATH_TO_TMP' => $conf->adherent->dir_temp,
324 'ZIP_PROXY' =>
'PclZipProxy',
325 'DELIMITER_LEFT' =>
'{',
326 'DELIMITER_RIGHT' =>
'}'
330 $this->error = $e->getMessage();
341 $array_thirdparty_contact = array();
342 if ($usecontact && is_object($contactobject)) {
346 $tmparray = array_merge($array_member, $array_soc, $array_thirdparty, $array_other, $array_thirdparty_contact);
352 'outputlangs'=>$outputlangs,
353 'substitutionarray'=>&$tmparray
355 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
356 foreach ($tmparray as $key => $value) {
358 if (preg_match(
'/logo$/', $key)) {
360 if (file_exists($value)) {
361 $odfHandler->setImage($key, $value);
363 $odfHandler->setVars($key,
'ErrorFileNotFound',
true,
'UTF-8');
367 $odfHandler->setVars($key, $value,
true,
'UTF-8');
369 }
catch (OdfException $e) {
375 $tmparray = $outputlangs->get_translations_for_substitutions();
376 foreach ($tmparray as $key => $value) {
378 $odfHandler->setVars($key, $value,
true,
'UTF-8');
379 }
catch (OdfException $e) {
385 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs);
386 $reshook = $hookmanager->executeHooks(
'beforeODTSave', $parameters, $this, $action);
389 if (!empty($conf->global->MAIN_ODT_AS_PDF)) {
391 $odfHandler->exportAsAttachedPDF($file);
393 $this->error = $e->getMessage();
399 $odfHandler->saveToDisk($file);
401 $this->error = $e->getMessage();
407 $reshook = $hookmanager->executeHooks(
'afterODTCreation', $parameters, $this, $action);
413 $this->result = array(
'fullpath'=>$file);
417 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);
437 $array_other = array();
438 foreach ($object as $key => $value) {
439 if (!is_array($value) && !is_object($value)) {
440 $array_other[$array_key.
'_'.$key] = $value;