34 require
'../main.inc.php';
35 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
36 require_once DOL_DOCUMENT_ROOT.
'/fichinter/class/fichinter.class.php';
37 require_once DOL_DOCUMENT_ROOT.
'/core/modules/fichinter/modules_fichinter.php';
38 require_once DOL_DOCUMENT_ROOT.
'/core/lib/fichinter.lib.php';
39 require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
41 require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
42 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formprojet.class.php';
45 require_once DOL_DOCUMENT_ROOT.
"/core/class/html.formcontract.class.php";
46 require_once DOL_DOCUMENT_ROOT.
"/contrat/class/contrat.class.php";
48 if (!empty($conf->global->FICHEINTER_ADDON) && is_readable(DOL_DOCUMENT_ROOT.
"/core/modules/fichinter/mod_".$conf->global->FICHEINTER_ADDON.
".php")) {
49 require_once DOL_DOCUMENT_ROOT.
"/core/modules/fichinter/mod_".$conf->global->FICHEINTER_ADDON.
'.php';
51 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
52 require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
55 $langs->loadLangs(array(
'bills',
'companies',
'interventions',
'stocks'));
59 $ref_client =
GETPOST(
'ref_client',
'alpha');
60 $socid = (int)
GETPOST(
'socid',
'int');
61 $contratid = (int)
GETPOST(
'contratid',
'int');
62 $action =
GETPOST(
'action',
'alpha');
63 $cancel =
GETPOST(
'cancel',
'alpha');
64 $confirm =
GETPOST(
'confirm',
'alpha');
65 $mesg =
GETPOST(
'msg',
'alpha');
66 $origin =
GETPOST(
'origin',
'alpha');
68 $note_public =
GETPOST(
'note_public',
'restricthtml');
69 $note_private =
GETPOST(
'note_private',
'restricthtml');
70 $lineid =
GETPOST(
'line_id',
'int');
75 $hidedetails = (
GETPOST(
'hidedetails',
'int') ?
GETPOST(
'hidedetails',
'int') : (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS) ? 1 : 0));
76 $hidedesc = (
GETPOST(
'hidedesc',
'int') ?
GETPOST(
'hidedesc',
'int') : (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DESC) ? 1 : 0));
77 $hideref = (
GETPOST(
'hideref',
'int') ?
GETPOST(
'hideref',
'int') : (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_REF) ? 1 : 0));
80 $hookmanager->initHooks(array(
'interventioncard',
'globalcard'));
86 $extrafields->fetch_name_optionals_label($object->table_element);
89 if ($id > 0 || !empty($ref)) {
90 $ret = $object->fetch($id, $ref);
92 $ret = $object->fetch_thirdparty();
101 $socid = $user->socid;
105 $permissionnote = $user->rights->ficheinter->creer;
106 $permissiondellink = $user->rights->ficheinter->creer;
107 $permissiontodelete = (($object->statut ==
Fichinter::STATUS_DRAFT && $user->rights->ficheinter->creer) || $user->rights->ficheinter->supprimer);
115 $reshook = $hookmanager->executeHooks(
'doActions',
$parameters, $object, $action);
120 if (empty($reshook)) {
121 $backurlforlist = DOL_URL_ROOT.
'/fichinter/list.php';
123 if (empty($backtopage) || ($cancel && empty($id))) {
124 if (empty($backtopage) || ($cancel && strpos($backtopage,
'__ID__'))) {
125 if (empty($id) && (($action !=
'add' && $action !=
'create') || $cancel)) {
126 $backtopage = $backurlforlist;
128 $backtopage = DOL_URL_ROOT.
'/fichinter/card.php?id='.((!empty($id) && $id > 0) ? $id :
'__ID__');
134 if (!empty($backtopageforcancel)) {
135 header(
"Location: ".$backtopageforcancel);
137 } elseif (!empty($backtopage)) {
138 header(
"Location: ".$backtopage);
144 include DOL_DOCUMENT_ROOT.
'/core/actions_setnotes.inc.php';
146 include DOL_DOCUMENT_ROOT.
'/core/actions_dellink.inc.php';
149 if ($action ==
'confirm_clone' && $confirm ==
'yes' && $user->rights->ficheinter->creer) {
150 if (1 == 0 && !
GETPOST(
'clone_content') && !
GETPOST(
'clone_receivers')) {
153 if ($object->id > 0) {
155 $orig = clone $object;
157 $result = $object->createFromClone($user, $socid);
159 header(
"Location: ".$_SERVER[
'PHP_SELF'].
'?id='.$result);
170 if ($action ==
'confirm_validate' && $confirm ==
'yes' && $user->rights->ficheinter->creer) {
171 $result = $object->setValid($user);
174 if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
176 $outputlangs = $langs;
179 $newlang =
GETPOST(
'lang_id',
'aZ09');
182 $newlang = $object->thirdparty->default_lang;
184 if (!empty($newlang)) {
186 $outputlangs->setDefaultLang($newlang);
191 header(
'Location: '.$_SERVER[
"PHP_SELF"].
'?id='.$object->id);
194 $mesg = $object->error;
196 } elseif ($action ==
'confirm_modify' && $confirm ==
'yes' && $user->rights->ficheinter->creer) {
197 $result = $object->setDraft($user);
199 if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
201 $outputlangs = $langs;
204 $newlang =
GETPOST(
'lang_id',
'aZ09');
207 $newlang = $object->thirdparty->default_lang;
209 if (!empty($newlang)) {
211 $outputlangs->setDefaultLang($newlang);
216 header(
'Location: '.$_SERVER[
"PHP_SELF"].
'?id='.$object->id);
219 $mesg = $object->error;
221 } elseif ($action ==
'add' && $user->rights->ficheinter->creer) {
222 $selectedLines =
GETPOST(
'toselect',
'array');
223 $object->socid = $socid;
224 $object->duration = (int)
GETPOST(
'duration',
'int');
225 $object->fk_project = (int)
GETPOST(
'projectid',
'int');
226 $object->fk_contrat = (int)
GETPOST(
'contratid',
'int');
227 $object->author = $user->id;
228 $object->description =
GETPOST(
'description',
'restricthtml');
230 $object->ref_client = $ref_client;
231 $object->model_pdf =
GETPOST(
'model',
'alpha');
232 $object->note_private =
GETPOST(
'note_private',
'restricthtml');
233 $object->note_public =
GETPOST(
'note_public',
'restricthtml');
235 if ($object->socid > 0) {
237 if (!empty($origin) && !empty($originid)) {
240 $element = $subelement =
GETPOST(
'origin',
'alphanohtml');
241 if (preg_match(
'/^([^_]+)_([^_]+)/i',
GETPOST(
'origin',
'alphanohtml'), $regs)) {
243 $subelement = $regs[2];
247 if ($element ==
'order') {
248 $element = $subelement =
'commande';
250 if ($element ==
'propal') {
251 $element =
'comm/propal'; $subelement =
'propal';
253 if ($element ==
'contract') {
254 $element = $subelement =
'contrat';
257 $object->origin = $origin;
258 $object->origin_id = $originid;
261 $object->linked_objects[$object->origin] = $object->origin_id;
262 if (is_array($_POST[
'other_linked_objects']) && !empty($_POST[
'other_linked_objects'])) {
263 $object->linked_objects = array_merge($object->linked_objects, $_POST[
'other_linked_objects']);
269 $ret = $extrafields->setOptionalsFromPost(
null, $object);
278 $id = $object->create($user);
283 $classname = ucfirst($subelement);
284 $srcobject =
new $classname($db);
286 dol_syslog(
"Try to find source object origin=".$object->origin.
" originid=".$object->origin_id.
" to add lines");
287 $result = $srcobject->fetch($object->origin_id);
289 $srcobject->fetch_thirdparty();
290 $lines = $srcobject->lines;
291 if (empty($lines) && method_exists($srcobject,
'fetch_lines')) {
292 $srcobject->fetch_lines();
293 $lines = $srcobject->lines;
296 if (is_array($lines)) {
297 $num = count($lines);
299 for ($i = 0; $i < $num; $i++) {
300 if (!in_array($lines[$i]->
id, $selectedLines)) {
310 if ($lines[$i]->fk_product > 0) {
312 $prod->id = $lines[$i]->fk_product;
315 if (
getDolGlobalInt(
'MAIN_MULTILANGS') && !empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE)) {
316 $prod->getMultiLangs();
318 $prod->fetch($lines[$i]->fk_product);
319 $outputlangs = $langs;
321 if (empty($newlang) &&
GETPOST(
'lang_id',
'aZ09')) {
322 $newlang =
GETPOST(
'lang_id',
'aZ09');
324 if (empty($newlang)) {
325 $newlang = $srcobject->thirdparty->default_lang;
327 if (!empty($newlang)) {
329 $outputlangs->setDefaultLang($newlang);
331 $label = (!empty($prod->multilangs[$outputlangs->defaultlang][
"libelle"])) ? $prod->multilangs[$outputlangs->defaultlang][
"libelle"] : $lines[$i]->product_label;
333 $prod->fetch($lines[$i]->fk_product);
334 $label = $lines[$i]->product_label;
337 if ($prod->duration_value && $conf->global->FICHINTER_USE_SERVICE_DURATION) {
338 switch ($prod->duration_unit) {
347 $mult = 3600 * 24 * 7;
350 $mult = (int) 3600 * 24 * (365 / 12);
353 $mult = 3600 * 24 * 365;
356 $duration = $prod->duration_value * $mult * $lines[$i]->qty;
359 $desc = $lines[$i]->product_ref;
367 $desc .=
' ('.$langs->trans(
'Quantity').
': '.$lines[$i]->qty.
')';
370 $date_intervention =
dol_mktime(0, 0, 0, $timearray[
'mon'], $timearray[
'mday'], $timearray[
'year']);
379 $extrafields->fetch_name_optionals_label($object->table_element_line);
380 $array_options = $extrafields->getOptionalsFromPost($object->table_element_line, $predef);
382 $result = $object->addline(
399 $langs->load(
"errors");
405 $langs->load(
"errors");
412 $ret = $extrafields->setOptionalsFromPost(
null, $object);
420 $array_options = $extrafields->getOptionalsFromPost($object->table_element);
422 $object->array_options = $array_options;
424 $result = $object->create($user);
428 $langs->load(
"errors");
436 $mesg = $langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"ThirdParty"));
440 } elseif ($action ==
'update' && $user->rights->ficheinter->creer) {
441 $object->socid = $socid;
442 $object->fk_project = (int)
GETPOST(
'projectid',
'int');
443 $object->fk_contrat = (int)
GETPOST(
'contratid',
'int');
444 $object->author = $user->id;
445 $object->description =
GETPOST(
'description',
'restricthtml');
447 $object->ref_client = $ref_client;
449 $result = $object->update($user);
453 } elseif ($action ==
'classin' && $user->rights->ficheinter->creer) {
455 $result = $object->setProject(
GETPOST(
'projectid',
'int'));
459 } elseif ($action ==
'setcontract' && $user->rights->contrat->creer) {
461 $result = $object->set_contrat($user,
GETPOST(
'contratid',
'int'));
465 } elseif ($action ==
'setref_client' && $user->rights->ficheinter->creer) {
467 $result = $object->setRefClient($user,
GETPOST(
'ref_client',
'alpha'));
471 } elseif ($action ==
'confirm_delete' && $confirm ==
'yes' && $user->rights->ficheinter->supprimer) {
472 $result = $object->delete($user);
477 header(
'Location: '.DOL_URL_ROOT.
'/fichinter/list.php?leftmenu=ficheinter&restore_lastsearch_values=1');
479 } elseif ($action ==
'setdescription' && $user->rights->ficheinter->creer) {
480 $result = $object->set_description($user,
GETPOST(
'description'));
484 } elseif ($action ==
"addline" && $user->rights->ficheinter->creer) {
486 if (!
GETPOST(
'np_desc',
'restricthtml') && empty($conf->global->FICHINTER_EMPTY_LINE_DESC)) {
487 $mesg = $langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Description"));
490 if (empty($conf->global->FICHINTER_WITHOUT_DURATION) && !
GETPOST(
'durationhour',
'int') && !
GETPOST(
'durationmin',
'int')) {
491 $mesg = $langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Duration"));
494 if (empty($conf->global->FICHINTER_WITHOUT_DURATION) &&
GETPOST(
'durationhour',
'int') >= 24 &&
GETPOST(
'durationmin',
'int') > 0) {
495 $mesg = $langs->trans(
"ErrorValueTooHigh");
501 $desc =
GETPOST(
'np_desc',
'restricthtml');
502 $date_intervention =
dol_mktime(
GETPOST(
'dihour',
'int'),
GETPOST(
'dimin',
'int'), 0,
GETPOST(
'dimonth',
'int'),
GETPOST(
'diday',
'int'),
GETPOST(
'diyear',
'int'));
506 $extrafields->fetch_name_optionals_label($object->table_element_line);
507 $array_options = $extrafields->getOptionalsFromPost($object->table_element_line);
509 $result = $object->addline(
519 $outputlangs = $langs;
522 $newlang =
GETPOST(
'lang_id',
'aZ09');
525 $newlang = $object->thirdparty->default_lang;
527 if (!empty($newlang)) {
529 $outputlangs->setDefaultLang($newlang);
535 if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
538 header(
'Location: '.$_SERVER[
"PHP_SELF"].
'?id='.$object->id);
541 $mesg = $object->error;
545 } elseif ($action ==
'classifybilled' && $user->rights->ficheinter->creer) {
549 header(
'Location: '.$_SERVER[
"PHP_SELF"].
'?id='.$object->id);
554 } elseif ($action ==
'classifyunbilled' && $user->rights->ficheinter->creer) {
558 header(
'Location: '.$_SERVER[
"PHP_SELF"].
'?id='.$object->id);
561 $mesg = $object->error;
563 } elseif ($action ==
'classifydone' && $user->rights->ficheinter->creer) {
567 header(
'Location: '.$_SERVER[
"PHP_SELF"].
'?id='.$object->id);
572 } elseif ($action ==
'confirm_reopen' && $user->rights->ficheinter->creer) {
576 header(
'Location: '.$_SERVER[
"PHP_SELF"].
'?id='.$object->id);
579 $mesg = $object->error;
581 } elseif ($action ==
'updateline' && $user->rights->ficheinter->creer &&
GETPOST(
'save',
'alpha') == $langs->trans(
"Save")) {
584 if ($objectline->fetch($lineid) <= 0) {
589 if ($object->fetch($objectline->fk_fichinter) <= 0) {
593 $object->fetch_thirdparty();
595 $desc =
GETPOST(
'np_desc',
'restricthtml');
596 $date_inter =
dol_mktime(
GETPOST(
'dihour',
'int'),
GETPOST(
'dimin',
'int'), 0,
GETPOST(
'dimonth',
'int'),
GETPOST(
'diday',
'int'),
GETPOST(
'diyear',
'int'));
599 $objectline->datei = $date_inter;
600 $objectline->desc = $desc;
601 $objectline->duration = $duration;
604 $extrafields->fetch_name_optionals_label($object->table_element_line);
605 $array_options = $extrafields->getOptionalsFromPost($object->table_element_line);
606 $objectline->array_options = $array_options;
608 $result = $objectline->update($user);
615 $outputlangs = $langs;
618 $newlang =
GETPOST(
'lang_id',
'aZ09');
621 $newlang = $object->thirdparty->default_lang;
623 if (!empty($newlang)) {
625 $outputlangs->setDefaultLang($newlang);
627 if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
631 header(
'Location: '.$_SERVER[
"PHP_SELF"].
'?id='.$object->id);
633 } elseif ($action ==
'confirm_deleteline' && $confirm ==
'yes' && $user->rights->ficheinter->creer) {
636 if ($objectline->fetch($lineid) <= 0) {
640 $result = $objectline->deleteline($user);
642 if ($object->fetch($objectline->fk_fichinter) <= 0) {
648 $outputlangs = $langs;
651 $newlang =
GETPOST(
'lang_id',
'aZ09');
654 $newlang = $object->thirdparty->default_lang;
656 if (!empty($newlang)) {
658 $outputlangs->setDefaultLang($newlang);
660 if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
663 } elseif ($action ==
'up' && $user->rights->ficheinter->creer) {
665 $object->line_up($lineid);
668 $outputlangs = $langs;
671 $newlang =
GETPOST(
'lang_id',
'aZ09');
674 $newlang = $object->thirdparty->default_lang;
676 if (!empty($newlang)) {
678 $outputlangs->setDefaultLang($newlang);
680 if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
684 header(
'Location: '.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'#'.$lineid);
686 } elseif ($action ==
'down' && $user->rights->ficheinter->creer) {
687 $object->line_down($lineid);
690 $outputlangs = $langs;
693 $newlang =
GETPOST(
'lang_id',
'aZ09');
696 $newlang = $object->thirdparty->default_lang;
698 if (!empty($newlang)) {
700 $outputlangs->setDefaultLang($newlang);
702 if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
706 header(
'Location: '.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'#'.$lineid);
711 include DOL_DOCUMENT_ROOT.
'/core/actions_printing.inc.php';
714 $triggersendname =
'FICHINTER_SENTBYMAIL';
715 $autocopy =
'MAIN_MAIL_AUTOCOPY_FICHINTER_TO';
716 $trackid =
'int'.$object->id;
717 include DOL_DOCUMENT_ROOT.
'/core/actions_sendmails.inc.php';
720 $upload_dir = $conf->ficheinter->dir_output;
721 $permissiontoadd = $user->rights->ficheinter->creer;
722 include DOL_DOCUMENT_ROOT.
'/core/actions_builddoc.inc.php';
724 if ($action ==
'update_extras') {
728 $ret = $extrafields->setOptionalsFromPost(
null, $object,
GETPOST(
'attribute',
'restricthtml'));
735 $result = $object->insertExtraFields(
'INTERVENTION_MODIFY');
742 $action =
'edit_extras';
746 if (!empty($conf->global->MAIN_DISABLE_CONTACTS_TAB) && $user->rights->ficheinter->creer) {
747 if ($action ==
'addcontact') {
748 if ($result > 0 && $id > 0) {
751 $result = $object->add_contact($contactid, $typeid,
GETPOST(
"source",
'aZ09'));
755 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".$object->id);
758 if ($object->error ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
759 $langs->load(
"errors");
760 $mesg = $langs->trans(
"ErrorThisContactIsAlreadyDefinedAsThisType");
762 $mesg = $object->error;
765 } elseif ($action ==
'swapstatut') {
767 $result = $object->swapContactStatus(
GETPOST(
'ligne',
'int'));
768 } elseif ($action ==
'deletecontact') {
770 $result = $object->delete_contact(
GETPOST(
'lineid',
'int'));
773 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".$object->id);
801 if ($action ==
'create') {
806 print
load_fiche_titre($langs->trans(
"AddIntervention"),
'',
'intervention');
815 $res = $soc->fetch($socid);
818 if (
GETPOST(
'origin',
'alphanohtml') &&
GETPOST(
'originid',
'int')) {
821 $element = $subelement =
GETPOST(
'origin',
'alphanohtml');
822 if (preg_match(
'/^([^_]+)_([^_]+)/i',
GETPOST(
'origin',
'alphanohtml'), $regs)) {
824 $subelement = $regs[2];
827 if ($element ==
'project') {
828 $projectid =
GETPOST(
'originid',
'int');
831 if ($element ==
'order' || $element ==
'commande') {
832 $element = $subelement =
'commande';
834 if ($element ==
'propal') {
835 $element =
'comm/propal'; $subelement =
'propal';
837 if ($element ==
'contract') {
838 $element = $subelement =
'contrat';
843 $classname = ucfirst($subelement);
844 $objectsrc =
new $classname($db);
845 $objectsrc->fetch(
GETPOST(
'originid'));
846 if (empty($objectsrc->lines) && method_exists($objectsrc,
'fetch_lines')) {
847 $objectsrc->fetch_lines();
848 $lines = $objectsrc->lines;
850 $objectsrc->fetch_thirdparty();
852 $projectid = (!empty($objectsrc->fk_project) ? $objectsrc->fk_project :
'');
854 $soc = $objectsrc->thirdparty;
856 $note_private = (!empty($objectsrc->note) ? $objectsrc->note : (!empty($objectsrc->note_private) ? $objectsrc->note_private :
GETPOST(
'note_private',
'restricthtml')));
857 $note_public = (!empty($objectsrc->note_public) ? $objectsrc->note_public :
GETPOST(
'note_public',
'restricthtml'));
860 $objectsrc->fetch_optionals();
861 $object->array_options = $objectsrc->array_options;
864 $srccontactslist = $objectsrc->liste_contact(-1,
'external', 1);
867 $projectid =
GETPOST(
'projectid',
'int');
870 if (!$conf->global->FICHEINTER_ADDON) {
871 dol_print_error($db, $langs->trans(
"Error").
" ".$langs->trans(
"Error_FICHEINTER_ADDON_NotDefined"));
877 $obj = $conf->global->FICHEINTER_ADDON;
887 print
'<form name="fichinter" action="'.$_SERVER[
'PHP_SELF'].
'" method="POST">';
888 print
'<input type="hidden" name="token" value="'.newToken().
'">';
889 print
'<input type="hidden" name="socid" value='.$soc->id.
'>';
890 print
'<input type="hidden" name="action" value="add">';
894 print
'<table class="border centpercent">';
896 print
'<tr><td class="fieldrequired titlefieldcreate">'.$langs->trans(
"ThirdParty").
'</td><td>'.$soc->getNomUrl(1).
'</td></tr>';
899 print
'<tr><td class="fieldrequired">'.$langs->trans(
'Ref').
'</td><td>'.$langs->trans(
"Draft").
'</td></tr>';
902 print
'<tr class="field_ref_client"><td class="titlefieldcreate">'.$langs->trans(
'RefCustomer').
'</td><td class="valuefieldcreate">';
903 print
'<input type="text" name="ref_client" value="'.GETPOST(
'ref_client').
'"></td>';
907 print
'<tr><td class="tdtop">'.$langs->trans(
"Description").
'</td>';
909 print
'<textarea name="description" class="quatrevingtpercent" rows="'.ROWS_3.
'">'.
GETPOST(
'description').
'</textarea>';
916 $langs->load(
"project");
918 print
'<tr><td>'.$langs->trans(
"Project").
'</td><td>';
925 $numprojet = $formproject->select_projects($soc->id, $projectid,
'projectid');
926 if ($numprojet == 0) {
927 print
' <a href="'.DOL_URL_ROOT.
'/projet/card.php?socid='.$soc->id.
'&action=create"><span class="fa fa-plus-circle valignmiddle paddingleft" title="'.$langs->trans(
"AddProject").
'"></span></a>';
934 $langs->load(
"contracts");
935 print
'<tr><td>'.$langs->trans(
"Contract").
'</td><td>';
936 $numcontrat = $formcontract->select_contract($soc->id,
GETPOST(
'contratid',
'int'),
'contratid', 0, 1, 1);
937 if ($numcontrat == 0) {
938 print
' <a href="'.DOL_URL_ROOT.
'/contrat/card.php?socid='.$soc->id.
'&action=create"><span class="fa fa-plus-circle valignmiddle paddingleft" title="'.$langs->trans(
"AddContract").
'"></span></a>';
945 print
'<td>'.$langs->trans(
"DefaultModel").
'</td>';
948 print
$form->selectarray(
'model', $liste, $conf->global->FICHEINTER_ADDON_PDF);
953 print
'<td class="tdtop">'.$langs->trans(
'NotePublic').
'</td>';
955 $doleditor =
new DolEditor(
'note_public', $note_public,
'', 80,
'dolibarr_notes',
'In', 0,
false, empty($conf->global->FCKEDITOR_ENABLE_NOTE_PUBLIC) ? 0 : 1, ROWS_3,
'90%');
956 print $doleditor->Create(1);
961 if (empty($user->socid)) {
963 print
'<td class="tdtop">'.$langs->trans(
'NotePrivate').
'</td>';
965 $doleditor =
new DolEditor(
'note_private', $note_private,
'', 80,
'dolibarr_notes',
'In', 0,
false, empty($conf->global->FCKEDITOR_ENABLE_NOTE_PRIVATE) ? 0 : 1, ROWS_3,
'90%');
966 print $doleditor->Create(1);
973 $reshook = $hookmanager->executeHooks(
'formObjectOptions',
$parameters, $object, $action);
974 print $hookmanager->resPrint;
975 if (empty($reshook)) {
976 print $object->showOptionals($extrafields,
'create');
980 if (!empty($origin) && !empty($originid) && is_object($objectsrc)) {
981 $newclassname = $classname;
982 if ($newclassname ==
'Propal') {
983 $newclassname =
'CommercialProposal';
985 print
'<tr><td>'.$langs->trans($newclassname).
'</td><td colspan="2">'.$objectsrc->getNomUrl(1).
'</td></tr>';
1014 if (is_object($objectsrc)) {
1015 print
'<input type="hidden" name="origin" value="'.$objectsrc->element.
'">';
1016 print
'<input type="hidden" name="originid" value="'.$objectsrc->id.
'">';
1017 } elseif ($origin ==
'project' && !empty($projectid)) {
1018 print
'<input type="hidden" name="projectid" value="'.$projectid.
'">';
1023 print
$form->buttonsSaveCancel(
"CreateDraftIntervention");
1026 if (!empty($origin) && !empty($originid) && is_object($objectsrc)) {
1027 $title = $langs->trans(
'Services');
1030 print
'<div class="div-table-responsive-no-min">';
1031 print
'<table class="noborder centpercent">';
1033 $objectsrc->printOriginLinesList(empty($conf->global->FICHINTER_PRINT_PRODUCTS) ?
'services' :
'');
1041 print
'<form name="fichinter" action="'.$_SERVER[
'PHP_SELF'].
'" method="POST">';
1042 print
'<input type="hidden" name="token" value="'.newToken().
'">';
1043 print
'<input type="hidden" name="action" value="create">';
1047 if (is_object($objectsrc)) {
1048 print
'<input type="hidden" name="origin" value="'.$objectsrc->element.
'">';
1049 print
'<input type="hidden" name="originid" value="'.$objectsrc->id.
'">';
1050 } elseif ($origin ==
'project' && !empty($projectid)) {
1051 print
'<input type="hidden" name="projectid" value="'.$projectid.
'">';
1053 print
'<table class="border centpercent">';
1054 print
'<tr><td class="fieldrequired">'.$langs->trans(
"ThirdParty").
'</td><td>';
1055 print
$form->select_company(
'',
'socid',
'',
'SelectThirdParty', 1, 0,
null, 0,
'minwidth300');
1056 print
' <a href="'.DOL_URL_ROOT.
'/societe/card.php?action=create&backtopage='.urlencode($_SERVER[
"PHP_SELF"].
'?action=create').
'"><span class="fa fa-plus-circle valignmiddle paddingleft" title="'.$langs->trans(
"AddThirdParty").
'"></span></a>';
1062 print
$form->buttonsSaveCancel(
"CreateDraftIntervention");
1066 } elseif ($id > 0 || !empty($ref)) {
1069 $object->fetch($id, $ref);
1070 $object->fetch_thirdparty();
1073 $soc->fetch($object->socid);
1083 print
dol_get_fiche_head($head,
'card', $langs->trans(
"InterventionCard"), -1,
'intervention');
1088 if ($action ==
'delete') {
1089 $formconfirm =
$form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.$object->id, $langs->trans(
'DeleteIntervention'), $langs->trans(
'ConfirmDeleteIntervention'),
'confirm_delete',
'', 0, 1);
1093 if ($action ==
'validate') {
1095 $ref = substr($object->ref, 1, 4);
1096 if ($ref ==
'PROV') {
1097 $numref = $object->getNextNumRef($soc);
1098 if (empty($numref)) {
1103 $numref = $object->ref;
1105 $text = $langs->trans(
'ConfirmValidateIntervention', $numref);
1107 $formconfirm =
$form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.$object->id, $langs->trans(
'ValidateIntervention'), $text,
'confirm_validate',
'', 1, 1);
1111 if ($action ==
'modify') {
1112 $formconfirm =
$form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.$object->id, $langs->trans(
'ModifyIntervention'), $langs->trans(
'ConfirmModifyIntervention'),
'confirm_modify',
'', 0, 1);
1116 if ($action ==
'reopen') {
1117 $formconfirm =
$form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.$object->id, $langs->trans(
'ReOpen'), $langs->trans(
'ConfirmReopenIntervention', $object->ref),
'confirm_reopen',
'', 0, 1);
1121 if ($action ==
'ask_deleteline') {
1122 $formconfirm =
$form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&line_id='.$lineid, $langs->trans(
'DeleteInterventionLine'), $langs->trans(
'ConfirmDeleteInterventionLine'),
'confirm_deleteline',
'', 0, 1);
1126 if ($action ==
'clone') {
1128 $formquestion = array(
1134 array(
'type' =>
'other',
'name' =>
'socid',
'label' => $langs->trans(
"SelectThirdParty"),
'value' =>
$form->select_company(
GETPOST(
'socid',
'int'),
'socid',
'',
'', 0, 0,
null, 0,
'minwidth200')));
1136 $formconfirm =
$form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.$object->id, $langs->trans(
'ToClone'), $langs->trans(
'ConfirmCloneIntervention', $object->ref),
'confirm_clone', $formquestion,
'yes', 1);
1141 $reshook = $hookmanager->executeHooks(
'formConfirm',
$parameters, $object, $action);
1142 if (empty($reshook)) {
1144 } elseif ($reshook > 0) {
1154 $linkback =
'<a href="'.DOL_URL_ROOT.
'/fichinter/list.php?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
1157 $morehtmlref =
'<div class="refidno">';
1159 $morehtmlref.=
$form->editfieldkey(
"RefCustomer",
'ref_client', $object->ref_client, $object, $user->rights->ficheinter->creer,
'string',
'', 0, 1);
1160 $morehtmlref.=
$form->editfieldval(
"RefCustomer",
'ref_client', $object->ref_client, $object, $user->rights->ficheinter->creer,
'string',
'',
null,
null,
'', 1);
1162 $morehtmlref .=
'<br>'.$object->thirdparty->getNomUrl(1,
'customer');
1165 $langs->load(
"projects");
1166 $morehtmlref .=
'<br>'.$langs->trans(
'Project').
' ';
1167 if ($user->rights->ficheinter->creer) {
1168 if ($action !=
'classify') {
1169 $morehtmlref .=
'<a class="editfielda" href="'.$_SERVER[
'PHP_SELF'].
'?action=classify&token='.
newToken().
'&id='.$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'SetProject')).
'</a> : ';
1171 if ($action ==
'classify') {
1173 $morehtmlref .=
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?id='.$object->id.
'">';
1174 $morehtmlref .=
'<input type="hidden" name="action" value="classin">';
1175 $morehtmlref .=
'<input type="hidden" name="token" value="'.newToken().
'">';
1176 $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project,
'projectid', $maxlength, 0, 1, 0, 1, 0, 0,
'', 1);
1177 $morehtmlref .=
'<input type="submit" class="button button-edit valignmiddle" value="'.$langs->trans(
"Modify").
'">';
1178 $morehtmlref .=
'</form>';
1180 $morehtmlref .=
$form->form_project($_SERVER[
'PHP_SELF'].
'?id='.$object->id, $object->socid, $object->fk_project,
'none', 0, 0, 0, 1);
1183 if (!empty($object->fk_project)) {
1185 $proj->fetch($object->fk_project);
1186 $morehtmlref .=
' : '.$proj->getNomUrl(1);
1188 $morehtmlref .=
' - '.$proj->title;
1195 $morehtmlref .=
'</div>';
1197 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
1200 print
'<div class="fichecenter">';
1201 print
'<div class="fichehalfleft">';
1202 print
'<div class="underbanner clearboth"></div>';
1204 print
'<table class="border tableforfield centpercent">';
1206 if (!empty($conf->global->FICHINTER_USE_PLANNED_AND_DONE_DATES)) {
1208 print
'<tr><td class="titlefield">'.$langs->trans(
"Dateo").
'</td>';
1210 print $object->dateo ?
dol_print_date($object->dateo,
'daytext') :
' ';
1215 print
'<tr><td>'.$langs->trans(
"Datee").
'</td>';
1217 print $object->datee ?
dol_print_date($object->datee,
'daytext') :
' ';
1222 print
'<tr><td>'.$langs->trans(
"Datet").
'</td>';
1224 print $object->datet ?
dol_print_date($object->datet,
'daytext') :
' ';
1230 print
'<tr><td class="titlefield">';
1231 print
$form->editfieldkey(
"Description",
'description', $object->description, $object, $user->rights->ficheinter->creer,
'textarea');
1233 print
$form->editfieldval(
"Description",
'description', $object->description, $object, $user->rights->ficheinter->creer,
'textarea:8');
1239 $langs->load(
'contracts');
1243 print
'<table class="nobordernopadding centpercent"><tr><td>';
1244 print $langs->trans(
'Contract');
1246 if ($action !=
'contrat') {
1247 print
'<td class="right"><a class="editfielda" href="'.$_SERVER[
"PHP_SELF"].
'?action=contrat&id='.$object->id.
'">';
1248 print
img_edit($langs->trans(
'SetContract'), 1);
1251 print
'</tr></table>';
1253 if ($action ==
'contrat') {
1254 $formcontract =
new Formcontract($db);
1255 $formcontract->formSelectContract($_SERVER[
"PHP_SELF"].
'?id='.$object->id, $object->socid, $object->fk_contrat,
'contratid', 0, 1, 1);
1257 if ($object->fk_contrat) {
1258 $contratstatic =
new Contrat($db);
1259 $contratstatic->fetch($object->fk_contrat);
1261 print $contratstatic->getNomUrl(0,
'', 1);
1272 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
1277 print
'<div class="fichehalfright">';
1278 print
'<div class="underbanner clearboth"></div>';
1280 print
'<table class="border tableforfield centpercent">';
1282 if (empty($conf->global->FICHINTER_DISABLE_DETAILS)) {
1284 print
'<tr><td class="titlefield">'.$langs->trans(
"TotalDuration").
'</td>';
1285 print
'<td>'.convertSecondToTime($object->duration,
'all', $conf->global->MAIN_DURATION_OF_WORKDAY).
'</td>';
1294 print
'<div class="clearboth"></div><br>';
1297 if (!empty($conf->global->MAIN_DISABLE_CONTACTS_TAB)) {
1298 $blocname =
'contacts';
1299 $title = $langs->trans(
'ContactsAddresses');
1300 include DOL_DOCUMENT_ROOT.
'/core/tpl/bloc_showhide.tpl.php';
1303 if (!empty($conf->global->MAIN_DISABLE_NOTES_TAB)) {
1304 $blocname =
'notes';
1305 $title = $langs->trans(
'Notes');
1306 include DOL_DOCUMENT_ROOT.
'/core/tpl/bloc_showhide.tpl.php';
1310 if (empty($conf->global->FICHINTER_DISABLE_DETAILS)) {
1311 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'" name="addinter" method="post">';
1312 print
'<input type="hidden" name="token" value="'.newToken().
'">';
1313 print
'<input type="hidden" name="id" value="'.$object->id.
'">';
1314 if ($action ==
'editline') {
1315 print
'<input type="hidden" name="action" value="updateline">';
1316 print
'<input type="hidden" name="line_id" value="'.GETPOST(
'line_id',
'int').
'">';
1318 print
'<input type="hidden" name="action" value="addline">';
1322 $sql =
'SELECT ft.rowid, ft.description, ft.fk_fichinter, ft.duree, ft.rang,';
1323 $sql .=
' ft.date as date_intervention';
1324 $sql .=
' FROM '.MAIN_DB_PREFIX.
'fichinterdet as ft';
1325 $sql .=
' WHERE ft.fk_fichinter = '.((int) $object->id);
1326 if (!empty($conf->global->FICHINTER_HIDE_EMPTY_DURATION)) {
1327 $sql .=
' AND ft.duree <> 0';
1329 $sql .=
' ORDER BY ft.rang ASC, ft.date ASC, ft.rowid';
1331 $resql = $db->query($sql);
1333 $num = $db->num_rows(
$resql);
1338 print
'<table class="noborder centpercent">';
1339 print
'<tr class="liste_titre">';
1342 if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER)) {
1343 print
'<td width="5" class="center linecolnum"></td>';
1346 print
'<td class="liste_titre">'.$langs->trans(
'Description').
'</td>';
1347 print
'<td class="liste_titre center">'.$langs->trans(
'Date').
'</td>';
1348 print
'<td class="liste_titre right">'.(empty($conf->global->FICHINTER_WITHOUT_DURATION) ? $langs->trans(
'Duration') :
'').
'</td>';
1349 print
'<td class="liste_titre"> </td>';
1350 print
'<td class="liste_titre"> </td>';
1354 $objp = $db->fetch_object(
$resql);
1357 if ($action !=
'editline' ||
GETPOST(
'line_id',
'int') != $objp->rowid) {
1358 print
'<tr class="oddeven">';
1361 if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER)) {
1362 print
'<td class="center linecolnum">'.($i + 1).
'</td>';
1366 print
'<a name="'.$objp->rowid.
'"></a>';
1370 $objectline->fetch($objp->rowid);
1371 $objectline->fetch_optionals();
1373 $extrafields->fetch_name_optionals_label($objectline->table_element);
1375 if (!empty($extrafields)) {
1376 $temps = $objectline->showOptionals($extrafields,
'view', array(),
'',
'', 1,
'line');
1377 if (!empty($temps)) {
1378 print
'<div style="padding-top: 10px" id="extrafield_lines_area_'.$line->id.
'" name="extrafield_lines_area_'.$line->id.
'">';
1387 print
'<td class="center" width="150">'.(empty($conf->global->FICHINTER_DATE_WITHOUT_HOUR) ?
dol_print_date($db->jdate($objp->date_intervention),
'dayhour') :
dol_print_date($db->jdate($objp->date_intervention),
'day')).
'</td>';
1390 print
'<td class="right" width="150">'.(empty($conf->global->FICHINTER_WITHOUT_DURATION) ?
convertSecondToTime($objp->duree) :
'').
'</td>';
1395 if ($object->statut == 0 && $user->rights->ficheinter->creer) {
1396 print
'<td class="center">';
1397 print
'<a class="editfielda marginrightonly" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=editline&token='.
newToken().
'&line_id='.$objp->rowid.
'#'.$objp->rowid.
'">';
1400 print
'<a class="marginleftonly" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=ask_deleteline&token='.
newToken().
'&line_id='.$objp->rowid.
'">';
1403 print
'<td class="center">';
1406 print
'<a class="marginleftonly" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=up&token='.
newToken().
'&line_id='.$objp->rowid.
'">';
1410 if ($i < $num - 1) {
1411 print
'<a class="marginleftonly" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=down&token='.
newToken().
'&line_id='.$objp->rowid.
'">';
1418 print
'<td colspan="2"> </td>';
1425 if ($object->statut == 0 && $action ==
'editline' && $user->rights->ficheinter->creer &&
GETPOST(
'line_id',
'int') == $objp->rowid) {
1426 print
'<tr class="oddeven nohover">';
1429 if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER)) {
1430 print
'<td class="center linecolnum">'.($i + 1).
'</td>';
1434 print
'<a name="'.$objp->rowid.
'"></a>';
1437 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
1438 $doleditor =
new DolEditor(
'np_desc', $objp->description,
'', 164,
'dolibarr_details',
'',
false,
true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_DETAILS'), ROWS_2,
'90%');
1439 $doleditor->Create();
1442 $objectline->fetch($objp->rowid);
1443 $objectline->fetch_optionals();
1445 $extrafields->fetch_name_optionals_label($objectline->table_element);
1447 if (!empty($extrafields)) {
1448 $temps = $objectline->showOptionals($extrafields,
'edit', array(),
'',
'', 1,
'line');
1449 if (!empty($temps)) {
1450 print
'<div style="padding-top: 10px" id="extrafield_lines_area_'.$line->id.
'" name="extrafield_lines_area_'.$line->id.
'">';
1459 print
'<td class="center nowrap">';
1460 if (!empty($conf->global->FICHINTER_DATE_WITHOUT_HOUR)) {
1461 print
$form->selectDate($db->jdate($objp->date_intervention),
'di', 0, 0, 0,
"date_intervention");
1463 print
$form->selectDate($db->jdate($objp->date_intervention),
'di', 1, 1, 0,
"date_intervention");
1468 print
'<td class="right">';
1469 if (empty($conf->global->FICHINTER_WITHOUT_DURATION)) {
1470 $selectmode =
'select';
1471 if (!empty($conf->global->INTERVENTION_ADDLINE_FREEDUREATION)) {
1472 $selectmode =
'text';
1474 $form->select_duration(
'duration', $objp->duree, 0, $selectmode);
1478 print
'<td class="center" colspan="5" valign="center">';
1479 print
'<input type="submit" class="button buttongen marginbottomonly button-save" name="save" value="'.$langs->trans(
"Save").
'">';
1480 print
'<input type="submit" class="button buttongen marginbottomonly button-cancel" name="cancel" value="'.$langs->trans(
"Cancel").
'"></td>';
1490 if ($object->statut == 0 && $user->rights->ficheinter->creer && $action <>
'editline' && empty($conf->global->FICHINTER_DISABLE_DETAILS)) {
1493 print
'<table class="noborder centpercent">';
1494 print
'<tr class="liste_titre">';
1497 if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER)) {
1498 print
'<td width="5" class="center linecolnum"></td>';
1502 print
'<a name="add"></a>';
1503 print $langs->trans(
'Description').
'</td>';
1504 print
'<td class="center">'.$langs->trans(
'Date').
'</td>';
1505 print
'<td class="right">'.(empty($conf->global->FICHINTER_WITHOUT_DURATION) ? $langs->trans(
'Duration') :
'').
'</td>';
1506 print
'<td colspan="3"> </td>';
1510 print
'<tr class="oddeven nohover">'.
"\n";
1513 if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER)) {
1514 print
'<td class="center linecolnum">'.($i + 1).
'</td>';
1519 if (empty($conf->global->FICHINTER_EMPTY_LINE_DESC)) {
1520 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
1521 $doleditor =
new DolEditor(
'np_desc',
GETPOST(
'np_desc',
'restricthtml'),
'', 100,
'dolibarr_details',
'',
false,
true, !empty($conf->global->FCKEDITOR_ENABLE_DETAILS), ROWS_2,
'90%');
1522 $doleditor->Create();
1526 $extrafields->fetch_name_optionals_label($objectline->table_element);
1528 if (is_object($objectline)) {
1529 $temps = $objectline->showOptionals($extrafields,
'create', array(),
'',
'', 1,
'line');
1531 if (!empty($temps)) {
1532 print
'<div style="padding-top: 10px" id="extrafield_lines_area_create" name="extrafield_lines_area_create">';
1541 print
'<td class="center nowrap">';
1544 if (!
GETPOST(
'diday',
'int')) {
1545 $timewithnohour =
dol_mktime(0, 0, 0, $timearray[
'mon'], $timearray[
'mday'], $timearray[
'year']);
1547 $timewithnohour =
dol_mktime(
GETPOST(
'dihour',
'int'),
GETPOST(
'dimin',
'int'), 0,
GETPOST(
'dimonth',
'int'),
GETPOST(
'diday',
'int'),
GETPOST(
'diyear',
'int'));
1549 if (!empty($conf->global->FICHINTER_DATE_WITHOUT_HOUR)) {
1550 print
$form->selectDate($timewithnohour,
'di', 0, 0, 0,
"addinter");
1552 print
$form->selectDate($timewithnohour,
'di', 1, 1, 0,
"addinter");
1557 print
'<td class="right">';
1558 if (empty($conf->global->FICHINTER_WITHOUT_DURATION)) {
1559 $selectmode =
'select';
1560 if (!empty($conf->global->INTERVENTION_ADDLINE_FREEDUREATION)) {
1561 $selectmode =
'text';
1563 $form->select_duration(
'duration', (!
GETPOST(
'durationhour',
'int') && !
GETPOST(
'durationmin',
'int')) ? 3600 : (60 * 60 *
GETPOST(
'durationhour',
'int') + 60 *
GETPOST(
'durationmin',
'int')), 0, $selectmode);
1567 print
'<td class="center" valign="middle" colspan="3"><input type="submit" class="button button-add" value="'.$langs->trans(
'Add').
'" name="addline"></td>';
1582 print
'</form>'.
"\n";
1594 print
'<div class="tabsAction">';
1597 $reshook = $hookmanager->executeHooks(
'addMoreActionsButtons',
$parameters, $object, $action);
1599 if (empty($reshook)) {
1600 if ($user->socid == 0) {
1601 if ($action !=
'editdescription' && ($action !=
'presend')) {
1603 if ($object->statut ==
Fichinter::STATUS_DRAFT && (count($object->lines) > 0 || !empty($conf->global->FICHINTER_DISABLE_DETAILS))) {
1604 if ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->rights->ficheinter->creer) || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->rights->ficheinter->ficheinter_advance->validate)) {
1605 print
'<div class="inline-block divButAction"><a class="butAction" href="card.php?id='.$object->id.
'&action=validate">'.$langs->trans(
"Validate").
'</a></div>';
1607 print
'<div class="inline-block divButActionRefused"><span class="butActionRefused" href="#" title="'.dol_escape_htmltag($langs->trans(
"NotEnoughPermissions")).
'">'.$langs->trans(
"Validate").
'</span></div>';
1612 if ($object->statut ==
Fichinter::STATUS_VALIDATED && ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->rights->ficheinter->creer) || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && $user->rights->ficheinter->ficheinter_advance->unvalidate))) {
1613 print
'<div class="inline-block divButAction"><a class="butAction" href="card.php?id='.$object->id.
'&action=modify">';
1614 if (empty($conf->global->FICHINTER_DISABLE_DETAILS)) {
1615 print $langs->trans(
"Modify");
1617 print $langs->trans(
"SetToDraft");
1624 if ($user->rights->ficheinter->creer) {
1625 print
'<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=reopen&token='.
newToken().
'">'.$langs->trans(
'Reopen').
'</a></div>';
1627 print
'<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#">'.$langs->trans(
'Reopen').
'</a></div>';
1632 if (empty($user->socid)) {
1634 if (empty($conf->global->MAIN_USE_ADVANCED_PERMS) || $user->rights->ficheinter->ficheinter_advance->send) {
1635 print
'<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=presend&token='.
newToken().
'&mode=init#formmailbeforetitle">'.$langs->trans(
'SendMail').
'</a></div>';
1637 print
'<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#">'.$langs->trans(
'SendMail').
'</a></div>';
1643 if ($conf->global->MAIN_FEATURES_LEVEL >= 1 && $object->statut ==
Fichinter::STATUS_DRAFT && $user->rights->ficheinter->creer && (count($object->lines) > 0)) {
1644 print
'<div class="inline-block divButAction">';
1645 print
'<a class="butAction" href="'.DOL_URL_ROOT.
'/fichinter/card-rec.php?id='.$object->id.
'&action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF'].
'?id='.$object->id).
'">'.$langs->trans(
"ChangeIntoRepeatableIntervention").
'</a>';
1651 $langs->load(
"propal");
1653 if ($user->rights->propal->creer) {
1654 print
'<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.
'/comm/propal/card.php?action=create&origin='.$object->element.
'&originid='.$object->id.
'&socid='.$object->socid.
'">'.$langs->trans(
"AddProp").
'</a></div>';
1656 print
'<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#" title="'.$langs->trans(
"NotEnoughPermissions").
'">'.$langs->trans(
"AddProp").
'</a></div>';
1663 $langs->load(
"bills");
1665 if ($user->rights->facture->creer) {
1666 print
'<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.
'/compta/facture/card.php?action=create&origin='.$object->element.
'&originid='.$object->id.
'&socid='.$object->socid.
'">'.$langs->trans(
"AddBill").
'</a></div>';
1668 print
'<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#" title="'.$langs->trans(
"NotEnoughPermissions").
'">'.$langs->trans(
"AddBill").
'</a></div>';
1672 if (!empty($conf->global->FICHINTER_CLASSIFY_BILLED)) {
1674 print
'<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=classifybilled&token='.
newToken().
'">'.$langs->trans(
"InterventionClassifyBilled").
'</a></div>';
1676 print
'<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=classifyunbilled&token='.
newToken().
'">'.$langs->trans(
"InterventionClassifyUnBilled").
'</a></div>';
1683 print
'<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=classifydone&token='.
newToken().
'">'.$langs->trans(
"InterventionClassifyDone").
'</a></div>';
1687 if ($user->rights->ficheinter->creer) {
1688 print
'<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER[
'PHP_SELF'].
'?id='.$object->id.
'&socid='.$object->socid.
'&action=clone&token='.
newToken().
'&object=ficheinter">'.$langs->trans(
"ToClone").
'</a></div>';
1692 print
dolGetButtonAction($langs->trans(
"Delete"),
'',
'delete', $_SERVER[
"PHP_SELF"].
'?id='.$object->id.
'&action=delete&token='.
newToken(),
'delete', $permissiontodelete);
1699 if ($action !=
'presend') {
1700 print
'<div class="fichecenter"><div class="fichehalfleft">';
1706 $filedir = $conf->ficheinter->dir_output.
"/".$filename;
1707 $urlsource = $_SERVER[
"PHP_SELF"].
"?id=".$object->id;
1708 $genallowed = $user->rights->ficheinter->lire;
1709 $delallowed = $user->rights->ficheinter->creer;
1710 print $formfile->showdocuments(
'ficheinter', $filename, $filedir, $urlsource, $genallowed, $delallowed, $object->model_pdf, 1, 0, 0, 28, 0,
'',
'',
'', $soc->default_lang);
1713 $linktoelem =
$form->showLinkToObjectBlock($object,
null, array(
'fichinter'));
1714 $somethingshown =
$form->showLinkedObjectBlock($object, $linktoelem);
1718 print
'<br><!-- Link to download main doc -->'.
"\n";
1724 print
'<br><!-- Link to sign -->';
1725 require_once DOL_DOCUMENT_ROOT.
'/core/lib/signature.lib.php';
1727 print showOnlineSignatureUrl(
'fichinter', $object->ref).
'<br>';
1730 print
'</div><div class="fichehalfright">';
1733 include_once DOL_DOCUMENT_ROOT.
'/core/class/html.formactions.class.php';
1735 $somethingshown =
$formactions->showactions($object,
'fichinter', $socid, 1);
1737 print
'</div></div>';
1742 if (
GETPOST(
'modelselected')) {
1743 $action =
'presend';
1747 $modelmail =
'fichinter_send';
1748 $defaulttopic =
'SendInterventionRef';
1749 $diroutput = $conf->ficheinter->dir_output;
1750 $trackid =
'int'.$object->id;
1752 include DOL_DOCUMENT_ROOT.
'/core/tpl/card_presend.tpl.php';
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
if(preg_match('/set_([a-z0-9_\-]+)/i', $action, $reg)) if(preg_match('/del_([a-z0-9_\-]+)/i', $action, $reg)) if($action=='set') elseif($action=='specimen') elseif($action=='setmodel') elseif($action=='del') elseif($action=='setdoc') $formactions
View.
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage contracts.
Class to manage a WYSIWYG editor.
Class to manage interventions.
const STATUS_BILLED
Billed.
const STATUS_DRAFT
Draft status.
const STATUS_VALIDATED
Validated status.
const STATUS_CLOSED
Closed.
Class to manage intervention lines.
static liste_modeles($db, $maxfilenamelength=0)
Return list of active generation modules.
Class to manage products or services.
const TYPE_PRODUCT
Regular product.
const TYPE_SERVICE
Service.
Class to manage projects.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage translations.
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
convertTime2Seconds($iHours=0, $iMinutes=0, $iSeconds=0)
Convert hours and minutes into seconds.
convertSecondToTime($iSecond, $format='all', $lengthOfDay=86400, $lengthOfWeek=7)
Return, in clear text, value of a number of seconds in days, hours and minutes.
fichinter_prepare_head($object)
Prepare array with list of tabs.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
img_delete($titlealt='default', $other='class="pictodelete"', $morecss='')
Show delete logo.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
img_down($titlealt='default', $selected=0, $moreclass='')
Show down arrow logo.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
if(!function_exists('dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dol_clone($object, $native=0)
Create a clone of instance of object (new instance with same value for each properties) With native =...
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
showDirectDownloadLink($object)
Return string with full Url.
dol_htmloutput_mesg($mesgstring='', $mesgarray=array(), $style='ok', $keepembedded=0)
Print formated messages to output (Used to show messages on html output).
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
dol_htmlentitiesbr($stringtoencode, $nl2brmode=0, $pagecodefrom='UTF-8', $removelasteolbr=1)
This function is called to encode a string into a HTML string but differs from htmlentities because a...
isModEnabled($module)
Is Dolibarr module enabled.
img_edit($titlealt='default', $float=0, $other='')
Show logo editer/modifier fiche.
img_up($titlealt='default', $selected=0, $moreclass='')
Show top arrow logo.
dol_htmloutput_errors($mesgstring='', $mesgarray=array(), $keepembedded=0)
Print formated error messages to output (Used to show messages on html output).
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_getdate($timestamp, $fast=false, $forcetimezone='')
Return an array with locale date info.
$formconfirm
if ($action == 'delbookkeepingyear') {
fichinter_create($db, $object, $modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0)
Create an intervention document on disk using template defined into FICHEINTER_ADDON_PDF.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.