209 public function write_file($object, $outputlangs, $srctemplatepath, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
212 global $user, $langs, $conf, $mysoc, $hookmanager;
214 if (empty($srctemplatepath)) {
215 dol_syslog(
"doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
220 if (!is_object($hookmanager)) {
221 include_once DOL_DOCUMENT_ROOT.
'/core/class/hookmanager.class.php';
224 $hookmanager->initHooks(array(
'odtgeneration'));
227 if (!is_object($outputlangs)) {
228 $outputlangs = $langs;
230 $sav_charset_output = $outputlangs->charset_output;
231 $outputlangs->charset_output =
'UTF-8';
233 $outputlangs->loadLangs(array(
"main",
"dict",
"companies",
"bills"));
235 if ($conf->fournisseur->facture->dir_output) {
236 $object->fetch_thirdparty();
238 if ($object->specimen) {
239 $dir = $conf->fournisseur->facture->dir_output;
240 $file = $dir.
"/SPECIMEN.pdf";
245 $dir = $conf->fournisseur->facture->dir_output.
'/'.
get_exdir($object->id, 2, 0, 0, $object,
'invoice_supplier').$objectref;
246 $file = $dir.
"/".$objectref.
".pdf";
248 $file = $dir.
"/".$objectref.($objectrefsupplier ?
"_".$objectrefsupplier :
"").
".pdf";
252 if (!file_exists($dir)) {
254 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);
259 if (file_exists($dir)) {
261 $newfile = basename($srctemplatepath);
262 $newfiletmp = preg_replace(
'/\.od[ts]/i',
'', $newfile);
263 $newfiletmp = preg_replace(
'/template_/i',
'', $newfiletmp);
264 $newfiletmp = preg_replace(
'/modele_/i',
'', $newfiletmp);
265 $newfiletmp = $objectref.
'_'.$newfiletmp;
268 $newfileformat = substr($newfile, strrpos($newfile,
'.') + 1);
271 if ($format ==
'1') {
272 $format =
'%Y%m%d%H%M%S';
276 $filename = $newfiletmp.
'.'.$newfileformat;
278 $file = $dir.
'/'.$filename;
284 dol_mkdir($conf->fournisseur->facture->dir_temp);
285 if (!is_writable($conf->fournisseur->facture->dir_temp)) {
286 $this->error =
"Failed to write in temp directory ".$conf->fournisseur->facture->dir_temp;
287 dol_syslog(
'Error in write_file: '.$this->error, LOG_ERR);
293 $arrayidcontact = $object->getIdContact(
'external',
'CUSTOMER');
294 if (count($arrayidcontact) > 0) {
296 $result = $object->fetch_contact($arrayidcontact[0]);
300 $contactobject =
null;
301 if (!empty($usecontact)) {
303 if ($object->contact->socid != $object->thirdparty->id && (!isset($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT) ||
getDolGlobalString(
'MAIN_USE_COMPANY_NAME_OF_CONTACT'))) {
304 $object->contact->fetch_thirdparty();
305 $socobject = $object->contact->thirdparty;
306 $contactobject = $object->contact;
308 $socobject = $object->thirdparty;
310 $contactobject = $object->contact;
313 $socobject = $object->thirdparty;
317 $substitutionarray = array(
318 '__FROM_NAME__' => $this->issuer->name,
319 '__FROM_EMAIL__' => $this->issuer->email,
320 '__TOTAL_TTC__' => $object->total_ttc,
321 '__TOTAL_HT__' => $object->total_ht,
322 '__TOTAL_VAT__' => $object->total_tva
326 $parameters = array(
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$substitutionarray);
327 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
331 $paramfreetext =
'INVOICE_FREE_TEXT';
332 if (!empty($conf->global->$paramfreetext)) {
337 require_once ODTPHP_PATH.
'odf.php';
339 $odfHandler =
new Odf(
342 'PATH_TO_TMP' => $conf->fournisseur->dir_temp,
344 'DELIMITER_LEFT' =>
'{',
345 'DELIMITER_RIGHT' =>
'}'
349 $this->error = $e->getMessage();
362 $odfHandler->setVars(
'free_text', $newfreetext,
true,
'UTF-8');
363 }
catch (OdfException $e) {
376 $array_thirdparty_contact = array();
377 if ($usecontact && is_object($contactobject)) {
381 $tmparray = array_merge($substitutionarray, $array_object_from_properties, $array_user, $array_soc, $array_thirdparty, $array_objet, $array_other, $array_thirdparty_contact);
385 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
386 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
388 foreach ($tmparray as $key => $value) {
390 if (preg_match(
'/logo$/', $key)) {
391 if (file_exists($value)) {
392 $odfHandler->setImage($key, $value);
394 $odfHandler->setVars($key,
'ErrorFileNotFound',
true,
'UTF-8');
397 $odfHandler->setVars($key, $value,
true,
'UTF-8');
399 }
catch (OdfException $e) {
405 $foundtagforlines = 1;
407 $listlines = $odfHandler->setSegment(
'lines');
408 }
catch (OdfExceptionSegmentNotFound $e) {
410 $foundtagforlines = 0;
412 }
catch (OdfException $e) {
413 $foundtagforlines = 0;
416 if ($foundtagforlines) {
418 foreach ($object->lines as $line) {
423 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray,
'line'=>$line);
424 $reshook = $hookmanager->executeHooks(
'ODTSubstitutionLine', $parameters, $this, $action);
425 foreach ($tmparray as $key => $val) {
427 $listlines->setVars($key, $val,
true,
'UTF-8');
428 }
catch (OdfException $e) {
430 }
catch (SegmentException $e) {
436 $odfHandler->mergeSegment($listlines);
438 }
catch (OdfException $e) {
439 $this->error = $e->getMessage();
445 $tmparray = $outputlangs->get_translations_for_substitutions();
446 foreach ($tmparray as $key => $value) {
448 $odfHandler->setVars($key, $value,
true,
'UTF-8');
449 }
catch (OdfException $e) {
456 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
457 $reshook = $hookmanager->executeHooks(
'beforeODTSave', $parameters, $this, $action);
462 $odfHandler->exportAsAttachedPDF($file);
464 $this->error = $e->getMessage();
470 $odfHandler->saveToDisk($file);
472 $this->error = $e->getMessage();
478 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
479 $reshook = $hookmanager->executeHooks(
'afterODTCreation', $parameters, $this, $action);
485 $this->result = array(
'fullpath'=>$file);
489 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);