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) {
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,
343 'ZIP_PROXY' =>
'PclZipProxy',
344 'DELIMITER_LEFT' =>
'{',
345 'DELIMITER_RIGHT' =>
'}'
349 $this->error = $e->getMessage();
359 $odfHandler->setVars(
'free_text', $newfreetext,
true,
'UTF-8');
360 }
catch (OdfException $e) {
367 $array_objet = $this->get_substitutionarray_object(
$object, $outputlangs);
373 $array_thirdparty_contact = array();
374 if ($usecontact && is_object($contactobject)) {
378 $tmparray = array_merge($substitutionarray, $array_object_from_properties, $array_user, $array_soc, $array_thirdparty, $array_objet, $array_other, $array_thirdparty_contact);
382 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>
$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
383 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
385 foreach ($tmparray as $key => $value) {
387 if (preg_match(
'/logo$/', $key)) {
388 if (file_exists($value)) {
389 $odfHandler->setImage($key, $value);
391 $odfHandler->setVars($key,
'ErrorFileNotFound',
true,
'UTF-8');
394 $odfHandler->setVars($key, $value,
true,
'UTF-8');
396 }
catch (OdfException $e) {
401 $foundtagforlines = 1;
403 $listlines = $odfHandler->setSegment(
'lines');
404 }
catch (OdfExceptionSegmentNotFound $e) {
406 $foundtagforlines = 0;
409 if ($foundtagforlines) {
411 foreach (
$object->lines as $line) {
416 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>
$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray,
'line'=>$line);
417 $reshook = $hookmanager->executeHooks(
'ODTSubstitutionLine', $parameters, $this, $action);
418 foreach ($tmparray as $key => $val) {
420 $listlines->setVars($key, $val,
true,
'UTF-8');
421 }
catch (SegmentException $e) {
428 $odfHandler->mergeSegment($listlines);
429 }
catch (OdfException $e) {
430 $this->error = $e->getMessage();
437 $tmparray = $outputlangs->get_translations_for_substitutions();
438 foreach ($tmparray as $key => $value) {
440 $odfHandler->setVars($key, $value,
true,
'UTF-8');
441 }
catch (OdfException $e) {
448 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>
$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
449 $reshook = $hookmanager->executeHooks(
'beforeODTSave', $parameters, $this, $action);
454 $odfHandler->exportAsAttachedPDF($file);
456 $this->error = $e->getMessage();
462 $odfHandler->saveToDisk($file);
464 $this->error = $e->getMessage();
470 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>
$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
471 $reshook = $hookmanager->executeHooks(
'afterODTCreation', $parameters, $this, $action);
477 $this->result = array(
'fullpath'=>$file);
481 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);