28require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
29require_once DOL_DOCUMENT_ROOT.
'/compta/sociales/class/chargesociales.class.php';
40 public $element =
'paiementcharge';
45 public $table_element =
'paiementcharge';
50 public $picto =
'payment';
106 public $amounts = array();
111 public $fk_typepaiement;
118 public $num_paiement;
134 public $fk_user_creat;
139 public $fk_user_modif;
154 public $paiementtype;
175 public function create($user, $closepaidcontrib = 0)
181 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
184 if (!$this->datepaye) {
185 $this->error =
'ErrorBadValueForParameterCreatePaymentSocialContrib';
190 if (isset($this->fk_charge)) {
191 $this->fk_charge = (int) $this->fk_charge;
193 if (isset($this->
amount)) {
196 if (isset($this->fk_typepaiement)) {
197 $this->fk_typepaiement = (int) $this->fk_typepaiement;
199 if (isset($this->num_payment)) {
200 $this->num_payment = trim($this->num_payment);
202 if (isset($this->note_private)) {
203 $this->note_private = trim($this->note_private);
205 if (isset($this->fk_bank)) {
206 $this->fk_bank = (int) $this->fk_bank;
208 if (isset($this->fk_user_creat)) {
209 $this->fk_user_creat = (int) $this->fk_user_creat;
211 if (isset($this->fk_user_modif)) {
212 $this->fk_user_modif = (int) $this->fk_user_modif;
216 foreach ($this->amounts as $key => $value) {
217 $newvalue = (float)
price2num($value,
'MT');
218 $this->amounts[$key] = $newvalue;
219 $totalamount += $newvalue;
221 $totalamount = (float)
price2num($totalamount);
224 if ($totalamount == 0) {
225 $this->error =
'ErrorPaymentAmountMustNotBeNull';
232 if ($totalamount != 0) {
233 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"paiementcharge (fk_charge, datec, datep, amount,";
234 $sql .=
" fk_typepaiement, num_paiement, note, fk_user_creat, fk_bank)";
235 $sql .=
" VALUES ($this->chid, '".$this->db->idate($now).
"',";
236 $sql .=
" '".$this->db->idate($this->datepaye).
"',";
237 $sql .=
" ".((float) $totalamount).
",";
238 $sql .=
" ".((int) $this->paiementtype).
", '".$this->db->escape($this->num_payment).
"', '".$this->db->escape($this->note).
"', ".$user->id.
",";
241 $resql = $this->db->query($sql);
243 $this->
id = $this->db->last_insert_id(MAIN_DB_PREFIX.
"paiementcharge");
246 foreach ($this->amounts as $key => $amount) {
248 if (is_numeric($amount) && $amount != 0) {
252 if ($closepaidcontrib) {
254 $contrib->fetch($contribid);
255 $paiement = $contrib->getSommePaiement();
260 $alreadypayed = (float)
price2num($paiement + $creditnotes + $deposits,
'MT');
261 $remaintopay = (float)
price2num($contrib->amount - $paiement - $creditnotes - $deposits,
'MT');
262 if ($remaintopay == 0) {
263 $result = $contrib->setPaid($user);
265 dol_syslog(
"Remain to pay for conrib ".$contribid.
" not null. We do nothing.");
275 $result = $this->call_trigger(
'PAYMENTSOCIALCONTRIBUTION_CREATE', $user);
280 if ($totalamount != 0 && !$error) {
281 $this->
amount = $totalamount;
282 $this->total = $totalamount;
286 $this->error = $this->db->error();
287 $this->db->rollback();
302 $sql .=
" t.fk_charge,";
306 $sql .=
" t.amount,";
307 $sql .=
" t.fk_typepaiement,";
308 $sql .=
" t.num_paiement as num_payment,";
309 $sql .=
" t.note as note_private,";
310 $sql .=
" t.fk_bank,";
311 $sql .=
" t.fk_user_creat,";
312 $sql .=
" t.fk_user_modif,";
313 $sql .=
" pt.code as type_code, pt.libelle as type_label,";
314 $sql .=
' b.fk_account';
315 $sql .=
" FROM ".MAIN_DB_PREFIX.
"paiementcharge as t LEFT JOIN ".MAIN_DB_PREFIX.
"c_paiement as pt ON t.fk_typepaiement = pt.id";
316 $sql .=
' LEFT JOIN '.MAIN_DB_PREFIX.
'bank as b ON t.fk_bank = b.rowid';
317 $sql .=
" WHERE t.rowid = ".((int) $id);
320 dol_syslog(get_class($this).
"::fetch", LOG_DEBUG);
321 $resql = $this->db->query($sql);
323 if ($this->db->num_rows($resql)) {
324 $obj = $this->db->fetch_object($resql);
326 $this->
id = $obj->rowid;
327 $this->
ref = $obj->rowid;
329 $this->fk_charge = $obj->fk_charge;
330 $this->datec = $this->db->jdate($obj->datec);
331 $this->tms = $this->db->jdate($obj->tms);
332 $this->datep = $this->db->jdate($obj->datep);
333 $this->
amount = $obj->amount;
334 $this->total = $obj->amount;
335 $this->fk_typepaiement = $obj->fk_typepaiement;
336 $this->num_payment = $obj->num_payment;
337 $this->num_paiement = $obj->num_payment;
338 $this->note_private = $obj->note_private;
339 $this->fk_bank = $obj->fk_bank;
340 $this->fk_user_creat = $obj->fk_user_creat;
341 $this->fk_user_modif = $obj->fk_user_modif;
343 $this->type_code = $obj->type_code;
344 $this->type_label = $obj->type_label;
346 $this->bank_account = $obj->fk_account;
347 $this->bank_line = $obj->fk_bank;
349 $this->db->free($resql);
353 $this->error =
"Error ".$this->db->lasterror();
366 public function update($user =
null, $notrigger = 0)
368 global
$conf, $langs;
373 if (isset($this->fk_charge)) {
374 $this->fk_charge = (int) $this->fk_charge;
376 if (isset($this->
amount)) {
379 if (isset($this->fk_typepaiement)) {
380 $this->fk_typepaiement = (int) $this->fk_typepaiement;
382 if (isset($this->num_payment)) {
383 $this->num_payment = trim($this->num_payment);
385 if (isset($this->note_private)) {
386 $this->note_private = trim($this->note_private);
388 if (isset($this->fk_bank)) {
389 $this->fk_bank = (int) $this->fk_bank;
391 if (isset($this->fk_user_creat)) {
392 $this->fk_user_creat = (int) $this->fk_user_creat;
394 if (isset($this->fk_user_modif)) {
395 $this->fk_user_modif = (int) $this->fk_user_modif;
404 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"paiementcharge SET";
405 $sql .=
" fk_charge=".(isset($this->fk_charge) ? ((int) $this->fk_charge) :
"null").
",";
406 $sql .=
" datec=".(dol_strlen($this->datec) != 0 ?
"'".$this->db->idate($this->datec).
"'" :
'null').
",";
407 $sql .=
" tms=".(dol_strlen((
string) $this->tms) != 0 ?
"'".$this->db->idate($this->tms).
"'" :
'null').
",";
408 $sql .=
" datep=".(dol_strlen($this->datep) != 0 ?
"'".$this->db->idate($this->datep).
"'" :
'null').
",";
410 $sql .=
" fk_typepaiement=".(isset($this->fk_typepaiement) ? ((int) $this->fk_typepaiement) :
"null").
",";
411 $sql .=
" num_paiement=".(isset($this->num_payment) ?
"'".$this->db->escape($this->num_payment).
"'" :
"null").
",";
412 $sql .=
" note=".(isset($this->note) ?
"'".$this->db->escape($this->note).
"'" :
"null").
",";
413 $sql .=
" fk_bank=".(isset($this->fk_bank) ? ((int) $this->fk_bank) :
"null").
",";
414 $sql .=
" fk_user_creat=".(isset($this->fk_user_creat) ? ((int) $this->fk_user_creat) :
"null").
",";
415 $sql .=
" fk_user_modif=".(isset($this->fk_user_modif) ? ((int) $this->fk_user_modif) :
"null");
416 $sql .=
" WHERE rowid=".((int) $this->
id);
420 dol_syslog(get_class($this).
"::update", LOG_DEBUG);
421 $resql = $this->db->query($sql);
424 $this->errors[] =
"Error ".$this->db->lasterror();
429 foreach ($this->errors as $errmsg) {
430 dol_syslog(get_class($this).
"::update ".$errmsg, LOG_ERR);
431 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
433 $this->db->rollback();
449 public function delete($user, $notrigger = 0)
457 if ($this->bank_line > 0) {
459 $accline->fetch($this->bank_line);
460 $result = $accline->delete($user);
462 $this->errors[] = $accline->error;
468 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"paiementcharge";
469 $sql .=
" WHERE rowid=".((int) $this->
id);
471 dol_syslog(get_class($this).
"::delete", LOG_DEBUG);
472 $resql = $this->db->query($sql);
475 $this->errors[] =
"Error ".$this->db->lasterror();
481 foreach ($this->errors as $errmsg) {
482 dol_syslog(get_class($this).
"::delete ".$errmsg, LOG_ERR);
483 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
485 $this->db->rollback();
520 $object->context[
'createfromclone'] =
'createfromclone';
521 $result =
$object->create($user);
529 unset(
$object->context[
'createfromclone']);
536 $this->db->rollback();
552 $this->fk_charge = 0;
557 $this->fk_typepaiement = 0;
558 $this->num_payment =
'ABC123';
559 $this->note_private =
'';
560 $this->note_public =
'';
562 $this->fk_user_creat = 0;
563 $this->fk_user_modif = 0;
581 public function addPaymentToBank($user, $mode, $label, $accountid, $emetteur_nom, $emetteur_banque)
583 global
$conf, $langs;
586 $this->num_payment = trim($this->num_payment);
591 include_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/account.class.php';
594 $acc->fetch($accountid);
596 $total = $this->amount;
597 if ($mode ==
'payment_sc') {
602 $bank_line_id = $acc->addline(
616 if ($bank_line_id > 0) {
624 if ($mode ==
'payment_sc') {
625 $url = DOL_URL_ROOT.
'/compta/payment_sc/card.php?id=';
628 $result = $acc->add_url_line($bank_line_id, $this->
id, $url,
'(paiement)', $mode);
636 $linkaddedforthirdparty = array();
637 foreach ($this->amounts as $key => $value) {
638 if ($mode ==
'payment_sc') {
640 $socialcontrib->fetch($key);
641 $result = $acc->add_url_line($bank_line_id, $socialcontrib->id, DOL_URL_ROOT.
'/compta/charges.php?id=', $socialcontrib->type_label.(($socialcontrib->lib && $socialcontrib->lib != $socialcontrib->type_label) ?
' ('.$socialcontrib->lib.
')' :
''),
'sc');
647 if ($socialcontrib->fk_user) {
648 $fuser =
new User($this->db);
649 $fuser->fetch($socialcontrib->fk_user);
652 $result = $acc->add_url_line(
654 $socialcontrib->fk_user,
655 DOL_URL_ROOT.
'/user/card.php?id=',
656 $fuser->getFullName($langs),
691 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"paiementcharge SET fk_bank = ".((int) $id_bank).
" WHERE rowid = ".((int) $this->
id);
693 dol_syslog(get_class($this).
"::update_fk_bank", LOG_DEBUG);
694 $result = $this->db->query($sql);
698 $this->error = $this->db->error();
712 return $this->
LibStatut($this->statut, $mode);
728 $langs->load(
'compta');
780 if (empty($this->
ref)) {
781 $this->
ref = $this->label;
784 $label =
img_picto(
'', $this->picto).
' <u>'.$langs->trans(
"SocialContributionPayment").
'</u>';
785 $label .=
'<br><b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
786 if (!empty($this->label)) {
787 $labeltoshow = $this->label;
789 if (preg_match(
'/^\((.*)\)$/i', $this->label, $reg)) {
791 if ($reg[1] ==
'paiement') {
794 $labeltoshow = $langs->trans($reg[1]);
796 $label .=
'<br><b>'.$langs->trans(
'Label').
':</b> '.$labeltoshow;
799 $label .=
'<br><b>'.$langs->trans(
'Date').
':</b> '.
dol_print_date($this->datep,
'day');
802 if (!empty($this->
id)) {
803 $link =
'<a href="'.DOL_URL_ROOT.
'/compta/payment_sc/card.php?id='.$this->
id.
'" title="'.
dol_escape_htmltag($label, 1).
'" class="classfortooltip">';
807 $result .= ($link.img_object($label,
'payment',
'class="classfortooltip"').$linkend.
' ');
809 if ($withpicto && $withpicto != 2) {
812 if ($withpicto != 2) {
813 $result .= $link.($maxlen ?
dol_trunc($this->
ref, $maxlen) : $this->ref).$linkend;
829 $alreadydispatched = 0;
833 $sql =
" SELECT ".($mode ?
'DISTINCT piece_num' :
'COUNT(ab.rowid)').
" as nb";
834 $sql .=
" FROM ".MAIN_DB_PREFIX.
"accounting_bookkeeping as ab";
835 $sql .=
" WHERE ab.doc_type = '".$this->db->escape($type).
"' AND ab.fk_doc = ".((int) $this->bank_line);
837 $resql = $this->db->query($sql);
839 $obj = $this->db->fetch_object($resql);
841 $alreadydispatched = $obj->nb;
844 $this->error = $this->db->lasterror();
848 if ($alreadydispatched) {
849 return $alreadydispatched;
if(! $sortfield) if(! $sortorder) $object
Class to manage bank accounts.
Class to manage bank transaction lines.
Class for managing the social charges.
Parent class of all other business classes (invoices, contracts, proposals, orders,...
setErrorsFromObject($object)
setErrorsFromObject
Class to manage Dolibarr database access.
Class to manage payments of social contributions.
getLibStatut($mode=0)
Return the label of the status.
__construct(DoliDB $db)
Constructor.
fetch($id)
Load object in memory from database.
getNomUrl($withpicto=0, $maxlen=0)
Return clickable name (with picto eventually)
getVentilExportCompta($mode=0)
Return if object was dispatched into bookkeeping, or return the array of bookkeeping id.
create($user, $closepaidcontrib=0)
Create payment of social contribution into database.
addPaymentToBank($user, $mode, $label, $accountid, $emetteur_nom, $emetteur_banque)
Add record into bank for payment with links between this bank record and invoices of payment.
LibStatut($status, $mode=0)
Return the label of a given status.
update($user=null, $notrigger=0)
Update database.
createFromClone(User $user, $fromid)
Load an object from its id and create a new one in database.
update_fk_bank($id_bank)
Update the link between the Payment and the line generated in llx_bank.
initAsSpecimen()
Initialise an instance with random values.
Class to manage Dolibarr users.
dol_now($mode='gmt')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
isModEnabled($module)
Is Dolibarr module enabled.
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...
print $langs trans('Date')." left Ref Label right Qty right Price right TotalHT right TotalTTC right right right right right right right right right centpercent right TotalHT right n right VAT right n right TotalVAT right n No sujeto a RE IRPF right TotalLT1 right n right TotalLT2 right n right TotalTTC right n takeposcustomercurrency takeposcustomercurrency takeposcustomercurrency takeposcustomercurrency right TotalTTC takeposcustomercurrency right takeposcustomercurrency n right Paid right PaymentTypeShortLIQ right SELECT p pos_change as p datep as p p num_paiement as f pf amount as amount