31require_once DOL_DOCUMENT_ROOT.
'/core/class/notify.class.php';
32require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/fichinter/class/fichinter.class.php';
41 public $element =
'fichinterrec';
42 public $table_element =
'fichinter_rec';
43 public $table_element_line =
'fichinterdet_rec';
48 public $fk_element =
'fk_fichinter';
58 public $picto =
'intervention';
75 public $date_last_gen;
94 public $usenewprice = 0;
106 $this->statuts[0] =
'Draft';
107 $this->statuts[1] =
'Closed';
109 $this->statuts_short[0] =
'Draft';
110 $this->statuts_short[1] =
'Closed';
112 $this->statuts_logo[0] =
'statut0';
113 $this->statuts_logo[1] =
'statut1';
135 public function create($user, $notrigger = 0)
143 $this->title = trim($this->title);
152 $result = $fichintsrc->fetch($this->id_origin);
153 $result = $fichintsrc->fetch_lines();
158 $this->brouillon = 1;
160 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"fichinter_rec (";
166 $sql .=
", description";
167 $sql .=
", note_private";
168 $sql .=
", note_public";
169 $sql .=
", fk_user_author";
170 $sql .=
", fk_projet";
171 $sql .=
", fk_contrat";
172 $sql .=
", modelpdf";
174 $sql .=
", frequency";
175 $sql .=
", unit_frequency";
176 $sql .=
", date_when";
177 $sql .=
", date_last_gen";
178 $sql .=
", nb_gen_done";
179 $sql .=
", nb_gen_max";
182 $sql .=
") VALUES (";
183 $sql .=
"'".$this->db->escape($this->title).
"'";
184 $sql .=
", ".($this->socid > 0 ? ((int) $this->socid) :
'null');
185 $sql .=
", ".((int) $conf->entity);
186 $sql .=
", '".$this->db->idate($now).
"'";
187 $sql .=
", ".(!empty($fichintsrc->duration) ? ((int) $fichintsrc->duration) :
'0');
189 $sql .=
", ".(!empty($fichintsrc->note_private) ? (
"'".$this->db->escape($fichintsrc->note_private).
"'") :
"null");
190 $sql .=
", ".(!empty($fichintsrc->note_public) ? (
"'".$this->db->escape($fichintsrc->note_public).
"'") :
"null");
191 $sql .=
", ".((int) $user->id);
193 if ($this->socid == $fichintsrc->socid) {
194 $sql .=
", ".(!empty($fichintsrc->fk_project) ? ((int) $fichintsrc->fk_project) :
"null");
195 $sql .=
", ".(!empty($fichintsrc->fk_contrat) ? ((int) $fichintsrc->fk_contrat) :
"null");
197 $sql .=
", null, null";
200 $sql .=
", ".(!empty($fichintsrc->model_pdf) ?
"'".$this->db->escape($fichintsrc->model_pdf).
"'" :
"''");
203 $sql .=
", ".(!empty($this->frequency) ? ((int) $this->frequency) :
"null");
204 $sql .=
", '".$this->db->escape($this->unit_frequency).
"'";
205 $sql .=
", ".(!empty($this->date_when) ?
"'".$this->db->idate($this->date_when).
"'" :
'null');
206 $sql .=
", ".(!empty($this->date_last_gen) ?
"'".$this->db->idate($this->date_last_gen).
"'" :
'null');
208 $sql .=
", ".((int) $this->nb_gen_max);
212 if ($this->db->query($sql)) {
213 $this->
id = $this->db->last_insert_id(MAIN_DB_PREFIX.$this->table_element);
218 $num = count($fichintsrc->lines);
219 for ($i = 0; $i < $num; $i++) {
221 $result_insert = $this->
addline(
222 $fichintsrc->lines[$i]->desc,
223 $fichintsrc->lines[$i]->duration,
224 $fichintsrc->lines[$i]->date,
225 $fichintsrc->lines[$i]->rang,
226 $fichintsrc->lines[$i]->subprice,
227 $fichintsrc->lines[$i]->qty,
228 $fichintsrc->lines[$i]->tva_tx,
229 $fichintsrc->lines[$i]->fk_product,
230 $fichintsrc->lines[$i]->remise_percent,
235 $fichintsrc->lines[$i]->product_type,
236 $fichintsrc->lines[$i]->special_code,
237 !empty($fichintsrc->lines[$i]->label) ? $fichintsrc->lines[$i]->label :
"",
238 $fichintsrc->lines[$i]->fk_unit
241 if ($result_insert < 0) {
247 $this->db->rollback();
254 $this->error = $this->db->error().
' sql='.$sql;
255 $this->db->rollback();
259 $this->db->rollback();
273 public function fetch($rowid = 0, $ref =
'', $ref_ext =
'')
275 $sql =
'SELECT f.titre as title, f.fk_soc';
276 $sql .=
', f.datec, f.duree, f.fk_projet, f.fk_contrat, f.description';
277 $sql .=
', f.note_private, f.note_public, f.fk_user_author';
278 $sql .=
', f.frequency, f.unit_frequency, f.date_when, f.date_last_gen, f.nb_gen_done, f.nb_gen_max, f.auto_validate';
279 $sql .=
', f.note_private, f.note_public, f.fk_user_author';
280 $sql .=
' FROM '.MAIN_DB_PREFIX.
'fichinter_rec as f';
282 $sql .=
" WHERE f.rowid = ".((int) $rowid);
284 $sql .=
" WHERE f.titre = '".$this->db->escape($ref).
"'";
287 dol_syslog(get_class($this).
"::fetch rowid=".$rowid, LOG_DEBUG);
289 $result = $this->db->query($sql);
291 if ($this->db->num_rows($result)) {
292 $obj = $this->db->fetch_object($result);
295 $this->titre = $obj->title;
296 $this->title = $obj->title;
297 $this->
ref = $obj->title;
299 $this->datec = $obj->datec;
300 $this->duration = $obj->duree;
301 $this->socid = $obj->fk_soc;
303 $this->fk_project = $obj->fk_projet;
304 $this->fk_contrat = $obj->fk_contrat;
305 $this->note_private = $obj->note_private;
306 $this->note_public = $obj->note_public;
307 $this->user_author = $obj->fk_user_author;
308 $this->model_pdf = !empty($obj->model_pdf) ? $obj->model_pdf :
"";
309 $this->modelpdf = !empty($obj->model_pdf) ? $obj->model_pdf :
"";
310 $this->rang = !empty($obj->rang) ? $obj->rang :
"";
311 $this->special_code = !empty($obj->special_code) ? $obj->special_code :
"";
312 $this->frequency = $obj->frequency;
313 $this->unit_frequency = $obj->unit_frequency;
314 $this->date_when = $this->db->jdate($obj->date_when);
315 $this->date_last_gen = $this->db->jdate($obj->date_last_gen);
316 $this->nb_gen_done = $obj->nb_gen_done;
317 $this->nb_gen_max = $obj->nb_gen_max;
318 $this->auto_validate = $obj->auto_validate;
320 $this->brouillon = 1;
325 $this->error = $this->db->error();
330 $this->error =
'Interventional with id '.$rowid.
' not found sql='.$sql;
331 dol_syslog(get_class($this).
'::Fetch Error '.$this->error, LOG_ERR);
335 $this->error = $this->db->error();
351 $this->lines = array();
353 $sql =
'SELECT l.rowid, l.fk_product, l.product_type as product_type, l.label as custom_label, l.description,';
354 $sql .=
' l.price, l.qty, l.tva_tx, l.remise_percent, l.subprice, l.duree, l.date,';
355 $sql .=
' l.total_ht, l.total_tva, l.total_ttc,';
356 $sql .=
' l.rang, l.special_code,';
357 $sql .=
' l.fk_unit, p.ref as product_ref, p.fk_product_type as fk_product_type,';
358 $sql .=
' p.label as product_label, p.description as product_desc';
359 $sql .=
' FROM '.MAIN_DB_PREFIX.
'fichinterdet_rec as l';
360 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'product as p ON l.fk_product = p.rowid';
361 $sql .=
' WHERE l.fk_fichinter = '.((int) $this->
id);
363 dol_syslog(
'FichinterRec::fetch_lines', LOG_DEBUG);
365 $result = $this->db->query($sql);
367 $num = $this->db->num_rows($result);
370 $objp = $this->db->fetch_object($result);
373 $line->id = $objp->rowid;
374 $line->label = $objp->custom_label;
375 $line->desc = $objp->description;
376 $line->product_type = $objp->product_type;
377 $line->product_ref = $objp->product_ref;
378 $line->product_label = $objp->product_label;
379 $line->product_desc = $objp->product_desc;
380 $line->fk_product_type = $objp->fk_product_type;
381 $line->qty = $objp->qty;
382 $line->duree = $objp->duree;
383 $line->duration = $objp->duree;
384 $line->date = $objp->date;
385 $line->subprice = $objp->subprice;
386 $line->tva_tx = $objp->tva_tx;
387 $line->remise_percent = $objp->remise_percent;
388 $line->fk_remise_except = !empty($objp->fk_remise_except) ? $objp->fk_remise_except :
"";
389 $line->fk_product = $objp->fk_product;
390 $line->info_bits = !empty($objp->info_bits) ? $objp->info_bits :
"";
391 $line->total_ht = $objp->total_ht;
392 $line->total_tva = $objp->total_tva;
393 $line->total_ttc = $objp->total_ttc;
394 $line->rang = $objp->rang;
395 $line->special_code = $objp->special_code;
396 $line->fk_unit = $objp->fk_unit;
398 $this->lines[$i] = $line;
403 $this->db->free($result);
406 $this->error = $this->db->error();
419 public function delete(
User $user, $notrigger = 0)
423 dol_syslog(get_class($this).
"::delete rowid=".$rowid, LOG_DEBUG);
428 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"fichinterdet_rec WHERE fk_fichinter = ".((int) $rowid);
430 if ($this->db->query($sql)) {
431 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"fichinter_rec WHERE rowid = ".((int) $rowid);
433 if (!$this->db->query($sql)) {
434 $this->error = $this->db->lasterror();
438 $this->error = $this->db->lasterror();
446 $this->db->rollback();
474 public function addline($desc, $duration, $date,
$rang = -1, $pu_ht = 0, $qty = 0, $txtva = 0, $fk_product = 0, $remise_percent = 0, $price_base_type =
'HT', $info_bits = 0, $fk_remise_except =
'', $pu_ttc = 0, $type = 0, $special_code = 0, $label =
'', $fk_unit =
null)
478 include_once DOL_DOCUMENT_ROOT.
'/core/lib/price.lib.php';
482 $this->error =
'Bad value for parameter type';
486 if ($this->brouillon) {
488 $remise_percent =
price2num($remise_percent);
498 if (!preg_match(
'/\((.*)\)/', $txtva)) {
502 if ($price_base_type ==
'HT') {
512 $tabprice =
calcul_price_total($qty, $pu, $remise_percent, $txtva, 0, 0, 0, $price_base_type, $info_bits, $type, $mysoc);
514 $total_ht = $tabprice[0];
515 $total_tva = $tabprice[1];
516 $total_ttc = $tabprice[2];
518 $pu_ht = $tabprice[3];
520 $product_type = $type;
522 $product =
new Product($this->db);
523 $result = $product->fetch($fk_product);
524 $product_type = $product->type;
527 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"fichinterdet_rec (";
528 $sql .=
"fk_fichinter";
530 $sql .=
", description";
536 $sql .=
", fk_product";
537 $sql .=
", product_type";
538 $sql .=
", remise_percent";
539 $sql .=
", subprice";
540 $sql .=
", total_ht";
541 $sql .=
", total_tva";
542 $sql .=
", total_ttc";
546 $sql .=
") VALUES (";
547 $sql .= (int) $this->
id;
548 $sql .=
", ".(!empty($label) ?
"'".$this->db->escape($label).
"'" :
"null");
549 $sql .=
", ".(!empty($desc) ?
"'".$this->db->escape($desc).
"'" :
"null");
550 $sql .=
", ".(!empty($date) ?
"'".$this->db->idate($date).
"'" :
"null");
551 $sql .=
", ".$duration;
555 $sql .=
", ".(!empty($fk_product) ? $fk_product :
"null");
556 $sql .=
", ".$product_type;
557 $sql .=
", ".(!empty($remise_percent) ? $remise_percent :
"null");
558 $sql.=
", '".price2num($pu_ht).
"'";
559 $sql .=
", '".price2num($total_ht).
"'";
560 $sql .=
", '".price2num($total_tva).
"'";
561 $sql .=
", '".price2num($total_ttc).
"'";
562 $sql .=
", ".(int)
$rang;
564 $sql .=
", ".(!empty($fk_unit) ? $fk_unit :
"null");
567 dol_syslog(get_class($this).
"::addline", LOG_DEBUG);
568 if ($this->db->query($sql)) {
571 $this->error = $this->db->lasterror();
575 $this->error =
'Bad status of recurring intervention. Must be draft status to allow addition of lines';
593 if ($user->rights->fichinter->creer) {
594 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"fichinter_rec ";
595 $sql .=
" SET frequency='".$this->db->escape($freq).
"'";
596 $sql .=
", date_last_gen='".$this->db->escape($courant).
"'";
597 $sql .=
" WHERE rowid = ".((int) $this->
id);
599 $resql = $this->db->query($sql);
602 $this->frequency = $freq;
603 $this->date_last_gen = $courant;
624 public function getNomUrl($withpicto = 0, $option =
'', $max = 0, $short = 0, $moretitle =
'')
626 global $langs, $hookmanager;
629 $label = $langs->trans(
"ShowInterventionModel").
': '.$this->ref;
631 $url = DOL_URL_ROOT.
'/fichinter/card-rec.php?id='.$this->id;
637 $picto =
'intervention';
639 $link =
'<a href="'.$url.
'" title="'.
dol_escape_htmltag($label, 1).
'" class="classfortooltip">';
643 $result .= $link.img_object($label, $picto,
'class="classfortooltip"').$linkend;
645 if ($withpicto && $withpicto != 2) {
648 if ($withpicto != 2) {
649 $result .= $link.$this->ref.$linkend;
652 $hookmanager->initHooks(array($this->element .
'dao'));
653 $parameters = array(
'id'=>$this->
id,
'getnomurl' => &$result);
654 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
656 $result = $hookmanager->resPrint;
658 $result .= $hookmanager->resPrint;
677 parent::initAsSpecimen();
679 $this->usenewprice = 1;
692 $tables = array(
'fichinter_rec');
723 if (!$this->table_element) {
724 dol_syslog(get_class($this).
"::setFrequencyAndUnit called with table_element not defined", LOG_ERR);
728 if (!empty($frequency) && empty($unit)) {
729 dol_syslog(get_class($this).
"::setFrequencyAndUnit called with frequency defined but unit not ", LOG_ERR);
733 $sql =
'UPDATE '.MAIN_DB_PREFIX.$this->table_element;
734 $sql .=
' SET frequency = '.($frequency ? $this->db->escape($frequency) :
'null');
736 $sql .=
', unit_frequency = "'.$this->db->escape($unit).
'"';
738 $sql .=
" WHERE rowid = ".((int) $this->
id);
740 dol_syslog(get_class($this).
"::setFrequencyAndUnit", LOG_DEBUG);
741 if ($this->db->query($sql)) {
742 $this->frequency = $frequency;
744 $this->unit_frequency = $unit;
762 if (!$this->table_element) {
763 dol_syslog(get_class($this).
"::setNextDate was called on objet with property table_element not defined", LOG_ERR);
766 $sql =
'UPDATE '.MAIN_DB_PREFIX.$this->table_element;
767 $sql .=
" SET date_when = ".($date ?
"'".$this->db->idate($date).
"'" :
"null");
768 if ($increment_nb_gen_done > 0) {
769 $sql .=
', nb_gen_done = nb_gen_done + 1';
771 $sql .=
" WHERE rowid = ".((int) $this->
id);
773 dol_syslog(get_class($this).
"::setNextDate", LOG_DEBUG);
774 if ($this->db->query($sql)) {
775 $this->date_when = $date;
776 if ($increment_nb_gen_done > 0) {
777 $this->nb_gen_done++;
794 if (!$this->table_element) {
795 dol_syslog(get_class($this).
"::setMaxPeriod was called on objet with property table_element not defined", LOG_ERR);
803 $sql =
'UPDATE '.MAIN_DB_PREFIX.$this->table_element;
804 $sql .=
' SET nb_gen_max = '.((int) $nb);
805 $sql .=
' WHERE rowid = '.((int) $this->
id);
807 dol_syslog(get_class($this).
"::setMaxPeriod", LOG_DEBUG);
808 if ($this->db->query($sql)) {
809 $this->nb_gen_max = $nb;
825 if (!$this->table_element) {
826 dol_syslog(get_class($this).
"::setAutoValidate called with property table_element not defined", LOG_ERR);
830 $sql =
'UPDATE '.MAIN_DB_PREFIX.$this->table_element;
831 $sql .=
' SET auto_validate = '.((int) $validate);
832 $sql .=
' WHERE rowid = '.((int) $this->
id);
834 dol_syslog(get_class($this).
"::setAutoValidate", LOG_DEBUG);
835 if ($this->db->query($sql)) {
836 $this->auto_validate = $validate;
851 if (!$this->table_element) {
852 dol_syslog(get_class($this).
"::updateNbGenDone called with property table_element not defined", LOG_ERR);
856 $sql =
'UPDATE '.MAIN_DB_PREFIX.$this->table_element;
857 $sql .=
' SET nb_gen_done = nb_gen_done + 1';
858 $sql .=
' , date_last_gen = now()';
860 if ($this->nb_gen_max == $this->nb_gen_done + 1) {
861 $sql .=
' , statut = 1';
864 $sql .=
" WHERE rowid = ".((int) $this->
id);
866 dol_syslog(get_class($this).
"::setAutoValidate", LOG_DEBUG);
867 if ($this->db->query($sql)) {
868 $this->nb_gen_done = $this->nb_gen_done + 1;
869 $this->nb_gen_done =
dol_now();
static commonReplaceThirdparty(DoliDB $dbs, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a thirdparty id with another one.
static commonReplaceProduct(DoliDB $dbs, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a product id with another one.
Class to manage Dolibarr database access.
Class to manage interventions.
LibStatut($status, $mode=0)
Returns the label of a status.
fetch_lines()
Load array lines ->lines.
Class to manage intervention lines.
Classe de gestion des factures recurrentes/Modeles.
fetch($rowid=0, $ref='', $ref_ext='')
Get the template of intervention object and lines.
setMaxPeriod($nb)
Update the maximum period.
initAsSpecimen()
Initialise an instance with random values.
addline($desc, $duration, $date, $rang=-1, $pu_ht=0, $qty=0, $txtva=0, $fk_product=0, $remise_percent=0, $price_base_type='HT', $info_bits=0, $fk_remise_except='', $pu_ttc=0, $type=0, $special_code=0, $label='', $fk_unit=null)
Add a line to fichinter rec.
getNomUrl($withpicto=0, $option='', $max=0, $short=0, $moretitle='')
Return clicable name (with picto eventually)
updateNbGenDone()
Update the Number of Generation Done.
static replaceThirdparty(DoliDB $dbs, $origin_id, $dest_id)
Function used to replace a thirdparty id with another one.
setFrequencyAndUnit($frequency, $unit)
Update frequency and unit.
create($user, $notrigger=0)
Create a predefined fichinter.
getLibStatut($mode=0)
Returns the label status.
__construct($db)
Constructor.
set_auto($user, $freq, $courant)
Rend la fichinter automatique.
fetch_lines($sall=0)
Load all lines of template of intervention into this->lines.
setAutoValidate($validate)
Update the auto validate fichinter.
setNextDate($date, $increment_nb_gen_done=0)
Update the next date of execution.
static replaceProduct(DoliDB $db, $origin_id, $dest_id)
Function used to replace a product id with another one.
Class to manage products or services.
Class to manage Dolibarr users.
print $langs trans("Ref").' m m m statut
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_now($mode='auto')
Return date for now.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $uselocaltax1_rate, $uselocaltax2_rate, $remise_percent_global, $price_base_type, $info_bits, $type, $seller='', $localtaxes_array='', $progress=100, $multicurrency_tx=1, $pu_devise=0, $multicurrency_code='')
Calculate totals (net, vat, ...) of a line.