105 $langs->loadLangs(array(
"errors",
"companies"));
107 $form =
new Form($this->db);
113 $texte .=
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST" enctype="multipart/form-data">';
114 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
115 $texte .=
'<input type="hidden" name="page_y" value="">';
116 $texte .=
'<input type="hidden" name="action" value="setModuleOptions">';
117 $texte .=
'<input type="hidden" name="param1" value="PROPALE_ADDON_PDF_ODT_PATH">';
119 $texte .=
'<input type="hidden" name="param2" value="PROPALE_ADDON_PDF_ODT_DEFAULT">';
120 $texte .=
'<input type="hidden" name="param3" value="PROPALE_ADDON_PDF_ODT_TOBILL">';
121 $texte .=
'<input type="hidden" name="param4" value="PROPALE_ADDON_PDF_ODT_CLOSED">';
123 $texte .=
'<table class="nobordernopadding centpercent">';
126 $texte .=
'<tr><td>';
127 $texttitle = $langs->trans(
"ListOfDirectories");
128 $listofdir = explode(
',', preg_replace(
'/[\r\n]+/',
',', $odtPath));
129 $listoffiles = array();
130 foreach ($listofdir as $key => $tmpdir) {
131 $tmpdir = trim($tmpdir);
132 $tmpdir = preg_replace(
'/DOL_DATA_ROOT/', DOL_DATA_ROOT, $tmpdir);
134 unset($listofdir[$key]);
137 if (!is_dir($tmpdir)) {
138 $texttitle .=
img_warning($langs->trans(
"ErrorDirNotFound", $tmpdir), 0);
140 $tmpfiles =
dol_dir_list($tmpdir,
'files', 0,
'\.(ods|odt)');
141 if (count($tmpfiles)) {
142 $listoffiles = array_merge($listoffiles, $tmpfiles);
146 $texthelp = $langs->trans(
"ListOfDirectoriesForModelGenODT");
147 $texthelp .=
'<br><br><span class="opacitymedium">'.$langs->trans(
"ExampleOfDirectoriesForModelGen").
'</span>';
149 $texthelp .=
'<br>'.$langs->trans(
"FollowingSubstitutionKeysCanBeUsed").
'<br>';
150 $texthelp .= $langs->transnoentitiesnoconv(
"FullListOnOnlineDocumentation");
152 $texte .= $form->textwithpicto($texttitle, $texthelp, 1,
'help',
'', 1, 3, $this->
name);
153 $texte .=
'<div><div style="display: inline-block; min-width: 100px; vertical-align: middle;">';
154 $texte .=
'<textarea class="flat" cols="60" name="value1">';
156 $texte .=
'</textarea>';
157 $texte .=
'</div><div style="display: inline-block; vertical-align: middle;">';
158 $texte .=
'<input type="submit" class="button button-edit reposition smallpaddingimp" name="modify" value="'.dol_escape_htmltag($langs->trans(
"Modify")).
'">';
159 $texte .=
'<br></div></div>';
162 $nbofiles = count($listoffiles);
163 if (!empty($odtPath)) {
164 $texte .= $langs->trans(
"NumberOfModelFilesFound").
': <b>';
166 $texte .= count($listoffiles);
172 $texte .=
'<div id="div_'.get_class($this).
'" class="hiddenx">';
174 foreach ($listoffiles as $file) {
175 $texte .=
'- '.$file[
'name'];
176 $texte .=
' <a href="'.DOL_URL_ROOT.
'/document.php?modulepart=doctemplates&file=proposals/'.urlencode(basename($file[
'name'])).
'">'.
img_picto(
'',
'listlight').
'</a>';
177 $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>';
186 $texte .=
'<table width="50%">';
188 $texte .=
'<td width="60%">'.$langs->trans(
"DefaultModelPropalCreate").
'</td>';
189 $texte .=
'<td colspan="">';
190 $texte .= $form->selectarray(
'value2', $list,
getDolGlobalString(
'PROPALE_ADDON_PDF_ODT_DEFAULT'));
191 $texte .=
"</td></tr>";
194 $texte .=
'<td width="60%">'.$langs->trans(
"DefaultModelPropalToBill").
'</td>';
195 $texte .=
'<td colspan="">';
196 $texte .= $form->selectarray(
'value3', $list,
getDolGlobalString(
'PROPALE_ADDON_PDF_ODT_TOBILL'));
197 $texte .=
"</td></tr>";
200 $texte .=
'<td width="60%">'.$langs->trans(
"DefaultModelPropalClosed").
'</td>';
201 $texte .=
'<td colspan="">';
202 $texte .= $form->selectarray(
'value4', $list,
getDolGlobalString(
'PROPALE_ADDON_PDF_ODT_CLOSED'));
203 $texte .=
"</td></tr>";
204 $texte .=
'</table>';
208 $texte .=
'<div>'.$langs->trans(
"UploadNewTemplate");
210 $maxmin = $maxfilesizearray[
'maxmin'];
212 $texte .=
'<input type="hidden" name="MAX_FILE_SIZE" value="'.($maxmin * 1024).
'">';
214 $texte .=
' <input type="file" name="uploadfile">';
215 $texte .=
'<input type="hidden" value="PROPALE_ADDON_PDF_ODT_PATH" name="keyforuploaddir">';
216 $texte .=
'<input type="submit" class="button smallpaddingimp reposition" value="'.dol_escape_htmltag($langs->trans(
"Upload")).
'" name="upload">';
222 $texte .=
'</table>';
240 public function write_file(
$object, $outputlangs, $srctemplatepath, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
243 global $user, $langs, $conf, $mysoc, $hookmanager;
245 if (empty($srctemplatepath)) {
246 dol_syslog(
"doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
251 if (!is_object($hookmanager)) {
252 include_once DOL_DOCUMENT_ROOT.
'/core/class/hookmanager.class.php';
255 $hookmanager->initHooks(array(
'odtgeneration'));
258 if (!is_object($outputlangs)) {
259 $outputlangs = $langs;
261 $sav_charset_output = $outputlangs->charset_output;
262 $outputlangs->charset_output =
'UTF-8';
265 $outputlangs->loadLangs(array(
"main",
"dict",
"companies",
"bills"));
267 if ($conf->propal->multidir_output[$conf->entity]) {
281 $dir = $conf->propal->multidir_output[
$object->entity];
283 if (!preg_match(
'/specimen/i', $objectref)) {
284 $dir .=
"/".$objectref;
286 $file = $dir.
"/".$objectref.
".odt";
288 if (!file_exists($dir)) {
290 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);
295 if (file_exists($dir)) {
297 $newfile = basename($srctemplatepath);
298 $newfiletmp = preg_replace(
'/\.od[ts]/i',
'', $newfile);
299 $newfiletmp = preg_replace(
'/template_/i',
'', $newfiletmp);
300 $newfiletmp = preg_replace(
'/modele_/i',
'', $newfiletmp);
302 $newfiletmp = $objectref .
'_' . $newfiletmp;
305 $newfileformat = substr($newfile, strrpos($newfile,
'.') + 1);
308 if ($format ==
'1') {
309 $format =
'%Y%m%d%H%M%S';
313 $filename = $newfiletmp .
'.' . $newfileformat;
315 $file = $dir .
'/' . $filename;
322 if (!is_writable($conf->propal->dir_temp)) {
323 $this->error = $langs->transnoentities(
"ErrorFailedToWriteInTempDirectory", $conf->propal->dir_temp);
324 dol_syslog(
'Error in write_file: ' . $this->error, LOG_ERR);
330 $arrayidcontact =
$object->getIdContact(
'external',
'CUSTOMER');
331 if (count($arrayidcontact) > 0) {
333 $result =
$object->fetch_contact($arrayidcontact[0]);
337 $contactobject =
null;
338 if (!empty($usecontact)) {
340 if (
$object->contact->socid !=
$object->thirdparty->id && (!isset($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT) ||
getDolGlobalString(
'MAIN_USE_COMPANY_NAME_OF_CONTACT'))) {
341 $object->contact->fetch_thirdparty();
342 $socobject =
$object->contact->thirdparty;
343 $contactobject =
$object->contact;
345 $socobject =
$object->thirdparty;
347 $contactobject =
$object->contact;
350 $socobject =
$object->thirdparty;
353 $substitutionarray = array(
354 '__FROM_NAME__' => $this->emetteur->name,
355 '__FROM_EMAIL__' => $this->emetteur->email,
356 '__TOTAL_TTC__' =>
$object->total_ttc,
357 '__TOTAL_HT__' =>
$object->total_ht,
358 '__TOTAL_VAT__' =>
$object->total_tva
362 $parameters = array(
'file' => $file,
'object' =>
$object,
'outputlangs' => $outputlangs,
'substitutionarray' => &$substitutionarray);
363 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
367 $paramfreetext =
'PROPOSAL_FREE_TEXT';
368 if (!empty($conf->global->$paramfreetext)) {
373 require_once ODTPHP_PATH.
'odf.php';
375 $odfHandler =
new Odf(
378 'PATH_TO_TMP' => $conf->propal->multidir_temp[
$object->entity],
380 'DELIMITER_LEFT' =>
'{',
381 'DELIMITER_RIGHT' =>
'}'
385 $this->error = $e->getMessage();
399 $odfHandler->setVars(
'free_text', $newfreetext,
true,
'UTF-8');
400 }
catch (OdfException $e) {
407 $array_objet = $this->get_substitutionarray_object(
$object, $outputlangs);
413 include_once DOL_DOCUMENT_ROOT.
'/societe/class/companybankaccount.class.php';
416 $companybankaccount->fetch(0,
'',
$object->thirdparty->id);
417 $array_objet[
'company_default_bank_iban'] = $companybankaccount->iban;
418 $array_objet[
'company_default_bank_bic'] = $companybankaccount->bic;
421 $array_thirdparty_contact = array();
422 if ($usecontact && is_object($contactobject)) {
426 $tmparray = array_merge($substitutionarray, $array_object_from_properties, $array_user, $array_soc, $array_thirdparty, $array_objet, $array_other, $array_thirdparty_contact);
430 $parameters = array(
'odfHandler' => &$odfHandler,
'file' => $file,
'object' =>
$object,
'outputlangs' => $outputlangs,
'substitutionarray' => &$tmparray);
431 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
433 foreach ($tmparray as $key => $value) {
435 if (preg_match(
'/logo$/', $key)) {
436 if (file_exists($value)) {
437 $odfHandler->setImage($key, $value);
439 $odfHandler->setVars($key,
'ErrorFileNotFound',
true,
'UTF-8');
442 $odfHandler->setVars($key, $value,
true,
'UTF-8');
444 }
catch (OdfException $e) {
449 $foundtagforlines = 1;
451 $listlines = $odfHandler->setSegment(
'lines');
452 }
catch (OdfExceptionSegmentNotFound $e) {
454 $foundtagforlines = 0;
457 if ($foundtagforlines) {
459 foreach (
$object->lines as $line) {
464 $parameters = array(
'odfHandler' => &$odfHandler,
'file' => $file,
'object' =>
$object,
'outputlangs' => $outputlangs,
'substitutionarray' => &$tmparray,
'line' => $line);
465 $reshook = $hookmanager->executeHooks(
'ODTSubstitutionLine', $parameters, $this, $action);
466 foreach ($tmparray as $key => $val) {
468 $listlines->setVars($key, $val,
true,
'UTF-8');
469 }
catch (SegmentException $e) {
476 $odfHandler->mergeSegment($listlines);
477 }
catch (OdfException $e) {
478 $this->error = $e->getMessage();
485 $tmparray = $outputlangs->get_translations_for_substitutions();
486 foreach ($tmparray as $key => $value) {
488 $odfHandler->setVars($key, $value,
true,
'UTF-8');
489 }
catch (OdfException $e) {
495 $parameters = array(
'odfHandler' => &$odfHandler,
'file' => $file,
'object' =>
$object,
'outputlangs' => $outputlangs,
'substitutionarray' => &$tmparray);
496 $reshook = $hookmanager->executeHooks(
'beforeODTSave', $parameters, $this, $action);
501 $odfHandler->exportAsAttachedPDF($file);
503 $this->error = $e->getMessage();
509 $odfHandler->saveToDisk($file);
511 $this->error = $e->getMessage();
516 $parameters = array(
'odfHandler' => &$odfHandler,
'file' => $file,
'object' =>
$object,
'outputlangs' => $outputlangs,
'substitutionarray' => &$tmparray);
517 $reshook = $hookmanager->executeHooks(
'afterODTCreation', $parameters, $this, $action);
523 $this->result = array(
'fullpath' => $file);
527 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);