212 public function write_file($object, $outputlangs, $srctemplatepath, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
215 global $user, $langs, $conf, $mysoc, $hookmanager;
218 if (empty($srctemplatepath)) {
219 dol_syslog(
"doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
224 $hookmanager->initHooks(array(
'odtgeneration'));
226 if (!is_object($outputlangs)) {
227 $outputlangs = $langs;
229 $sav_charset_output = $outputlangs->charset_output;
230 $outputlangs->charset_output =
'UTF-8';
232 $outputlangs->loadLangs(array(
"main",
"dict",
"companies",
"bills"));
234 if ($conf->recruitment->dir_output) {
236 if (!is_object($object)) {
239 $result = $object->fetch($id);
246 $dir = $conf->recruitment->multidir_output[isset($object->entity) ? $object->entity : 1].
'/recruitmentjobposition/';
248 if (!preg_match(
'/specimen/i', $objectref)) {
249 $dir .=
"/".$objectref;
251 $file = $dir.
"/".$objectref.
".odt";
253 if (!file_exists($dir)) {
255 $this->error = $langs->transnoentities(
"ErrorCanNotCreateDir", $dir);
260 if (file_exists($dir)) {
262 $newfile = basename($srctemplatepath);
263 $newfiletmp = preg_replace(
'/\.od[ts]/i',
'', $newfile);
264 $newfiletmp = preg_replace(
'/template_/i',
'', $newfiletmp);
265 $newfiletmp = preg_replace(
'/modele_/i',
'', $newfiletmp);
266 $newfiletmp = $objectref.
'_'.$newfiletmp;
269 $newfileformat = substr($newfile, strrpos($newfile,
'.') + 1);
272 if ($format ==
'1') {
273 $format =
'%Y%m%d%H%M%S';
277 $filename = $newfiletmp.
'.'.$newfileformat;
279 $file = $dir.
'/'.$filename;
286 if (!is_writable($conf->recruitment->dir_temp)) {
287 $this->error = $langs->transnoentities(
"ErrorFailedToWriteInTempDirectory", $conf->recruitment->dir_temp);
288 dol_syslog(
'Error in write_file: ' . $this->error, LOG_ERR);
294 $arrayidcontact = $object->getIdContact(
'external',
'CUSTOMER');
295 if (count($arrayidcontact) > 0) {
297 $result = $object->fetch_contact($arrayidcontact[0]);
301 $contactobject =
null;
302 if (!empty($usecontact)) {
304 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))) {
305 $object->contact->fetch_thirdparty();
306 $socobject = $object->contact->thirdparty;
307 $contactobject = $object->contact;
309 $socobject = $object->thirdparty;
311 $contactobject = $object->contact;
314 $socobject = $object->thirdparty;
318 $substitutionarray = array(
319 '__FROM_NAME__' => $this->emetteur->name,
320 '__FROM_EMAIL__' => $this->emetteur->email,
321 '__TOTAL_TTC__' => $object->total_ttc,
322 '__TOTAL_HT__' => $object->total_ht,
323 '__TOTAL_VAT__' => $object->total_tva
327 $parameters = array(
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$substitutionarray);
328 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
332 $paramfreetext =
'ORDER_FREE_TEXT';
333 if (!empty($conf->global->$paramfreetext)) {
338 require_once ODTPHP_PATH.
'odf.php';
340 $odfHandler =
new Odf(
343 'PATH_TO_TMP' => $conf->recruitment->dir_temp,
344 'ZIP_PROXY' =>
'PclZipProxy',
345 'DELIMITER_LEFT' =>
'{',
346 'DELIMITER_RIGHT' =>
'}'
350 $this->error = $e->getMessage();
363 $odfHandler->setVars(
'free_text', $newfreetext,
true,
'UTF-8');
364 }
catch (OdfException $e) {
377 $array_thirdparty_contact = array();
378 if ($usecontact && is_object($contactobject)) {
382 $tmparray = array_merge($substitutionarray, $array_object_from_properties, $array_user, $array_soc, $array_thirdparty, $array_objet, $array_other, $array_thirdparty_contact);
386 $parameters = array(
'odfHandler'=>&$odfHandler,
'file'=>$file,
'object'=>$object,
'outputlangs'=>$outputlangs,
'substitutionarray'=>&$tmparray);
387 $reshook = $hookmanager->executeHooks(
'ODTSubstitution', $parameters, $this, $action);
389 foreach ($tmparray as $key => $value) {
391 if (preg_match(
'/logo$/', $key)) {
393 if (file_exists($value)) {
394 $odfHandler->setImage($key, $value);
396 $odfHandler->setVars($key,
'ErrorFileNotFound',
true,
'UTF-8');
400 $odfHandler->setVars($key, $value,
true,
'UTF-8');
402 }
catch (OdfException $e) {
408 $foundtagforlines = 1;
410 $listlines = $odfHandler->setSegment(
'lines');
411 }
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);
460 if (!empty($conf->global->MAIN_ODT_AS_PDF)) {
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);