dolibarr 21.0.0-alpha
chargesociales.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2007 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2016-2024 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2017 Alexandre Spangaro <aspangaro@open-dsi.fr>
6 * Copyright (C) 2021 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
7 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
28require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
29
30
36{
40 public $element = 'chargesociales';
41
47 public $table = 'chargesociales';
48
52 public $table_element = 'chargesociales';
53
57 public $picto = 'bill';
58
62 protected $table_ref_field = 'ref';
63
67 public $date_ech;
68
72 public $label;
73
77 public $type;
78
82 public $type_label;
83
87 public $type_code;
88
92 public $type_accountancy_code;
93
97 public $amount;
98
102 public $paye;
103
108 public $periode;
109
113 public $period;
114
119 public $lib;
120
124 public $fk_account;
125
129 public $accountid;
130
134 public $paiementtype;
135
139 public $mode_reglement_id;
140
144 public $mode_reglement_code;
145
149 public $mode_reglement;
150
154 public $fk_project;
155
159 public $fk_user;
160
164 public $total;
165
169 public $totalpaid;
170
174 const STATUS_UNPAID = 0;
175
179 const STATUS_PAID = 1;
180
181
187 public function __construct(DoliDB $db)
188 {
189 $this->db = $db;
190 }
191
199 public function fetch($id, $ref = '')
200 {
201 $sql = "SELECT cs.rowid, cs.date_ech";
202 $sql .= ", cs.libelle as label, cs.fk_type, cs.amount, cs.fk_projet as fk_project, cs.paye, cs.periode as period, cs.import_key";
203 $sql .= ", cs.fk_account, cs.fk_mode_reglement, cs.fk_user, note_public, note_private";
204 $sql .= ", c.libelle as type_label, c.code as type_code, c.accountancy_code as type_accountancy_code";
205 $sql .= ', p.code as mode_reglement_code, p.libelle as mode_reglement_libelle';
206 $sql .= " FROM ".MAIN_DB_PREFIX."chargesociales as cs";
207 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_chargesociales as c ON cs.fk_type = c.id";
208 $sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_paiement as p ON cs.fk_mode_reglement = p.id';
209 $sql .= ' WHERE cs.entity IN ('.getEntity('tax').')';
210 if ($ref) {
211 $sql .= " AND cs.ref = '".$this->db->escape($ref)."'";
212 } else {
213 $sql .= " AND cs.rowid = ".((int) $id);
214 }
215
216 dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
217 $resql = $this->db->query($sql);
218 if ($resql) {
219 if ($this->db->num_rows($resql)) {
220 $obj = $this->db->fetch_object($resql);
221
222 $this->id = $obj->rowid;
223 $this->ref = $obj->rowid;
224 $this->date_ech = $this->db->jdate($obj->date_ech);
225 $this->lib = $obj->label;
226 $this->label = $obj->label;
227 $this->type = $obj->fk_type;
228 $this->type_label = $obj->type_label;
229 $this->type_code = $obj->type_code;
230 $this->type_accountancy_code = $obj->type_accountancy_code;
231 $this->fk_account = $obj->fk_account;
232 $this->mode_reglement_id = $obj->fk_mode_reglement;
233 $this->mode_reglement_code = $obj->mode_reglement_code;
234 $this->mode_reglement = $obj->mode_reglement_libelle;
235 $this->amount = $obj->amount;
236 $this->fk_project = $obj->fk_project;
237 $this->fk_user = $obj->fk_user;
238 $this->note_public = $obj->note_public;
239 $this->note_private = $obj->note_private;
240 $this->paye = $obj->paye;
241 $this->periode = $this->db->jdate($obj->period);
242 $this->period = $this->db->jdate($obj->period);
243 $this->import_key = $obj->import_key;
244
245 $this->db->free($resql);
246
247 return 1;
248 } else {
249 return 0;
250 }
251 } else {
252 $this->error = $this->db->lasterror();
253 return -1;
254 }
255 }
256
262 public function check()
263 {
264 $newamount = price2num($this->amount, 'MT');
265
266 // Validation of parameters
267 if ($newamount == 0 || empty($this->date_ech) || (empty($this->period) && empty($this->periode))) {
268 return false;
269 }
270
271 return true;
272 }
273
280 public function create($user)
281 {
282 global $conf;
283 $error = 0;
284
285 $now = dol_now();
286
287 // Nettoyage parameters
288 $newamount = price2num($this->amount, 'MT');
289
290 if (!$this->check()) {
291 $this->error = "ErrorBadParameter";
292 return -2;
293 }
294
295 $this->db->begin();
296
297 $sql = "INSERT INTO ".MAIN_DB_PREFIX."chargesociales (fk_type, fk_account, fk_mode_reglement, libelle, date_ech, periode, amount, fk_projet, entity, fk_user_author, fk_user, date_creation)";
298 $sql .= " VALUES (".((int) $this->type);
299 $sql .= ", ".($this->fk_account > 0 ? ((int) $this->fk_account) : 'NULL');
300 $sql .= ", ".($this->mode_reglement_id > 0 ? ((int) $this->mode_reglement_id) : "NULL");
301 $sql .= ", '".$this->db->escape($this->label ? $this->label : $this->lib)."'";
302 $sql .= ", '".$this->db->idate($this->date_ech)."'";
303 $sql .= ", '".$this->db->idate($this->periode)."'";
304 $sql .= ", '".price2num($newamount)."'";
305 $sql .= ", ".($this->fk_project > 0 ? ((int) $this->fk_project) : 'NULL');
306 $sql .= ", ".((int) $conf->entity);
307 $sql .= ", ".((int) $user->id);
308 $sql .= ", ".($this->fk_user > 0 ? ((int) $this->fk_user) : 'NULL');
309 $sql .= ", '".$this->db->idate($now)."'";
310 $sql .= ")";
311
312 dol_syslog(get_class($this)."::create", LOG_DEBUG);
313 $resql = $this->db->query($sql);
314 if ($resql) {
315 $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."chargesociales");
316
317 //dol_syslog("ChargesSociales::create this->id=".$this->id);
318 $result = $this->call_trigger('SOCIALCONTRIBUTION_CREATE', $user);
319 if ($result < 0) {
320 $error++;
321 }
322
323 if (empty($error)) {
324 $this->db->commit();
325 return $this->id;
326 } else {
327 $this->db->rollback();
328 return -1 * $error;
329 }
330 } else {
331 $this->error = $this->db->error();
332 $this->db->rollback();
333 return -1;
334 }
335 }
336
337
344 public function delete($user)
345 {
346 $error = 0;
347
348 $this->db->begin();
349
350 // Get bank transaction lines for this social contributions
351 include_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
352 $account = new Account($this->db);
353 $lines_url = $account->get_url(0, $this->id, 'sc');
354
355 // Delete bank urls
356 foreach ($lines_url as $line_url) {
357 if (!$error) {
358 $accountline = new AccountLine($this->db);
359 $accountline->fetch($line_url['fk_bank']);
360 $result = $accountline->delete_urls($user);
361 if ($result < 0) {
362 $error++;
363 }
364 }
365 }
366
367 // Delete payments
368 if (!$error) {
369 $sql = "DELETE FROM ".MAIN_DB_PREFIX."paiementcharge WHERE fk_charge=".((int) $this->id);
370 dol_syslog(get_class($this)."::delete", LOG_DEBUG);
371 $resql = $this->db->query($sql);
372 if (!$resql) {
373 $error++;
374 $this->error = $this->db->lasterror();
375 }
376 }
377
378 if (!$error) {
379 $sql = "DELETE FROM ".MAIN_DB_PREFIX."chargesociales WHERE rowid=".((int) $this->id);
380 dol_syslog(get_class($this)."::delete", LOG_DEBUG);
381 $resql = $this->db->query($sql);
382 if (!$resql) {
383 $error++;
384 $this->error = $this->db->lasterror();
385 }
386 }
387
388 if (!$error) {
389 $this->db->commit();
390 return 1;
391 } else {
392 $this->db->rollback();
393 return -1;
394 }
395 }
396
397
405 public function update($user, $notrigger = 0)
406 {
407 $error = 0;
408 $this->db->begin();
409
410 $sql = "UPDATE ".MAIN_DB_PREFIX."chargesociales";
411 $sql .= " SET libelle = '".$this->db->escape($this->label ? $this->label : $this->lib)."'";
412 $sql .= ", date_ech = '".$this->db->idate($this->date_ech)."'";
413 $sql .= ", periode = '".$this->db->idate($this->period ? $this->period : $this->periode)."'";
414 $sql .= ", amount = ".((float) price2num($this->amount, 'MT'));
415 $sql .= ", fk_projet=".($this->fk_project > 0 ? ((int) $this->fk_project) : "NULL");
416 $sql .= ", fk_user=".($this->fk_user > 0 ? ((int) $this->fk_user) : "NULL");
417 $sql .= ", fk_user_modif=".((int) $user->id);
418 if ($this->type > 0) {
419 $sql .= ", fk_type = ".((int) $this->type);
420 }
421 $sql .= ", fk_user_modif=".((int) $user->id);
422 $sql .= " WHERE rowid=".((int) $this->id);
423
424 dol_syslog(get_class($this)."::update", LOG_DEBUG);
425 $resql = $this->db->query($sql);
426
427 if (!$resql) {
428 $error++;
429 $this->errors[] = "Error ".$this->db->lasterror();
430 }
431
432 if (!$error) {
433 if (!$notrigger) {
434 // Call trigger
435 $result = $this->call_trigger('SOCIALCONTRIBUTION_MODIFY', $user);
436 if ($result < 0) {
437 $error++;
438 }
439 // End call triggers
440 }
441 }
442
443 // Commit or rollback
444 if ($error) {
445 foreach ($this->errors as $errmsg) {
446 dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
447 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
448 }
449 $this->db->rollback();
450 return -1 * $error;
451 } else {
452 $this->db->commit();
453 return 1;
454 }
455 }
456
463 public function solde($year = 0)
464 {
465 global $conf;
466
467 $sql = "SELECT SUM(f.amount) as amount";
468 $sql .= " FROM ".MAIN_DB_PREFIX."chargesociales as f";
469 $sql .= " WHERE f.entity = ".((int) $conf->entity);
470 $sql .= " AND paye = 0";
471
472 if ($year) { // TODO Fix to use date function
473 $sql .= " AND f.datev >= '".((int) $year)."-01-01' AND f.datev <= '".((int) $year)."-12-31' ";
474 }
475
476 $result = $this->db->query($sql);
477 if ($result) {
478 if ($this->db->num_rows($result)) {
479 $obj = $this->db->fetch_object($result);
480 $this->db->free($result);
481 return $obj->amount;
482 } else {
483 return 0;
484 }
485 } else {
486 print $this->db->error();
487 return -1;
488 }
489 }
490
491 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
500 public function set_paid($user)
501 {
502 // phpcs:enable
503 dol_syslog(get_class($this)."::set_paid is deprecated, use setPaid instead", LOG_NOTICE);
504 return $this->setPaid($user);
505 }
506
513 public function setPaid($user)
514 {
515 $sql = "UPDATE ".MAIN_DB_PREFIX."chargesociales SET";
516 $sql .= " paye = 1";
517 $sql .= " WHERE rowid = ".((int) $this->id);
518
519 $return = $this->db->query($sql);
520
521 if ($return) {
522 $this->paye = 1;
523
524 return 1;
525 } else {
526 return -1;
527 }
528 }
529
530 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
539 public function set_unpaid($user)
540 {
541 // phpcs:enable
542 dol_syslog(get_class($this)."::set_unpaid is deprecated, use setUnpaid instead", LOG_NOTICE);
543 return $this->setUnpaid($user);
544 }
545
552 public function setUnpaid($user)
553 {
554 $sql = "UPDATE ".MAIN_DB_PREFIX."chargesociales SET";
555 $sql .= " paye = 0";
556 $sql .= " WHERE rowid = ".((int) $this->id);
557
558 $return = $this->db->query($sql);
559
560 if ($return) {
561 $this->paye = 0;
562
563 return 1;
564 } else {
565 return -1;
566 }
567 }
568
576 public function getLibStatut($mode = 0, $alreadypaid = -1)
577 {
578 return $this->LibStatut($this->paye, $mode, $alreadypaid);
579 }
580
581 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
590 public function LibStatut($status, $mode = 0, $alreadypaid = -1)
591 {
592 // phpcs:enable
593 global $langs;
594
595 // Load translation files required by the page
596 $langs->loadLangs(array("customers", "bills"));
597
598 // We reinit status array to force to redefine them because label may change according to properties values.
599 $this->labelStatus = array();
600 $this->labelStatusShort = array();
601
602 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
603 global $langs;
604 //$langs->load("mymodule");
605 $this->labelStatus[self::STATUS_UNPAID] = $langs->transnoentitiesnoconv('Unpaid');
606 $this->labelStatus[self::STATUS_PAID] = $langs->transnoentitiesnoconv('Paid');
607 if ($status == self::STATUS_UNPAID && $alreadypaid > 0) {
608 $this->labelStatus[self::STATUS_UNPAID] = $langs->transnoentitiesnoconv("BillStatusStarted");
609 }
610 $this->labelStatusShort[self::STATUS_UNPAID] = $langs->transnoentitiesnoconv('Unpaid');
611 $this->labelStatusShort[self::STATUS_PAID] = $langs->transnoentitiesnoconv('Paid');
612 if ($status == self::STATUS_UNPAID && $alreadypaid > 0) {
613 $this->labelStatusShort[self::STATUS_UNPAID] = $langs->transnoentitiesnoconv("BillStatusStarted");
614 }
615 }
616
617 $statusType = 'status1';
618 if ($status == 0 && $alreadypaid > 0) {
619 $statusType = 'status3';
620 }
621 if ($status == 1) {
622 $statusType = 'status6';
623 }
624
625 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusType, $mode);
626 }
627
628
639 public function getNomUrl($withpicto = 0, $option = '', $notooltip = 0, $short = 0, $save_lastsearch_value = -1)
640 {
641 global $langs, $conf, $user, $hookmanager;
642
643 if (!empty($conf->dol_no_mouse_hover)) {
644 $notooltip = 1; // Force disable tooltips
645 }
646
647 $result = '';
648
649 $url = DOL_URL_ROOT.'/compta/sociales/card.php?id='.$this->id;
650
651 if ($short) {
652 return $url;
653 }
654
655 if ($option !== 'nolink') {
656 // Add param to save lastsearch_values or not
657 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
658 if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
659 $add_save_lastsearch_values = 1;
660 }
661 if ($add_save_lastsearch_values) {
662 $url .= '&save_lastsearch_values=1';
663 }
664 }
665
666 if (empty($this->ref)) {
667 $this->ref = $this->label;
668 }
669
670 $label = img_picto('', $this->picto, 'class="pictofixedwidth"').'<u class="paddingrightonly">'.$langs->trans("SocialContribution").'</u>';
671 if (isset($this->paye)) {
672 $label .= ' '.$this->getLibStatut(5);
673 }
674 if (!empty($this->ref)) {
675 $label .= '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
676 }
677 if (!empty($this->label)) {
678 $label .= '<br><b>'.$langs->trans('Label').':</b> '.$this->label;
679 }
680 if (!empty($this->type_label)) {
681 $label .= '<br><b>'.$langs->trans('Type').':</b> '.$this->type_label;
682 if (!empty($this->type_accountancy_code)) {
683 $label .= ' <span class="opacitymedium">('.$langs->trans('AccountancyCode').': '.$this->type_accountancy_code.')</span>';
684 }
685 }
686
687 $linkclose = '';
688 if (empty($notooltip) && $user->hasRight("facture", "read")) {
689 if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
690 $label = $langs->trans("SocialContribution");
691 $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
692 }
693 $linkclose .= ' title="'.dol_escape_htmltag($label, 1).'"';
694 $linkclose .= ' class="classfortooltip"';
695 }
696
697 $linkstart = '<a href="'.$url.'"';
698 $linkstart .= $linkclose.'>';
699 $linkend = '</a>';
700
701 $result .= $linkstart;
702 if ($withpicto) {
703 $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);
704 }
705 if ($withpicto != 2) {
706 $result .= $this->ref;
707 }
708 $result .= $linkend;
709
710 global $action;
711 $hookmanager->initHooks(array($this->element . 'dao'));
712 $parameters = array('id' => $this->id, 'getnomurl' => &$result);
713 $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
714 if ($reshook > 0) {
715 $result = $hookmanager->resPrint;
716 } else {
717 $result .= $hookmanager->resPrint;
718 }
719
720 return $result;
721 }
722
728 public function getSommePaiement()
729 {
730 $table = 'paiementcharge';
731 $field = 'fk_charge';
732
733 $sql = 'SELECT sum(amount) as amount';
734 $sql .= ' FROM '.MAIN_DB_PREFIX.$table;
735 $sql .= " WHERE ".$field." = ".((int) $this->id);
736
737 dol_syslog(get_class($this)."::getSommePaiement", LOG_DEBUG);
738 $resql = $this->db->query($sql);
739 if ($resql) {
740 $amount = 0;
741
742 $obj = $this->db->fetch_object($resql);
743 if ($obj) {
744 $amount = $obj->amount ? $obj->amount : 0;
745 }
746
747 $this->db->free($resql);
748 return $amount;
749 } else {
750 return -1;
751 }
752 }
753
760 public function info($id)
761 {
762 $sql = "SELECT e.rowid, e.tms as datem, e.date_creation as datec, e.date_valid as datev, e.import_key,";
763 $sql .= " e.fk_user_author, e.fk_user_modif, e.fk_user_valid";
764 $sql .= " FROM ".MAIN_DB_PREFIX."chargesociales as e";
765 $sql .= " WHERE e.rowid = ".((int) $id);
766
767 dol_syslog(get_class($this)."::info", LOG_DEBUG);
768 $result = $this->db->query($sql);
769 if ($result) {
770 if ($this->db->num_rows($result)) {
771 $obj = $this->db->fetch_object($result);
772
773 $this->id = $obj->rowid;
774
775 $this->user_creation_id = $obj->fk_user_author;
776 $this->user_modification_id = $obj->fk_user_modif;
777 $this->user_validation_id = $obj->fk_user_valid;
778 $this->date_creation = $this->db->jdate($obj->datec);
779 $this->date_modification = $this->db->jdate($obj->datem);
780 $this->date_validation = $this->db->jdate($obj->datev);
781 $this->import_key = $obj->import_key;
782 }
783
784 $this->db->free($result);
785 return 1;
786 } else {
787 dol_print_error($this->db);
788 return -1;
789 }
790 }
791
799 public function initAsSpecimen()
800 {
801 // Initialize parameters
802 $this->id = 0;
803 $this->ref = 'SPECIMEN';
804 $this->specimen = 1;
805 $this->paye = 0;
806 $this->date_creation = dol_now();
807 $this->date_ech = $this->date_creation + 3600 * 24 * 30;
808 $this->periode = $this->date_creation + 3600 * 24 * 30;
809 $this->period = $this->date_creation + 3600 * 24 * 30;
810 $this->amount = 100;
811 $this->label = 'Social contribution label';
812 $this->type = 1;
813 $this->type_label = 'Type of social contribution';
814
815 return 1;
816 }
817
825 public function getKanbanView($option = '', $arraydata = null)
826 {
827 global $conf, $langs;
828
829 $selected = (empty($arraydata['selected']) ? 0 : $arraydata['selected']);
830
831 $return = '<div class="box-flex-item box-flex-grow-zero">';
832 $return .= '<div class="info-box info-box-sm">';
833 $return .= '<span class="info-box-icon bg-infobox-action">';
834 $return .= img_picto('', $this->picto);
835 $return .= '</span>';
836 $return .= '<div class="info-box-content">';
837 $return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this, 'getNomUrl') ? $this->getNomUrl(0) : $this->ref).'</span>';
838 if ($selected >= 0) {
839 $return .= '<input id="cb'.$this->id.'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->id.'"'.($selected ? ' checked="checked"' : '').'>';
840 }
841 if (property_exists($this, 'label')) {
842 $return .= ' &nbsp; <div class="inline-block opacitymedium valignmiddle tdoverflowmax100">'.$this->label.'</div>';
843 }
844 if (!empty($arraydata['project']) && $arraydata['project'] instanceof Project && $arraydata['project']->id > 0) {
845 $return .= '<br><span class="info-box-label">'.$arraydata['project']->getNomUrl(1).'</span>';
846 }
847 if (property_exists($this, 'date_ech')) {
848 $return .= '<br><span class="opacitymedium">'.$langs->trans("DateEnd").'</span> : <span class="info-box-label">'.dol_print_date($this->date_ech, 'day').'</span>';
849 }
850 if (property_exists($this, 'amount')) {
851 $return .= '<br>';
852 $return .= '<span class="info-box-label amount">'.price($this->amount, 0, $langs, 1, -1, -1, $conf->currency).'</span>';
853 }
854 if (method_exists($this, 'LibStatut')) {
855 $return .= '<br><div class="info-box-status">'.$this->getLibStatut(3, $this->alreadypaid).'</div>';
856 }
857 $return .= '</div>';
858 $return .= '</div>';
859 $return .= '</div>';
860 return $return;
861 }
862}
$object ref
Definition info.php:79
Class to manage bank accounts.
Class to manage bank transaction lines.
Class for managing the social charges.
LibStatut($status, $mode=0, $alreadypaid=-1)
Renvoi le libelle d'un statut donne.
__construct(DoliDB $db)
Constructor.
setUnpaid($user)
Remove tag paid on social contribution.
initAsSpecimen()
Initialise an instance with random values.
check()
Check if a social contribution can be created into database.
getKanbanView($option='', $arraydata=null)
Return clickable link of object (with eventually picto)
getSommePaiement()
Return amount of payments already done.
solde($year=0)
Calculate amount remaining to pay by year.
fetch($id, $ref='')
Retrouve et charge une charge sociale.
update($user, $notrigger=0)
Update social or fiscal contribution.
set_unpaid($user)
Remove tag paid on social contribution.
set_paid($user)
Tag social contribution as paid completely.
getNomUrl($withpicto=0, $option='', $notooltip=0, $short=0, $save_lastsearch_value=-1)
Return a link to the object card (with optionally the picto)
info($id)
Charge l'information d'ordre info dans l'objet entrepot.
create($user)
Create a social contribution into database.
getLibStatut($mode=0, $alreadypaid=-1)
Retourne le libelle du statut d'une charge (impaye, payee)
setPaid($user)
Tag social contribution as paid completely.
Parent class of all other business classes (invoices, contracts, proposals, orders,...
call_trigger($triggerName, $user)
Call trigger based on this instance.
Class to manage Dolibarr database access.
Class to manage projects.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_now($mode='auto')
Return date for now.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
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.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:137