28require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
38 public $module =
'timespent';
43 public $element =
'timespent';
48 public $table_element =
'element_time';
53 public $picto =
'fa-file';
56 const STATUS_DRAFT = 0;
57 const STATUS_VALIDATED = 1;
58 const STATUS_CANCELED = 9;
104 public $fields = array(
105 'rowid' => array(
'type' =>
'integer',
'label' =>
'TechnicalID',
'enabled' => 1,
'position' => 1,
'notnull' => 1,
'visible' => 0,
'noteditable' => 1,
'index' => 1,
'css' =>
'left',
'comment' =>
"Id"),
106 'ref_ext' => array(
'type' =>
'varchar(255)',
'label' =>
'RefExt',
'enabled' => 1,
'visible' => 0,
'position' => 20),
107 'tms' => array(
'type' =>
'timestamp',
'label' =>
'DateModification',
'enabled' => 1,
'position' => 17,
'notnull' => 0,
'visible' => -2,),
108 'import_key' => array(
'type' =>
'varchar(14)',
'label' =>
'import_key',
'enabled' => 1,
'position' => 15,
'notnull' => 0,
'visible' => -1,),
109 'fk_element' => array(
'type' =>
'integer',
'label' =>
'fk_element',
'enabled' => 1,
'position' => 2,
'notnull' => 1,
'visible' => -1,),
110 'elementtype' => array(
'type' =>
'varchar(32)',
'label' =>
'elementtype',
'enabled' => 1,
'position' => 3,
'notnull' => 1,
'visible' => -1,),
111 'element_date' => array(
'type' =>
'date',
'label' =>
'element_date',
'enabled' => 1,
'position' => 4,
'notnull' => 0,
'visible' => -1,),
112 'element_datehour' => array(
'type' =>
'datetime',
'label' =>
'element_datehour',
'enabled' => 1,
'position' => 5,
'notnull' => 0,
'visible' => -1,),
113 'element_date_withhour' => array(
'type' =>
'integer',
'label' =>
'element_date_withhour',
'enabled' => 1,
'position' => 6,
'notnull' => 0,
'visible' => -1,),
114 'element_duration' => array(
'type' =>
'double',
'label' =>
'element_duration',
'enabled' => 1,
'position' => 7,
'notnull' => 0,
'visible' => -1,),
115 'fk_product' => array(
'type' =>
'integer',
'label' =>
'fk_product',
'enabled' => 1,
'position' => 8,
'notnull' => 0,
'visible' => -1,),
116 'fk_user' => array(
'type' =>
'integer:User:user/class/user.class.php',
'label' =>
'fk_user',
'enabled' => 1,
'position' => 9,
'notnull' => 0,
'visible' => -1,),
117 'thm' => array(
'type' =>
'double(24,8)',
'label' =>
'thm',
'enabled' => 1,
'position' => 10,
'notnull' => 0,
'visible' => -1,),
118 'invoice_id' => array(
'type' =>
'integer',
'label' =>
'invoice_id',
'enabled' => 1,
'position' => 11,
'notnull' => 0,
'visible' => -1,
'default' =>
'NULL',),
119 'invoice_line_id' => array(
'type' =>
'integer',
'label' =>
'invoice_line_id',
'enabled' => 1,
'position' => 12,
'notnull' => 0,
'visible' => -1,
'default' =>
'NULL',),
120 'intervention_id' => array(
'type' =>
'integer',
'label' =>
'intervention_id',
'enabled' => 1,
'position' => 13,
'notnull' => 0,
'visible' => -1,
'default' =>
'NULL',),
121 'intervention_line_id' => array(
'type' =>
'integer',
'label' =>
'intervention_line_id',
'enabled' => 1,
'position' => 14,
'notnull' => 0,
'visible' => -1,
'default' =>
'NULL',),
122 'datec' => array(
'type' =>
'datetime',
'label' =>
'datec',
'enabled' => 1,
'position' => 16,
'notnull' => 0,
'visible' => -1,),
123 'note' => array(
'type' =>
'text',
'label' =>
'note',
'enabled' => 1,
'position' => 18,
'notnull' => 0,
'visible' => -1,),
149 public $element_date;
154 public $element_datehour;
159 public $element_date_withhour;
164 public $element_duration;
189 public $invoice_line_id;
194 public $intervention_id;
199 public $intervention_line_id;
223 $this->ismultientitymanaged = 0;
224 $this->isextrafieldmanaged = 0;
226 if (!
getDolGlobalString(
'MAIN_SHOW_TECHNICAL_ID') && isset($this->fields[
'rowid']) && !empty($this->fields[
'ref'])) {
227 $this->fields[
'rowid'][
'visible'] = 0;
229 if (!
isModEnabled(
'multicompany') && isset($this->fields[
'entity'])) {
230 $this->fields[
'entity'][
'enabled'] = 0;
240 foreach ($this->fields as $key => $val) {
241 if (isset($val[
'enabled']) && empty($val[
'enabled'])) {
242 unset($this->fields[$key]);
247 if (is_object($langs)) {
248 foreach ($this->fields as $key => $val) {
249 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
250 foreach ($val[
'arrayofkeyval'] as $key2 => $val2) {
251 $this->fields[$key][
'arrayofkeyval'][$key2] = $langs->trans($val2);
271 return $resultcreate;
294 $result =
$object->fetchCommon($fromid);
299 unset(
$object->user_creation_id);
303 if (property_exists(
$object,
'ref')) {
304 $object->ref = empty($this->fields[
'ref'][
'default']) ?
"Copy_Of_".$object->ref : $this->fields[
'ref'][
'default'];
306 if (property_exists(
$object,
'status')) {
307 $object->status = self::STATUS_DRAFT;
309 if (property_exists(
$object,
'date_creation')) {
312 if (property_exists(
$object,
'date_modification')) {
313 $object->date_modification =
null;
317 if (is_array(
$object->array_options) && count(
$object->array_options) > 0) {
318 $extrafields->fetch_name_optionals_label($this->table_element);
319 foreach (
$object->array_options as $key => $option) {
320 $shortkey = preg_replace(
'/options_/',
'', $key);
321 if (!empty($extrafields->attributes[$this->table_element][
'unique'][$shortkey])) {
324 unset(
$object->array_options[$key]);
330 $object->context[
'createfromclone'] =
'createfromclone';
331 $result =
$object->createCommon($user);
335 $this->errors =
$object->errors;
345 unset(
$object->context[
'createfromclone']);
352 $this->db->rollback();
364 public function fetch($id, $ref =
null)
383 public function fetchAll($sortorder =
'', $sortfield =
'', $limit = 0, $offset = 0, $filter =
'', $filtermode =
'AND')
393 $sql .=
" FROM ".$this->db->prefix().$this->table_element.
" as t";
394 if (isset($this->ismultientitymanaged) && $this->ismultientitymanaged == 1) {
395 $sql .=
" WHERE t.entity IN (".getEntity($this->element).
")";
397 $sql .=
" WHERE 1 = 1";
402 $sql .= forgeSQLFromUniversalSearchCriteria($filter, $errormessage);
404 $this->errors[] = $errormessage;
405 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
409 if (!empty($sortfield)) {
410 $sql .= $this->db->order($sortfield, $sortorder);
412 if (!empty($limit)) {
413 $sql .= $this->db->plimit($limit, $offset);
416 $resql = $this->db->query($sql);
418 $num = $this->db->num_rows($resql);
420 while ($i < ($limit ? min($limit, $num) : $num)) {
421 $obj = $this->db->fetch_object($resql);
423 $record =
new self($this->db);
424 $record->setVarsFromFetchObj($obj);
426 $records[$record->id] = $record;
430 $this->db->free($resql);
434 $this->errors[] =
'Error '.$this->db->lasterror();
435 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
460 public function delete(
User $user, $notrigger = 0)
477 $this->error =
'ErrorDeleteLineNotAllowedByObjectStatus';
494 global
$conf, $langs;
496 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
501 if ($this->
status == self::STATUS_VALIDATED) {
502 dol_syslog(get_class($this).
"::validate action abandoned: already validated", LOG_WARNING);
519 if (!$error && (preg_match(
'/^[\(]?PROV/i', $this->
ref) || empty($this->
ref))) {
524 $this->newref = $num;
528 $sql =
"UPDATE ".MAIN_DB_PREFIX.$this->table_element;
529 $sql .=
" SET ref = '".$this->db->escape($num).
"',";
530 $sql .=
" status = ".self::STATUS_VALIDATED;
531 if (!empty($this->fields[
'date_validation'])) {
532 $sql .=
", date_validation = '".$this->db->idate($now).
"'";
534 if (!empty($this->fields[
'fk_user_valid'])) {
535 $sql .=
", fk_user_valid = ".((int) $user->id);
537 $sql .=
" WHERE rowid = ".((int) $this->
id);
539 dol_syslog(get_class($this).
"::validate()", LOG_DEBUG);
540 $resql = $this->db->query($sql);
543 $this->error = $this->db->lasterror();
547 if (!$error && !$notrigger) {
549 $result = $this->call_trigger(
'timespent_VALIDATE', $user);
561 if (preg_match(
'/^[\(]?PROV/i', $this->
ref)) {
563 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filename = CONCAT('".$this->db->escape($this->newref).
"', SUBSTR(filename, ".(strlen($this->
ref) + 1).
")), filepath = 'timespent/".$this->db->escape($this->newref).
"'";
564 $sql .=
" WHERE filename LIKE '".$this->db->escape($this->
ref).
"%' AND filepath = 'timespent/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
565 $resql = $this->db->query($sql);
568 $this->error = $this->db->lasterror();
570 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filepath = 'timespent/".$this->db->escape($this->newref).
"'";
571 $sql .=
" WHERE filepath = 'timespent/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
572 $resql = $this->db->query($sql);
575 $this->error = $this->db->lasterror();
581 $dirsource =
$conf->timespent->dir_output.
'/timespent/'.$oldref;
582 $dirdest =
$conf->timespent->dir_output.
'/timespent/'.$newref;
583 if (!$error && file_exists($dirsource)) {
584 dol_syslog(get_class($this).
"::validate() rename dir ".$dirsource.
" into ".$dirdest);
586 if (@rename($dirsource, $dirdest)) {
589 $listoffiles =
dol_dir_list(
$conf->timespent->dir_output.
'/timespent/'.$newref,
'files', 1,
'^'.preg_quote($oldref,
'/'));
590 foreach ($listoffiles as $fileentry) {
591 $dirsource = $fileentry[
'name'];
592 $dirdest = preg_replace(
'/^'.preg_quote($oldref,
'/').
'/', $newref, $dirsource);
593 $dirsource = $fileentry[
'path'].
'/'.$dirsource;
594 $dirdest = $fileentry[
'path'].
'/'.$dirdest;
595 @rename($dirsource, $dirdest);
605 $this->
status = self::STATUS_VALIDATED;
612 $this->db->rollback();
628 if ($this->
status <= self::STATUS_DRAFT) {
639 return $this->
setStatusCommon($user, self::STATUS_DRAFT, $notrigger,
'timespent_UNVALIDATE');
649 public function cancel($user, $notrigger = 0)
652 if ($this->
status != self::STATUS_VALIDATED) {
663 return $this->
setStatusCommon($user, self::STATUS_CANCELED, $notrigger,
'timespent_CANCEL');
673 public function reopen($user, $notrigger = 0)
676 if ($this->
status == self::STATUS_VALIDATED) {
687 return $this->
setStatusCommon($user, self::STATUS_VALIDATED, $notrigger,
'timespent_REOPEN');
698 global
$conf, $langs, $user;
703 return [
'optimize' => $langs->trans(
"ShowTimeSpent")];
705 $datas[
'picto'] =
img_picto(
'', $this->picto).
' <u>'.$langs->trans(
"TimeSpent").
'</u>';
706 if (isset($this->
status)) {
707 $datas[
'picto'] .=
' '.$this->getLibStatut(5);
709 $datas[
'ref'] =
'<br><b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
724 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $morecss =
'', $save_lastsearch_value = -1)
726 global
$conf, $langs, $hookmanager;
728 if (!empty(
$conf->dol_no_mouse_hover)) {
735 'objecttype' => $this->element,
738 $classfortooltip =
'classfortooltip';
741 $classfortooltip =
'classforajaxtooltip';
742 $dataparams =
' data-params="'.dol_escape_htmltag(json_encode($params)).
'"';
748 $url =
dol_buildpath(
'/timespent/timespent_card.php', 1).
'?id='.$this->id;
750 if ($option !=
'nolink') {
752 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
753 if ($save_lastsearch_value == -1 && isset($_SERVER[
"PHP_SELF"]) && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
754 $add_save_lastsearch_values = 1;
756 if ($url && $add_save_lastsearch_values) {
757 $url .=
'&save_lastsearch_values=1';
762 if (empty($notooltip)) {
764 $label = $langs->trans(
"ShowTimeSpent");
765 $linkclose .=
' alt="'.dolPrintHTMLForAttribute($label).
'"';
767 $linkclose .= ($label ?
' title="'.dolPrintHTMLForAttribute($label).
'"' :
' title="tocomplete"');
768 $linkclose .= $dataparams.
' class="'.$classfortooltip.($morecss ?
' '.$morecss :
'').
'"';
770 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
773 if ($option ==
'nolink' || empty($url)) {
774 $linkstart =
'<span';
776 $linkstart =
'<a href="'.$url.
'"';
778 $linkstart .= $linkclose.
'>';
779 if ($option ==
'nolink' || empty($url)) {
780 $linkend =
'</span>';
785 $result .= $linkstart;
787 if (empty($this->showphoto_on_popup)) {
789 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') : $dataparams.
' class="'.(($withpicto != 2) ?
'paddingright ' :
'').$classfortooltip.
'"'), 0, 0, $notooltip ? 0 : 1);
793 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
795 list($class, $module) = explode(
'@', $this->picto);
798 $filename = $filearray[0][
'name'];
799 if (!empty($filename)) {
800 $pospoint = strpos($filearray[0][
'name'],
'.');
802 $pathtophoto = $class.
'/'.$this->
ref.
'/thumbs/'.substr($filename, 0, $pospoint).
'_mini'.substr($filename, $pospoint);
804 $result .=
'<div class="floatleft inline-block valignmiddle divphotoref"><div class="photoref"><img class="photo'.$module.
'" alt="No photo" border="0" src="'.DOL_URL_ROOT.
'/viewimage.php?modulepart='.$module.
'&entity='.
$conf->entity.
'&file='.urlencode($pathtophoto).
'"></div></div>';
806 $result .=
'<div class="floatleft inline-block valignmiddle divphotoref"><img class="photouserphoto userphoto" alt="No photo" border="0" src="'.DOL_URL_ROOT.
'/viewimage.php?modulepart='.$module.
'&entity='.
$conf->entity.
'&file='.urlencode($pathtophoto).
'"></div>';
811 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
816 if ($withpicto != 2) {
817 $result .= $this->ref;
823 global $action, $hookmanager;
824 $hookmanager->initHooks(array($this->element.
'dao'));
825 $parameters = array(
'id' => $this->
id,
'getnomurl' => &$result);
826 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
828 $result = $hookmanager->resPrint;
830 $result .= $hookmanager->resPrint;
845 global
$conf, $langs;
847 $selected = (empty($arraydata[
'selected']) ? 0 : $arraydata[
'selected']);
849 $return =
'<div class="box-flex-item box-flex-grow-zero">';
850 $return .=
'<div class="info-box info-box-sm">';
851 $return .=
'<span class="info-box-icon bg-infobox-action">';
853 $return .=
'</span>';
854 $return .=
'<div class="info-box-content">';
855 $return .=
'<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this,
'getNomUrl') ? $this->
getNomUrl() : $this->ref).
'</span>';
856 if ($selected >= 0) {
857 $return .=
'<input id="cb'.$this->id.
'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->
id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
859 if (property_exists($this,
'label')) {
860 $return .=
' <div class="inline-block opacitymedium valignmiddle tdoverflowmax100">'.$this->label.
'</div>';
862 if (property_exists($this,
'amount')) {
865 $return .=
'<span class="info-box-label amount">'.price($this->
amount, 0, $langs, 1, -1, -1,
$conf->currency).
'</span>';
867 if (method_exists($this,
'getLibStatut')) {
868 $return .=
'<br><div class="info-box-status">'.$this->getLibStatut(5).
'</div>';
910 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
913 $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'Draft');
914 $this->labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
'Enabled');
915 $this->labelStatus[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv(
'Disabled');
916 $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'Draft');
917 $this->labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
'Enabled');
918 $this->labelStatusShort[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv(
'Disabled');
921 $statusType =
'status'.$status;
923 if ($status == self::STATUS_CANCELED) {
924 $statusType =
'status6';
927 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status],
'', $statusType, $mode);
938 $sql =
"SELECT rowid,";
939 $sql .=
" date_creation as datec, tms as datem,";
940 $sql .=
" fk_user_creat, fk_user_modif";
941 $sql .=
" FROM ".MAIN_DB_PREFIX.$this->table_element.
" as t";
942 $sql .=
" WHERE t.rowid = ".((int) $id);
944 $result = $this->db->query($sql);
946 if ($this->db->num_rows($result)) {
947 $obj = $this->db->fetch_object($result);
949 $this->
id = $obj->rowid;
951 $this->user_creation_id = $obj->fk_user_creat;
952 $this->user_modification_id = $obj->fk_user_modif;
953 $this->date_creation = $this->db->jdate($obj->datec);
954 $this->date_modification = empty($obj->datem) ?
'' : $this->db->jdate($obj->datem);
957 $this->db->free($result);
985 global $langs,
$conf;
986 $langs->load(
"timespent@timespent");
989 $conf->global->TIMESPENT_timespent_ADDON =
'mod_timespent_standard';
999 $dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
1000 foreach ($dirmodels as $reldir) {
1004 $mybool = ((bool) @include_once $dir.$file) || $mybool;
1012 if (class_exists($classname)) {
1013 $obj =
new $classname();
1014 '@phan-var-force CommonNumRefGenerator $obj';
1015 $numref = $obj->getNextValue($this);
1017 if ($numref !=
'' && $numref !=
'-1') {
1020 $this->error = $obj->error;
1025 print $langs->trans(
"Error").
" ".$langs->trans(
"ClassNotFound").
' '.$classname;
1029 print $langs->trans(
"ErrorNumberingModuleNotSetup", $this->element);
1045 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams =
null)
1047 global
$conf, $langs;
1050 $includedocgeneration = 0;
1052 $langs->load(
"timespent@timespent");
1055 $modele =
'standard_timespent';
1057 if (!empty($this->model_pdf)) {
1058 $modele = $this->model_pdf;
1064 $modelpath =
"core/modules/timespent/doc/";
1066 if ($includedocgeneration && !empty($modele)) {
1067 $result = $this->
commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
if(! $sortfield) if(! $sortorder) $object
Parent class of all other business classes (invoices, contracts, proposals, orders,...
deleteLineCommon(User $user, $idline, $notrigger=0)
Delete a line of object in database.
commonGenerateDocument($modelspath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams=null)
Common function for all objects extending CommonObject for generating documents.
createCommon(User $user, $notrigger=0)
Create object in the database.
getFieldList($alias='', $excludefields=array())
Function to concat keys of fields.
updateCommon(User $user, $notrigger=0)
Update object into database.
setStatusCommon($user, $status, $notrigger=0, $triggercode='')
Set to a status.
initAsSpecimenCommon()
Initialise object with example values Id must be 0 if object instance is a specimen.
copy_linked_contact($objFrom, $source='internal')
Copy contact from one element to current.
fetchCommon($id, $ref=null, $morewhere='', $noextrafields=0)
Load object in memory from the database.
deleteCommon(User $user, $notrigger=0, $forcechilddeletion=0)
Delete object in database.
Class to manage Dolibarr database access.
validate($user, $notrigger=0)
Validate object.
getNomUrl($withpicto=0, $option='', $notooltip=0, $morecss='', $save_lastsearch_value=-1)
Return a link to the object card (with optionally the picto)
fetch($id, $ref=null)
Load object in memory from the database.
setDraft($user, $notrigger=0)
Set draft status.
getTooltipContentArray($params)
getTooltipContentArray
cancel($user, $notrigger=0)
Set cancel status.
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
deleteLine(User $user, $idline, $notrigger=0)
Delete a line of object in database.
fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, $filter='', $filtermode='AND')
Load list of objects in memory from the database.
getLabelStatus($mode=0)
Return the label of the status.
__construct(DoliDB $db)
Constructor.
getLibStatut($mode=0)
Return the label of the status.
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
reopen($user, $notrigger=0)
Set back to validated status.
createFromClone(User $user, $fromid)
Clone an object into another one.
info($id)
Load the info information in the object.
LibStatut($status, $mode=0)
Return the status.
update(User $user, $notrigger=0)
Update object into database.
create(User $user, $notrigger=0)
Create object into database.
getNextNumRef()
Returns the reference to the following non used object depending on the active numbering module.
getKanbanView($option='', $arraydata=null)
Return a thumb for kanban views.
Class to manage Dolibarr users.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dol_now($mode='gmt')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
buildzip.php
print $langs trans('Date')." left Ref Label right Qty right Price right TotalHT right TotalTTC right right right right right right right right right centpercent right TotalHT right n right VAT right n right TotalVAT right n No sujeto a RE IRPF right TotalLT1 right n right TotalLT2 right n right TotalTTC right n takeposcustomercurrency takeposcustomercurrency takeposcustomercurrency takeposcustomercurrency right TotalTTC takeposcustomercurrency right takeposcustomercurrency n right Paid right PaymentTypeShortLIQ right SELECT p pos_change as p datep as p p num_paiement as f pf amount as amount