237 public function write_file($object, $outputlangs, $srctemplatepath, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
240 global $user, $langs, $conf, $mysoc, $hookmanager;
242 if (empty($srctemplatepath)) {
243 dol_syslog(
"doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
248 if (!is_object($hookmanager)) {
249 include_once DOL_DOCUMENT_ROOT.
'/core/class/hookmanager.class.php';
252 $hookmanager->initHooks(array(
'odtgeneration'));
255 if (!is_object($outputlangs)) {
256 $outputlangs = $langs;
258 $sav_charset_output = $outputlangs->charset_output;
259 $outputlangs->charset_output =
'UTF-8';
262 $outputlangs->loadLangs(array(
"main",
"companies",
"bills",
"dict"));
264 if ($conf->supplier_proposal->dir_output) {
266 if (!is_object($object)) {
269 $result = $object->fetch($id);
276 $object->fetch_thirdparty();
278 $dir = $conf->supplier_proposal->dir_output;
280 if (!preg_match(
'/specimen/i', $objectref)) {
281 $dir .=
"/".$objectref;
283 $file = $dir.
"/".$objectref.
".odt";
285 if (!file_exists($dir)) {
287 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);
292 if (file_exists($dir)) {
294 $newfile = basename($srctemplatepath);
295 $newfiletmp = preg_replace(
'/\.od[ts]/i',
'', $newfile);
296 $newfiletmp = preg_replace(
'/template_/i',
'', $newfiletmp);
297 $newfiletmp = preg_replace(
'/modele_/i',
'', $newfiletmp);
299 $newfiletmp = $objectref .
'_' . $newfiletmp;
302 $newfileformat = substr($newfile, strrpos($newfile,
'.') + 1);
305 if ($format ==
'1') {
306 $format =
'%Y%m%d%H%M%S';
310 $filename = $newfiletmp .
'.' . $newfileformat;
312 $file = $dir .
'/' . $filename;
318 dol_mkdir($conf->supplier_proposal->dir_temp);
319 if (!is_writable($conf->supplier_proposal->dir_temp)) {
320 $this->error = $langs->transnoentities(
"ErrorFailedToWriteInTempDirectory", $conf->supplier_proposal->dir_temp);
321 dol_syslog(
'Error in write_file: ' . $this->error, LOG_ERR);
327 $arrayidcontact = $object->getIdContact(
'external',
'BILLING');
328 if (count($arrayidcontact) > 0) {
330 $result = $object->fetch_contact($arrayidcontact[0]);
334 $contactobject =
null;
335 if (!empty($usecontact)) {
337 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))) {
338 $object->contact->fetch_thirdparty();
339 $socobject = $object->contact->thirdparty;
340 $contactobject = $object->contact;
342 $socobject = $object->thirdparty;
344 $contactobject = $object->contact;
347 $socobject = $object->thirdparty;
351 $substitutionarray = array(
352 '__FROM_NAME__' => $this->emetteur->name,
353 '__FROM_EMAIL__' => $this->emetteur->email,
354 '__TOTAL_TTC__' => $object->total_ttc,
355 '__TOTAL_HT__' => $object->total_ht,
356 '__TOTAL_VAT__' => $object->total_tva
360 $parameters = array(
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$substitutionarray);
361 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
365 $paramfreetext =
'SUPPLIER_PROPOSAL_FREE_TEXT';
366 if (!empty($conf->global->$paramfreetext)) {
371 require_once ODTPHP_PATH.
'odf.php';
373 $odfHandler =
new Odf(
376 'PATH_TO_TMP' => $conf->supplier_proposal->dir_temp,
377 'ZIP_PROXY' =>
'PclZipProxy',
378 'DELIMITER_LEFT' =>
'{',
379 'DELIMITER_RIGHT' =>
'}'
383 $this->error = $e->getMessage();
396 $odfHandler->setVars(
'free_text', $newfreetext,
true,
'UTF-8');
397 }
catch (OdfException $e) {
409 $array_thirdparty_contact = array();
410 if ($usecontact && is_object($contactobject)) {
414 $tmparray = array_merge($substitutionarray, $array_user, $array_soc, $array_thirdparty, $array_objet, $array_other, $array_thirdparty_contact);
418 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
419 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
421 foreach ($tmparray as $key => $value) {
423 if (preg_match(
'/logo$/', $key)) {
424 if (file_exists($value)) {
425 $odfHandler->setImage($key, $value);
427 $odfHandler->setVars($key,
'ErrorFileNotFound',
true,
'UTF-8');
431 $odfHandler->setVars($key, $value,
true,
'UTF-8');
433 }
catch (OdfException $e) {
439 $foundtagforlines = 1;
441 $listlines = $odfHandler->setSegment(
'lines');
442 }
catch (OdfException $e) {
444 $foundtagforlines = 0;
447 if ($foundtagforlines) {
449 foreach ($object->lines as $line) {
454 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray,
'line'=>$line);
455 $reshook = $hookmanager->executeHooks(
'ODTSubstitutionLine', $parameters, $this, $action);
456 foreach ($tmparray as $key => $val) {
458 $listlines->setVars($key, $val,
true,
'UTF-8');
459 }
catch (OdfException $e) {
461 }
catch (SegmentException $e) {
467 $odfHandler->mergeSegment($listlines);
469 }
catch (OdfException $e) {
470 $this->error = $e->getMessage();
476 $tmparray = $outputlangs->get_translations_for_substitutions();
477 foreach ($tmparray as $key => $value) {
479 $odfHandler->setVars($key, $value,
true,
'UTF-8');
480 }
catch (OdfException $e) {
486 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
487 $reshook = $hookmanager->executeHooks(
'beforeODTSave', $parameters, $this, $action);
490 if (!empty($conf->global->MAIN_ODT_AS_PDF)) {
492 $odfHandler->exportAsAttachedPDF($file);
494 $this->error = $e->getMessage();
500 $odfHandler->saveToDisk($file);
502 $this->error = $e->getMessage();
507 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
508 $reshook = $hookmanager->executeHooks(
'afterODTCreation', $parameters, $this, $action);
514 $this->result = array(
'fullpath'=>$file);
518 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);