31 require_once DOL_DOCUMENT_ROOT.
'/core/class/notify.class.php';
32 require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
33 require_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';
124 return $this->
LibStatut($this->statut, $mode);
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();
253 $this->error = $this->
db->error().
' sql='.$sql;
254 $this->
db->rollback();
258 $this->
db->rollback();
272 public function fetch($rowid = 0, $ref =
'', $ref_ext =
'')
274 $sql =
'SELECT f.titre as title, f.fk_soc';
275 $sql .=
', f.datec, f.duree, f.fk_projet, f.fk_contrat, f.description';
276 $sql .=
', f.note_private, f.note_public, f.fk_user_author';
277 $sql .=
', f.frequency, f.unit_frequency, f.date_when, f.date_last_gen, f.nb_gen_done, f.nb_gen_max, f.auto_validate';
278 $sql .=
', f.note_private, f.note_public, f.fk_user_author';
279 $sql .=
' FROM '.MAIN_DB_PREFIX.
'fichinter_rec as f';
281 $sql .=
" WHERE f.rowid = ".((int) $rowid);
283 $sql .=
" WHERE f.titre = '".$this->db->escape($ref).
"'";
286 dol_syslog(get_class($this).
"::fetch rowid=".$rowid, LOG_DEBUG);
288 $result = $this->
db->query($sql);
290 if ($this->
db->num_rows($result)) {
291 $obj = $this->
db->fetch_object($result);
294 $this->titre = $obj->title;
295 $this->title = $obj->title;
296 $this->
ref = $obj->title;
298 $this->datec = $obj->datec;
299 $this->duration = $obj->duree;
300 $this->socid = $obj->fk_soc;
302 $this->fk_project = $obj->fk_projet;
303 $this->fk_contrat = $obj->fk_contrat;
304 $this->note_private = $obj->note_private;
305 $this->note_public = $obj->note_public;
306 $this->user_author = $obj->fk_user_author;
307 $this->model_pdf = !empty($obj->model_pdf) ? $obj->model_pdf :
"";
308 $this->modelpdf = !empty($obj->model_pdf) ? $obj->model_pdf :
"";
309 $this->rang = !empty($obj->rang) ? $obj->rang :
"";
310 $this->special_code = !empty($obj->special_code) ? $obj->special_code :
"";
311 $this->frequency = $obj->frequency;
312 $this->unit_frequency = $obj->unit_frequency;
313 $this->date_when = $this->
db->jdate($obj->date_when);
314 $this->date_last_gen = $this->
db->jdate($obj->date_last_gen);
315 $this->nb_gen_done = $obj->nb_gen_done;
316 $this->nb_gen_max = $obj->nb_gen_max;
317 $this->auto_validate = $obj->auto_validate;
319 $this->brouillon = 1;
324 $this->error = $this->
db->error();
329 $this->error =
'Interventional with id '.$rowid.
' not found sql='.$sql;
330 dol_syslog(get_class($this).
'::Fetch Error '.$this->error, LOG_ERR);
334 $this->error = $this->
db->error();
350 $this->lines = array();
352 $sql =
'SELECT l.rowid, l.fk_product, l.product_type as product_type, l.label as custom_label, l.description,';
353 $sql .=
' l.price, l.qty, l.tva_tx, l.remise_percent, l.subprice, l.duree, l.date,';
354 $sql .=
' l.total_ht, l.total_tva, l.total_ttc,';
355 $sql .=
' l.rang, l.special_code,';
356 $sql .=
' l.fk_unit, p.ref as product_ref, p.fk_product_type as fk_product_type,';
357 $sql .=
' p.label as product_label, p.description as product_desc';
358 $sql .=
' FROM '.MAIN_DB_PREFIX.
'fichinterdet_rec as l';
359 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'product as p ON l.fk_product = p.rowid';
360 $sql .=
' WHERE l.fk_fichinter = '.((int) $this->
id);
362 dol_syslog(
'FichinterRec::fetch_lines', LOG_DEBUG);
364 $result = $this->
db->query($sql);
366 $num = $this->
db->num_rows($result);
369 $objp = $this->
db->fetch_object($result);
372 $line->id = $objp->rowid;
373 $line->label = $objp->custom_label;
374 $line->desc = $objp->description;
375 $line->product_type = $objp->product_type;
376 $line->product_ref = $objp->product_ref;
377 $line->product_label = $objp->product_label;
378 $line->product_desc = $objp->product_desc;
379 $line->fk_product_type = $objp->fk_product_type;
380 $line->qty = $objp->qty;
381 $line->duree = $objp->duree;
382 $line->duration = $objp->duree;
383 $line->date = $objp->date;
384 $line->subprice = $objp->subprice;
385 $line->tva_tx = $objp->tva_tx;
386 $line->remise_percent = $objp->remise_percent;
387 $line->fk_remise_except = !empty($objp->fk_remise_except) ? $objp->fk_remise_except :
"";
388 $line->fk_product = $objp->fk_product;
389 $line->info_bits = !empty($objp->info_bits) ? $objp->info_bits :
"";
390 $line->total_ht = $objp->total_ht;
391 $line->total_tva = $objp->total_tva;
392 $line->total_ttc = $objp->total_ttc;
393 $line->rang = $objp->rang;
394 $line->special_code = $objp->special_code;
395 $line->fk_unit = $objp->fk_unit;
397 $this->lines[$i] = $line;
402 $this->
db->free($result);
405 $this->error = $this->
db->error();
418 public function delete(
User $user, $notrigger = 0)
422 dol_syslog(get_class($this).
"::delete rowid=".$rowid, LOG_DEBUG);
427 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"fichinterdet_rec WHERE fk_fichinter = ".((int) $rowid);
429 if ($this->
db->query($sql)) {
430 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"fichinter_rec WHERE rowid = ".((int) $rowid);
432 if (!$this->
db->query($sql)) {
433 $this->error = $this->
db->lasterror();
437 $this->error = $this->
db->lasterror();
445 $this->
db->rollback();
473 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)
477 include_once DOL_DOCUMENT_ROOT.
'/core/lib/price.lib.php';
484 if ($this->brouillon) {
486 $remise_percent =
price2num($remise_percent);
496 if (!preg_match(
'/\((.*)\)/', $txtva)) {
500 if ($price_base_type ==
'HT') {
510 $tabprice =
calcul_price_total($qty, $pu, $remise_percent, $txtva, 0, 0, 0, $price_base_type, $info_bits, $type, $mysoc);
512 $total_ht = $tabprice[0];
513 $total_tva = $tabprice[1];
514 $total_ttc = $tabprice[2];
516 $pu_ht = $tabprice[3];
518 $product_type = $type;
521 $result = $product->fetch($fk_product);
522 $product_type = $product->type;
525 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"fichinterdet_rec (";
526 $sql .=
"fk_fichinter";
528 $sql .=
", description";
534 $sql .=
", fk_product";
535 $sql .=
", product_type";
536 $sql .=
", remise_percent";
537 $sql .=
", subprice";
538 $sql .=
", total_ht";
539 $sql .=
", total_tva";
540 $sql .=
", total_ttc";
544 $sql .=
") VALUES (";
545 $sql .= (int) $this->
id;
546 $sql .=
", ".(!empty($label) ?
"'".$this->db->escape($label).
"'" :
"null");
547 $sql .=
", ".(!empty($desc) ?
"'".$this->db->escape($desc).
"'" :
"null");
548 $sql .=
", ".(!empty($date) ?
"'".$this->db->idate($date).
"'" :
"null");
549 $sql .=
", ".$duration;
553 $sql .=
", ".(!empty($fk_product) ? $fk_product :
"null");
554 $sql .=
", ".$product_type;
555 $sql .=
", ".(!empty($remise_percent) ? $remise_percent :
"null");
556 $sql.=
", '".price2num($pu_ht).
"'";
557 $sql .=
", '".price2num($total_ht).
"'";
558 $sql .=
", '".price2num($total_tva).
"'";
559 $sql .=
", '".price2num($total_ttc).
"'";
560 $sql .=
", ".(int)
$rang;
562 $sql .=
", ".(!empty($fk_unit) ? $fk_unit :
"null");
565 dol_syslog(get_class($this).
"::addline", LOG_DEBUG);
566 if ($this->
db->query($sql)) {
569 $this->error = $this->
db->lasterror();
588 if ($user->rights->fichinter->creer) {
589 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"fichinter_rec ";
590 $sql .=
" SET frequency='".$this->db->escape($freq).
"'";
591 $sql .=
", date_last_gen='".$this->db->escape($courant).
"'";
592 $sql .=
" WHERE rowid = ".((int) $this->
id);
597 $this->frequency = $freq;
598 $this->date_last_gen = $courant;
619 public function getNomUrl($withpicto = 0, $option =
'', $max = 0, $short = 0, $moretitle =
'')
621 global $langs, $hookmanager;
624 $label = $langs->trans(
"ShowInterventionModel").
': '.$this->ref;
626 $url = DOL_URL_ROOT.
'/fichinter/card-rec.php?id='.$this->id;
632 $picto =
'intervention';
634 $link =
'<a href="'.$url.
'" title="'.
dol_escape_htmltag($label, 1).
'" class="classfortooltip">';
638 $result .= $link.img_object($label, $picto,
'class="classfortooltip"').$linkend;
640 if ($withpicto && $withpicto != 2) {
643 if ($withpicto != 2) {
644 $result .= $link.$this->ref.$linkend;
647 $hookmanager->initHooks(array($this->element .
'dao'));
648 $parameters = array(
'id'=>$this->
id,
'getnomurl' => &$result);
649 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
651 $result = $hookmanager->resPrint;
653 $result .= $hookmanager->resPrint;
672 parent::initAsSpecimen();
674 $this->usenewprice = 1;
687 $tables = array(
'fichinter_rec');
718 if (!$this->table_element) {
719 dol_syslog(get_class($this).
"::setFrequencyAndUnit called with table_element not defined", LOG_ERR);
723 if (!empty($frequency) && empty($unit)) {
724 dol_syslog(get_class($this).
"::setFrequencyAndUnit called with frequency defined but unit not ", LOG_ERR);
728 $sql =
'UPDATE '.MAIN_DB_PREFIX.$this->table_element;
729 $sql .=
' SET frequency = '.($frequency ? $this->
db->escape($frequency) :
'null');
731 $sql .=
', unit_frequency = "'.$this->db->escape($unit).
'"';
733 $sql .=
" WHERE rowid = ".((int) $this->
id);
735 dol_syslog(get_class($this).
"::setFrequencyAndUnit", LOG_DEBUG);
736 if ($this->
db->query($sql)) {
737 $this->frequency = $frequency;
739 $this->unit_frequency = $unit;
757 if (!$this->table_element) {
758 dol_syslog(get_class($this).
"::setNextDate was called on objet with property table_element not defined", LOG_ERR);
761 $sql =
'UPDATE '.MAIN_DB_PREFIX.$this->table_element;
762 $sql .=
" SET date_when = ".($date ?
"'".$this->db->idate($date).
"'" :
"null");
763 if ($increment_nb_gen_done > 0) {
764 $sql .=
', nb_gen_done = nb_gen_done + 1';
766 $sql .=
" WHERE rowid = ".((int) $this->
id);
768 dol_syslog(get_class($this).
"::setNextDate", LOG_DEBUG);
769 if ($this->
db->query($sql)) {
770 $this->date_when = $date;
771 if ($increment_nb_gen_done > 0) {
772 $this->nb_gen_done++;
789 if (!$this->table_element) {
790 dol_syslog(get_class($this).
"::setMaxPeriod was called on objet with property table_element not defined", LOG_ERR);
798 $sql =
'UPDATE '.MAIN_DB_PREFIX.$this->table_element;
799 $sql .=
' SET nb_gen_max = '.((int) $nb);
800 $sql .=
' WHERE rowid = '.((int) $this->
id);
802 dol_syslog(get_class($this).
"::setMaxPeriod", LOG_DEBUG);
803 if ($this->
db->query($sql)) {
804 $this->nb_gen_max = $nb;
820 if (!$this->table_element) {
821 dol_syslog(get_class($this).
"::setAutoValidate called with property table_element not defined", LOG_ERR);
825 $sql =
'UPDATE '.MAIN_DB_PREFIX.$this->table_element;
826 $sql .=
' SET auto_validate = '.((int) $validate);
827 $sql .=
' WHERE rowid = '.((int) $this->
id);
829 dol_syslog(get_class($this).
"::setAutoValidate", LOG_DEBUG);
830 if ($this->
db->query($sql)) {
831 $this->auto_validate = $validate;
846 if (!$this->table_element) {
847 dol_syslog(get_class($this).
"::updateNbGenDone called with property table_element not defined", LOG_ERR);
851 $sql =
'UPDATE '.MAIN_DB_PREFIX.$this->table_element;
852 $sql .=
' SET nb_gen_done = nb_gen_done + 1';
853 $sql .=
' , date_last_gen = now()';
855 if ($this->nb_gen_max == $this->nb_gen_done + 1) {
856 $sql .=
' , statut = 1';
859 $sql .=
" WHERE rowid = ".((int) $this->
id);
861 dol_syslog(get_class($this).
"::setAutoValidate", LOG_DEBUG);
862 if ($this->
db->query($sql)) {
863 $this->nb_gen_done = $this->nb_gen_done + 1;
864 $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.
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.
print *****$script_file(".$version.") pid cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
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.
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.
$conf db
API class for accounts.