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);