36require
'../../main.inc.php';
37require_once DOL_DOCUMENT_ROOT.
'/core/lib/report.lib.php';
38require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
39require_once DOL_DOCUMENT_ROOT.
'/core/lib/bank.lib.php';
40require_once DOL_DOCUMENT_ROOT.
'/core/lib/accounting.lib.php';
41require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/accountingaccount.class.php';
42require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/accountingjournal.class.php';
43require_once DOL_DOCUMENT_ROOT.
'/societe/class/societe.class.php';
44require_once DOL_DOCUMENT_ROOT.
'/user/class/user.class.php';
45require_once DOL_DOCUMENT_ROOT.
'/adherents/class/adherent.class.php';
46require_once DOL_DOCUMENT_ROOT.
'/compta/sociales/class/chargesociales.class.php';
47require_once DOL_DOCUMENT_ROOT.
'/compta/paiement/class/paiement.class.php';
48require_once DOL_DOCUMENT_ROOT.
'/don/class/don.class.php';
49require_once DOL_DOCUMENT_ROOT.
'/don/class/paymentdonation.class.php';
50require_once DOL_DOCUMENT_ROOT.
'/compta/tva/class/tva.class.php';
51require_once DOL_DOCUMENT_ROOT.
'/salaries/class/paymentsalary.class.php';
52require_once DOL_DOCUMENT_ROOT.
'/compta/facture/class/facture.class.php';
53require_once DOL_DOCUMENT_ROOT.
'/fourn/class/paiementfourn.class.php';
54require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.facture.class.php';
55require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.class.php';
56require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/bookkeeping.class.php';
57require_once DOL_DOCUMENT_ROOT.
'/societe/class/client.class.php';
58require_once DOL_DOCUMENT_ROOT.
'/expensereport/class/expensereport.class.php';
59require_once DOL_DOCUMENT_ROOT.
'/expensereport/class/paymentexpensereport.class.php';
60require_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/paymentvarious.class.php';
61require_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/account.class.php';
62require_once DOL_DOCUMENT_ROOT.
'/loan/class/loan.class.php';
63require_once DOL_DOCUMENT_ROOT.
'/loan/class/paymentloan.class.php';
64require_once DOL_DOCUMENT_ROOT.
'/adherents/class/subscription.class.php';
75$langs->loadLangs(array(
"companies",
"other",
"compta",
"banks",
"bills",
"donations",
"loan",
"accountancy",
"trips",
"salaries",
"hrm",
"members"));
80$date_startmonth =
GETPOSTINT(
'date_startmonth');
86$in_bookkeeping =
GETPOST(
'in_bookkeeping',
'aZ09');
89if ($only_rappro == 0) {
96$action =
GETPOST(
'action',
'aZ09');
98if ($in_bookkeeping ==
'') {
99 $in_bookkeeping =
'notyet';
107if ($user->socid > 0) {
110if (!$user->hasRight(
'accounting',
'bind',
'write')) {
121$date_start =
dol_mktime(0, 0, 0, $date_startmonth, $date_startday, $date_startyear);
122$date_end =
dol_mktime(23, 59, 59, $date_endmonth, $date_endday, $date_endyear);
125$pastmonthyear =
null;
127if (empty($date_startmonth)) {
130 $date_start = $dates[
'date_start'];
131 $pastmonthyear = $dates[
'pastmonthyear'];
132 $pastmonth = $dates[
'pastmonth'];
134if (empty($date_endmonth)) {
137 $date_end = $dates[
'date_end'];
138 $pastmonthyear = $dates[
'pastmonthyear'];
139 $pastmonth = $dates[
'pastmonth'];
142if (!GETPOSTISSET(
'date_startmonth') && (empty($date_start) || empty($date_end))) {
144 $date_end =
dol_get_last_day((
int) $pastmonthyear, (
int) $pastmonth,
false);
149$sql =
"SELECT b.rowid, b.dateo as do, b.datev as dv, b.amount, b.amount_main_currency, b.label, b.rappro, b.num_releve, b.num_chq, b.fk_type, b.fk_account,";
150$sql .=
" ba.courant, ba.ref as baref, ba.account_number, ba.fk_accountancy_journal,";
151$sql .=
" soc.rowid as socid, soc.nom as name, soc.email as email, bu1.type as typeop_company,";
153 $sql .=
" spe.accountancy_code_customer_general,";
154 $sql .=
" spe.accountancy_code_customer as code_compta_client,";
155 $sql .=
" spe.accountancy_code_supplier_general,";
156 $sql .=
" spe.accountancy_code_supplier as code_compta_fournisseur,";
158 $sql .=
" soc.accountancy_code_customer_general,";
159 $sql .=
" soc.code_compta as code_compta_client,";
160 $sql .=
" soc.accountancy_code_supplier_general,";
161 $sql .=
" soc.code_compta_fournisseur,";
163$sql .=
" u.accountancy_code_user_general, u.accountancy_code, u.rowid as userid, u.lastname as lastname, u.firstname as firstname, u.email as useremail, u.statut as userstatus,";
164$sql .=
" bu2.type as typeop_user,";
165$sql .=
" bu3.type as typeop_payment, bu4.type as typeop_payment_supplier";
166$sql .=
" FROM ".$db->prefix().
"bank as b";
167$sql .=
" JOIN ".$db->prefix().
"bank_account as ba on b.fk_account = ba.rowid";
168$sql .=
" LEFT JOIN ".$db->prefix().
"bank_url as bu1 ON bu1.fk_bank = b.rowid AND bu1.type='company'";
169$sql .=
" LEFT JOIN ".$db->prefix().
"bank_url as bu2 ON bu2.fk_bank = b.rowid AND bu2.type='user'";
170$sql .=
" LEFT JOIN ".$db->prefix().
"bank_url as bu3 ON bu3.fk_bank = b.rowid AND bu3.type='payment'";
171$sql .=
" LEFT JOIN ".$db->prefix().
"bank_url as bu4 ON bu4.fk_bank = b.rowid AND bu4.type='payment_supplier'";
172$sql .=
" LEFT JOIN ".$db->prefix().
"societe as soc on bu1.url_id=soc.rowid";
174 $sql .=
" LEFT JOIN " . $db->prefix() .
"societe_perentity as spe ON spe.fk_soc = soc.rowid AND spe.entity = " . ((int) $conf->entity);
176$sql .=
" LEFT JOIN ".$db->prefix().
"user as u on bu2.url_id=u.rowid";
177$sql .=
" WHERE ba.fk_accountancy_journal=".((int) $id_journal);
178$sql .=
" AND b.amount <> 0 AND ba.entity IN (".getEntity(
'bank_account', 0).
")";
179if ($date_start && $date_end) {
180 $sql .=
" AND b.dateo >= '".$db->idate($date_start).
"' AND b.dateo <= '".$db->idate($date_end).
"'";
184 $sql .=
" AND b.dateo >= '".$db->idate(
getDolGlobalInt(
'ACCOUNTING_DATE_START_BINDING')).
"'";
187if ($in_bookkeeping ==
'already') {
188 $sql .=
" AND (b.rowid IN (SELECT fk_doc FROM ".$db->prefix().
"accounting_bookkeeping as ab WHERE ab.doc_type='bank') )";
190if ($in_bookkeeping ==
'notyet') {
191 $sql .=
" AND (b.rowid NOT IN (SELECT fk_doc FROM ".$db->prefix().
"accounting_bookkeeping as ab WHERE ab.doc_type='bank') )";
193if ($only_rappro == 2) {
194 $sql .=
" AND (b.rappro = '1')";
196$sql .=
" ORDER BY b.datev";
200$accountancy_code_by_payment = array();
201$sql2 =
"SELECT code, accountancy_code";
202$sql2 .=
" FROM ".MAIN_DB_PREFIX.
"c_paiement";
203$sql2 .=
" WHERE entity IN (".getEntity(
'c_paiement').
")";
204$sql2 .=
" AND active = 1";
205$resql = $db->query($sql2);
207 while ($objp = $db->fetch_object($resql)) {
208 if (!empty($objp->code) && !empty($objp->accountancy_code)) {
209 $accountancy_code_by_payment[$objp->code] = $objp->accountancy_code;
217$societestatic =
new Societe($db);
218$userstatic =
new User($db);
219$bankaccountstatic =
new Account($db);
222$paymentvatstatic =
new Tva($db);
234$account_transfer =
'NotDefined';
238$accountingjournalstatic->fetch($id_journal);
239$journal = $accountingjournalstatic->code;
240$journal_label = $accountingjournalstatic->label;
242$tabcompany = array();
248$tabmoreinfo = array();
251@phan-var-force array<array{id:mixed,name:mixed,code_compta_client:string,email:string}> $tabcompany
252@phan-var-force array<array{id:int,name:string,lastname:string,firstname:string,email:string,accountancy_code:string,status:int> $tabuser
253@phan-var-force array<int,array{date:string,type_payment:string,ref:string,fk_bank:int,ban_account_ref:string,fk_bank_account:int,lib:string,type:string}> $tabpay
254@phan-var-force array<array{lib:string,date?:int|string,type_payment?:string,ref?:string,fk_bank?:int,ban_account_ref?:string,fk_bank_account?:int,type?:string,bank_account_ref?:string,paymentid?:int,paymentsupplierid?:int,soclib?:string,paymentscid?:int,paymentdonationid?:int,paymentsubscriptionid?:int,paymentvatid?:int,paymentsalid?:int,paymentexpensereport?:int,paymentvariousid?:int,account_various?:string,paymentloanid?:int}> $tabtp
257$account_customer =
'NotDefined';
258$account_supplier =
'NotDefined';
259$account_employee =
'NotDefined';
262dol_syslog(
"accountancy/journal/bankjournal.php", LOG_DEBUG);
263$result = $db->query($sql);
265 $num = $db->num_rows($result);
271 $account_employee =
getDolGlobalString(
'SALARIES_ACCOUNTING_ACCOUNT_PAYMENT',
'NotDefined');
272 $account_expensereport =
getDolGlobalString(
'ACCOUNTING_ACCOUNT_EXPENSEREPORT',
'NotDefined');
274 $account_pay_donation =
getDolGlobalString(
'DONATION_ACCOUNTINGACCOUNT',
'NotDefined');
275 $account_pay_subscription =
getDolGlobalString(
'ADHERENT_SUBSCRIPTION_ACCOUNTINGACCOUNT',
'NotDefined');
276 $account_transfer =
getDolGlobalString(
'ACCOUNTING_ACCOUNT_TRANSFER_CASH',
'NotDefined');
285 $obj = $db->fetch_object($result);
287 $lineisapurchase = -1;
290 if ($obj->label ==
'(SupplierInvoicePayment)' || $obj->label ==
'(SupplierInvoicePaymentBack)') {
291 $lineisapurchase = 1;
293 if ($obj->label ==
'(CustomerInvoicePayment)' || $obj->label ==
'(CustomerInvoicePaymentBack)') {
297 if ($lineisapurchase < 0) {
298 if ($obj->typeop_payment_supplier ==
'payment_supplier') {
299 $lineisapurchase = 1;
302 if ($lineisasale < 0) {
303 if ($obj->typeop_payment ==
'payment') {
311 $compta_bank = $obj->account_number;
314 if (!empty($obj->fk_type) && !empty($accountancy_code_by_payment[$obj->fk_type])) {
315 $compta_bank = $accountancy_code_by_payment[$obj->fk_type];
319 $compta_soc =
'NotDefined';
320 $accountancy_code_general =
'NotDefined';
321 if ($lineisapurchase > 0) {
322 $accountancy_code_general = (!empty($obj->accountancy_code_supplier_general) && $obj->accountancy_code_supplier_general !=
'-1') ? $obj->accountancy_code_supplier_general : $account_supplier;
323 $compta_soc = (($obj->code_compta_fournisseur !=
"") ? $obj->code_compta_fournisseur : $account_supplier);
325 if ($lineisasale > 0) {
326 $accountancy_code_general = (!empty($obj->accountancy_code_customer_general) && $obj->accountancy_code_customer_general !=
'-1') ? $obj->accountancy_code_customer_general : $account_customer;
327 $compta_soc = (!empty($obj->code_compta_client) ? $obj->code_compta_client : $account_customer);
330 $tabcompany[$obj->rowid] = array(
332 'name' => $obj->name,
333 'code_compta' => $compta_soc,
334 'accountancy_code_general' => $accountancy_code_general,
335 'email' => $obj->email
341 $accountancy_code_user_general = (!empty($obj->accountancy_code_user_general)) ? $obj->accountancy_code_user_general : $account_employee;
342 $compta_user = (!empty($obj->accountancy_code) ? $obj->accountancy_code :
'');
344 $tabuser[$obj->rowid] = array(
345 'id' => $obj->userid,
347 'lastname' => $obj->lastname,
348 'firstname' => $obj->firstname,
349 'email' => $obj->useremail,
350 'accountancy_code_general' => $accountancy_code_user_general,
351 'accountancy_code' => $compta_user,
352 'status' => $obj->userstatus
356 $tabpay[$obj->rowid][
"date"] = $db->jdate($obj->do);
357 $tabpay[$obj->rowid][
"type_payment"] = $obj->fk_type;
358 $tabpay[$obj->rowid][
"ref"] = $obj->label;
359 $tabpay[$obj->rowid][
"fk_bank"] = $obj->rowid;
360 $tabpay[$obj->rowid][
"bank_account_ref"] = $obj->baref;
361 $tabpay[$obj->rowid][
"fk_bank_account"] = $obj->fk_account;
363 if (preg_match(
'/^\((.*)\)$/i', $obj->label, $reg)) {
364 $tabpay[$obj->rowid][
"lib"] = $langs->trans($reg[1]);
366 $tabpay[$obj->rowid][
"lib"] =
dol_trunc($obj->label, 60);
370 $links =
$object->get_url($obj->rowid);
375 $tabpay[$obj->rowid][
'type'] =
'unknown';
376 $tabtype[$obj->rowid] =
'unknown';
377 $tabmoreinfo[$obj->rowid] = array();
379 $amounttouse = $obj->amount;
380 if (!empty($obj->amount_main_currency)) {
382 $amounttouse = $obj->amount_main_currency;
388 if (
getDolGlobalString(
'FACTURE_PAYMENTS_ON_DIFFERENT_THIRDPARTIES_BILLS') && ($lineisapurchase == 1 || $lineisasale == 1) ) {
389 if ($lineisapurchase == 1) {
390 $sqlamount =
"SELECT SUM(pf.amount) as amount";
391 $sqlamount .=
" FROM ".MAIN_DB_PREFIX.
"paiementfourn_facturefourn AS pf";
392 $sqlamount .=
" INNER JOIN ".MAIN_DB_PREFIX.
"paiementfourn AS p ON pf.fk_paiementfourn = p.rowid";
393 $sqlamount .=
" RIGHT JOIN ".MAIN_DB_PREFIX.
"facture AS f ON pf.fk_facturefourn = f.rowid";
394 $sqlamount .=
" WHERE p.fk_bank = ".((int) $obj->rowid);
395 $sqlamount .=
" AND f.fk_soc = ".((int) $obj->socid);
397 $sqlamount =
"SELECT SUM(pf.amount) as amount";
398 $sqlamount .=
" FROM ".MAIN_DB_PREFIX.
"paiement_facture AS pf";
399 $sqlamount .=
" INNER JOIN ".MAIN_DB_PREFIX.
"paiement AS p ON pf.fk_paiement = p.rowid";
400 $sqlamount .=
" RIGHT JOIN ".MAIN_DB_PREFIX.
"facture AS f ON pf.fk_facture = f.rowid";
401 $sqlamount .=
" WHERE p.fk_bank = ".((int) $obj->rowid);
402 $sqlamount .=
" AND f.fk_soc = ".((int) $obj->socid);
404 $resultamount = $db->query($sqlamount);
406 $objamount = $db->fetch_object($resultamount);
407 if (!empty($objamount->amount)) $amounttouse = $objamount->amount;
412 if (is_array($links) && count($links) > 0) {
417 $is_expensereport =
false;
418 foreach ($links as $v) {
419 if ($v[
'type'] ==
'sc') {
423 if ($v[
'type'] ==
'payment_salary') {
427 if ($v[
'type'] ==
'payment_expensereport') {
428 $is_expensereport =
true;
434 foreach ($links as $key => $val) {
435 if ($links[$key][
'type'] ==
'user' && !$is_sc && !$is_salary && !$is_expensereport) {
440 if (in_array($links[$key][
'type'], array(
'sc',
'payment_sc',
'payment',
'payment_supplier',
'payment_vat',
'payment_expensereport',
'banktransfert',
'payment_donation',
'member',
'payment_loan',
'payment_salary',
'payment_various'))) {
444 $tabpay[$obj->rowid][
'type'] = $links[$key][
'type'];
445 $tabtype[$obj->rowid] = $links[$key][
'type'];
456 if ($links[$key][
'type'] ==
'withdraw') {
457 $tabmoreinfo[$obj->rowid][
'withdraw'] = 1;
460 if ($links[$key][
'type'] ==
'payment') {
461 $paymentstatic->id = $links[$key][
'url_id'];
462 $paymentstatic->ref = (string) $links[$key][
'url_id'];
463 $tabpay[$obj->rowid][
"lib"] .=
' '.$paymentstatic->getNomUrl(2,
'',
'');
464 $tabpay[$obj->rowid][
"paymentid"] = $paymentstatic->id;
465 } elseif ($links[$key][
'type'] ==
'payment_supplier') {
466 $paymentsupplierstatic->id = $links[$key][
'url_id'];
467 $paymentsupplierstatic->ref = (string) $links[$key][
'url_id'];
468 $tabpay[$obj->rowid][
"lib"] .=
' '.$paymentsupplierstatic->getNomUrl(2);
469 $tabpay[$obj->rowid][
"paymentsupplierid"] = $paymentsupplierstatic->id;
470 } elseif ($links[$key][
'type'] ==
'company') {
471 $societestatic->id = $links[$key][
'url_id'];
472 $societestatic->name = $links[$key][
'label'];
473 $societestatic->email = $tabcompany[$obj->rowid][
'email'];
474 $tabpay[$obj->rowid][
"soclib"] = $societestatic->getNomUrl(1,
'', 30);
481 if (!
getDolGlobalString(
'FACTURE_PAYMENTS_ON_DIFFERENT_THIRDPARTIES_BILLS') || $obj->socid == $links[$key][
'url_id']){
482 if (empty($tabtp[$obj->rowid][$compta_soc])) {
483 $tabtp[$obj->rowid][$compta_soc] = $amounttouse;
485 $tabtp[$obj->rowid][$compta_soc] += $amounttouse;
489 } elseif ($links[$key][
'type'] ==
'user') {
490 $userstatic->id = $links[$key][
'url_id'];
491 $userstatic->name = $links[$key][
'label'];
492 $userstatic->email = $tabuser[$obj->rowid][
'email'];
493 $userstatic->firstname = $tabuser[$obj->rowid][
'firstname'];
494 $userstatic->lastname = $tabuser[$obj->rowid][
'lastname'];
495 $userstatic->status = $tabuser[$obj->rowid][
'status'];
496 $userstatic->accountancy_code_user_general = $tabuser[$obj->rowid][
'accountancy_code_general'];
497 $userstatic->accountancy_code = $tabuser[$obj->rowid][
'accountancy_code'];
502 if ($userstatic->id > 0) {
504 $tabpay[$obj->rowid][
"soclib"] .=
' '.$userstatic->getNomUrl(-1,
'accountancy', 0);
506 $tabpay[$obj->rowid][
"soclib"] = $userstatic->getNomUrl(-1,
'accountancy', 0);
509 $tabpay[$obj->rowid][
"soclib"] =
'???';
516 $tabtp[$obj->rowid][$compta_user] += $amounttouse;
519 } elseif ($links[$key][
'type'] ==
'sc') {
520 $chargestatic->id = $links[$key][
'url_id'];
521 $chargestatic->ref = (string) $links[$key][
'url_id'];
523 $tabpay[$obj->rowid][
"lib"] .=
' '.$chargestatic->getNomUrl(2);
525 if (preg_match(
'/^\((.*)\)$/i', $links[$key][
'label'], $reg)) {
526 if ($reg[1] ==
'socialcontribution') {
527 $reg[1] =
'SocialContribution';
529 $chargestatic->label = $langs->trans($reg[1]);
531 $chargestatic->label = $links[$key][
'label'];
533 $chargestatic->ref = $chargestatic->label;
552 $resultmid = $tmpcharge->fetch($chargestatic->id);
554 $chargestatic->type_label = $tmpcharge->type_label;
555 $chargestatic->type_code = $tmpcharge->type_code;
556 $chargestatic->type_accountancy_code = $tmpcharge->type_accountancy_code;
558 $tabtp[$obj->rowid][$tmpcharge->type_accountancy_code] = isset($tabtp[$obj->rowid][$tmpcharge->type_accountancy_code]) ? $tabtp[$obj->rowid][$tmpcharge->type_accountancy_code] + $amounttouse : $amounttouse;
561 $tabpay[$obj->rowid][
"soclib"] = $chargestatic->getNomUrl(1,
'30');
562 $tabpay[$obj->rowid][
"paymentscid"] = $chargestatic->id;
563 } elseif ($links[$key][
'type'] ==
'payment_donation') {
564 $paymentdonstatic->id = $links[$key][
'url_id'];
565 $paymentdonstatic->ref = (string) $links[$key][
'url_id'];
566 $paymentdonstatic->fk_donation = $links[$key][
'url_id'];
567 $tabpay[$obj->rowid][
"lib"] .=
' '.$paymentdonstatic->getNomUrl(2);
568 $tabpay[$obj->rowid][
"paymentdonationid"] = $paymentdonstatic->id;
569 $tabtp[$obj->rowid][$account_pay_donation] = isset($tabtp[$obj->rowid][$account_pay_donation]) ? $tabtp[$obj->rowid][$account_pay_donation] + $amounttouse : $amounttouse;
570 } elseif ($links[$key][
'type'] ==
'member') {
571 $paymentsubscriptionstatic->id = $links[$key][
'url_id'];
572 $paymentsubscriptionstatic->ref = (string) $links[$key][
'url_id'];
573 $paymentsubscriptionstatic->label = $links[$key][
'label'];
574 $tabpay[$obj->rowid][
"lib"] .=
' '.$paymentsubscriptionstatic->getNomUrl(2);
575 $tabpay[$obj->rowid][
"paymentsubscriptionid"] = $paymentsubscriptionstatic->id;
576 $paymentsubscriptionstatic->fetch($paymentsubscriptionstatic->id);
577 $tabtp[$obj->rowid][$account_pay_subscription] = isset($tabtp[$obj->rowid][$account_pay_subscription]) ? $tabtp[$obj->rowid][$account_pay_subscription] + $amounttouse : $amounttouse;
578 } elseif ($links[$key][
'type'] ==
'payment_vat') {
579 $paymentvatstatic->id = $links[$key][
'url_id'];
580 $paymentvatstatic->ref = (string) $links[$key][
'url_id'];
581 $paymentvatstatic->label = $links[$key][
'label'];
582 $tabpay[$obj->rowid][
"lib"] .=
' '.$paymentvatstatic->getNomUrl(2);
583 $tabpay[$obj->rowid][
"paymentvatid"] = $paymentvatstatic->id;
584 $tabtp[$obj->rowid][$account_pay_vat] = isset($tabtp[$obj->rowid][$account_pay_vat]) ? $tabtp[$obj->rowid][$account_pay_vat] + $amounttouse : $amounttouse;
585 } elseif ($links[$key][
'type'] ==
'payment_salary') {
586 $paymentsalstatic->id = $links[$key][
'url_id'];
587 $paymentsalstatic->ref = (string) $links[$key][
'url_id'];
588 $paymentsalstatic->label = $links[$key][
'label'];
589 $tabpay[$obj->rowid][
"lib"] .=
' '.$paymentsalstatic->getNomUrl(2);
590 $tabpay[$obj->rowid][
"paymentsalid"] = $paymentsalstatic->id;
594 if (
getDolGlobalString(
'ACCOUNTANCY_AUTOFIX_MISSING_LINK_TO_USER_ON_SALARY_BANK_PAYMENT')) {
595 $tmpsalary =
new Salary($db);
596 $tmpsalary->fetch($paymentsalstatic->id);
597 $tmpsalary->fetch_user($tmpsalary->fk_user);
599 $userstatic->id = $tmpsalary->user->id;
600 $userstatic->name = $tmpsalary->user->name;
601 $userstatic->email = $tmpsalary->user->email;
602 $userstatic->firstname = $tmpsalary->user->firstname;
603 $userstatic->lastname = $tmpsalary->user->lastname;
604 $userstatic->status = $tmpsalary->user->status;
605 $userstatic->accountancy_code = $tmpsalary->user->accountancy_code;
607 if ($userstatic->id > 0) {
608 $tabpay[$obj->rowid][
"soclib"] = $userstatic->getNomUrl(1,
'accountancy', 0);
610 $tabpay[$obj->rowid][
"soclib"] =
'???';
613 if (empty($obj->typeop_user)) {
614 $accountancy_code_user_general = (!empty($obj->accountancy_code_user_general)) ? $obj->accountancy_code_user_general : $account_employee;
615 $compta_user = $userstatic->accountancy_code;
617 $tabtp[$obj->rowid][$compta_user] += $amounttouse;
618 $tabuser[$obj->rowid] = array(
619 'id' => $userstatic->id,
621 'lastname' => $userstatic->lastname,
622 'firstname' => $userstatic->firstname,
623 'email' => $userstatic->email,
624 'accountancy_code_general' => $accountancy_code_user_general,
625 'accountancy_code' => $compta_user,
626 'status' => $userstatic->status
631 } elseif ($links[$key][
'type'] ==
'payment_expensereport') {
632 $paymentexpensereportstatic->id = $links[$key][
'url_id'];
633 $tabpay[$obj->rowid][
"lib"] .= $paymentexpensereportstatic->getNomUrl(2);
634 $tabpay[$obj->rowid][
"paymentexpensereport"] = $paymentexpensereportstatic->id;
635 } elseif ($links[$key][
'type'] ==
'payment_various') {
636 $paymentvariousstatic->id = $links[$key][
'url_id'];
637 $paymentvariousstatic->ref = (string) $links[$key][
'url_id'];
638 $paymentvariousstatic->label = $links[$key][
'label'];
639 $tabpay[$obj->rowid][
"lib"] .=
' '.$paymentvariousstatic->getNomUrl(2);
640 $tabpay[$obj->rowid][
"paymentvariousid"] = $paymentvariousstatic->id;
641 $paymentvariousstatic->fetch($paymentvariousstatic->id);
642 $account_various = (!empty($paymentvariousstatic->accountancy_code) ? $paymentvariousstatic->accountancy_code :
'NotDefined');
643 $account_subledger = (!empty($paymentvariousstatic->subledger_account) ? $paymentvariousstatic->subledger_account :
'');
644 $tabpay[$obj->rowid][
"account_various"] = $account_various;
645 $tabtp[$obj->rowid][$account_subledger] = isset($tabtp[$obj->rowid][$account_subledger]) ? $tabtp[$obj->rowid][$account_subledger] + $amounttouse : $amounttouse;
646 } elseif ($links[$key][
'type'] ==
'payment_loan') {
647 $paymentloanstatic->id = $links[$key][
'url_id'];
648 $paymentloanstatic->ref = (string) $links[$key][
'url_id'];
649 $paymentloanstatic->fk_loan = $links[$key][
'url_id'];
650 $tabpay[$obj->rowid][
"lib"] .=
' '.$paymentloanstatic->getNomUrl(2);
651 $tabpay[$obj->rowid][
"paymentloanid"] = $paymentloanstatic->id;
653 $sqlmid =
'SELECT pl.amount_capital, pl.amount_insurance, pl.amount_interest, l.accountancy_account_capital, l.accountancy_account_insurance, l.accountancy_account_interest';
654 $sqlmid .=
' FROM '.MAIN_DB_PREFIX.
'payment_loan as pl, '.MAIN_DB_PREFIX.
'loan as l';
655 $sqlmid .=
' WHERE l.rowid = pl.fk_loan AND pl.fk_bank = '.((int) $obj->rowid);
657 dol_syslog(
"accountancy/journal/bankjournal.php:: sqlmid=".$sqlmid, LOG_DEBUG);
658 $resultmid = $db->query($sqlmid);
660 $objmid = $db->fetch_object($resultmid);
661 $tabtp[$obj->rowid][$objmid->accountancy_account_capital] = isset($objmid->amount_capital) ? ($tabtp[$obj->rowid][$objmid->accountancy_account_capital] ?? 0) - $objmid->amount_capital : 0;
662 $tabtp[$obj->rowid][$objmid->accountancy_account_insurance] = isset($objmid->amount_insurance) ? ($tabtp[$obj->rowid][$objmid->accountancy_account_insurance] ?? 0) - $objmid->amount_insurance : 0;
663 $tabtp[$obj->rowid][$objmid->accountancy_account_interest] = isset($objmid->amount_interest) ? ($tabtp[$obj->rowid][$objmid->accountancy_account_interest] ?? 0) - $objmid->amount_interest : 0;
665 } elseif ($links[$key][
'type'] ==
'banktransfert') {
666 $accountLinestatic->fetch($links[$key][
'url_id']);
667 $tabpay[$obj->rowid][
"lib"] .=
' '.$langs->trans(
"BankTransfer").
' '.$accountLinestatic ->getNomUrl(1);
668 $tabtp[$obj->rowid][$account_transfer] = isset($tabtp[$obj->rowid][$account_transfer]) ? $tabtp[$obj->rowid][$account_transfer] + $amounttouse : $amounttouse;
669 $bankaccountstatic->fetch($tabpay[$obj->rowid][
'fk_bank_account']);
670 $tabpay[$obj->rowid][
"soclib"] = $bankaccountstatic->getNomUrl(2);
675 if (empty($tabbq[$obj->rowid][$compta_bank])) {
676 $tabbq[$obj->rowid][$compta_bank] = $amounttouse;
678 $tabbq[$obj->rowid][$compta_bank] += $amounttouse;
683 if (empty($tabtp[$obj->rowid]) && !empty($tabmoreinfo[$obj->rowid][
'withdraw'])) {
684 foreach ($links as $key => $val) {
685 if ($links[$key][
'type'] ==
'payment') {
687 $tmppayment->fetch($links[$key][
'url_id']);
688 $arrayofamounts = $tmppayment->getAmountsArray();
689 if (is_array($arrayofamounts)) {
690 foreach ($arrayofamounts as $invoiceid => $amount) {
691 $tmpinvoice->fetch($invoiceid);
692 $tmpinvoice->fetch_thirdparty();
693 if ($tmpinvoice->thirdparty->code_compta_client) {
694 $tabtp[$obj->rowid][$tmpinvoice->thirdparty->code_compta_client] += $amount;
703 if (empty($tabtp[$obj->rowid])) {
704 $tabtp[$obj->rowid][
'NotDefined'] = $tabbq[$obj->rowid][$compta_bank];
716if (!$error && $action ==
'writebookkeeping' && $user->hasRight(
'accounting',
'bind',
'write')) {
720 $accountingaccountcustomer->fetch(0,
getDolGlobalString(
'ACCOUNTING_ACCOUNT_CUSTOMER'),
true);
723 $accountingaccountsupplier->fetch(0,
getDolGlobalString(
'ACCOUNTING_ACCOUNT_SUPPLIER'),
true);
726 $accountingaccountpayment->fetch(0,
getDolGlobalString(
'SALARIES_ACCOUNTING_ACCOUNT_PAYMENT'),
true);
729 $accountingaccountexpensereport->fetch(0,
getDolGlobalString(
'ACCOUNTING_ACCOUNT_EXPENSEREPORT'),
true);
732 $accountingaccountsuspense->fetch(0,
getDolGlobalString(
'ACCOUNTING_ACCOUNT_SUSPENSE'),
true);
735 foreach ($tabpay as $key => $val) {
750 if (is_array($tabbq[$key])) {
752 foreach ($tabbq[$key] as $k => $mt) {
754 if (empty($conf->cache[
'accountingaccountincurrententity'][$k])) {
756 $accountingaccount->fetch(0, $k,
true);
757 $conf->cache[
'accountingaccountincurrententity'][$k] = $accountingaccount;
759 $accountingaccount = $conf->cache[
'accountingaccountincurrententity'][$k];
762 $account_label = $accountingaccount->label;
765 if (!empty($val[
'lib'])) {
769 if (!empty($val[
'soclib'])) {
770 $reflabel .=
" / ".dol_string_nohtmltag($val[
'soclib']);
774 $bookkeeping->doc_date = $val[
"date"];
775 $bookkeeping->doc_ref = $ref;
776 $bookkeeping->doc_type =
'bank';
777 $bookkeeping->fk_doc = $key;
778 $bookkeeping->fk_docdet = $val[
"fk_bank"];
780 $bookkeeping->numero_compte = $k;
781 $bookkeeping->label_compte = $account_label;
783 $bookkeeping->label_operation = $reflabel;
784 $bookkeeping->montant = $mt;
785 $bookkeeping->sens = ($mt >= 0) ?
'D' :
'C';
786 $bookkeeping->debit = ($mt >= 0 ? $mt : 0);
787 $bookkeeping->credit = ($mt < 0 ? -$mt : 0);
788 $bookkeeping->code_journal = $journal;
789 $bookkeeping->journal_label = $langs->transnoentities($journal_label);
790 $bookkeeping->fk_user_author = $user->id;
791 $bookkeeping->date_creation = $now;
794 $bookkeeping->subledger_account =
'';
795 $bookkeeping->label_operation = $reflabel;
796 $bookkeeping->entity = $conf->entity;
798 $totaldebit += $bookkeeping->debit;
799 $totalcredit += $bookkeeping->credit;
801 $result = $bookkeeping->create($user);
803 if ($bookkeeping->error ==
'BookkeepingRecordAlreadyExists') {
806 setEventMessages(
'Transaction for ('.$bookkeeping->doc_type.
', '.$bookkeeping->fk_doc.
', '.$bookkeeping->fk_docdet.
') were already recorded',
null,
'warnings');
818 if (!$errorforline) {
819 if (is_array($tabtp[$key])) {
821 foreach ($tabtp[$key] as $k => $mt) {
826 if (!empty($val[
'lib'])) {
829 if ($tabtype[$key] ==
'banktransfert') {
830 $reflabel .=
dol_string_nohtmltag($langs->transnoentitiesnoconv(
'TransitionalAccount').
' '.$account_transfer);
836 $bookkeeping->doc_date = $val[
"date"];
837 $bookkeeping->doc_ref = $ref;
838 $bookkeeping->doc_type =
'bank';
839 $bookkeeping->fk_doc = $key;
840 $bookkeeping->fk_docdet = $val[
"fk_bank"];
842 $bookkeeping->label_operation = $reflabel;
843 $bookkeeping->montant = $mt;
844 $bookkeeping->sens = ($mt < 0) ?
'D' :
'C';
845 $bookkeeping->debit = ($mt < 0 ? -$mt : 0);
846 $bookkeeping->credit = ($mt >= 0) ? $mt : 0;
847 $bookkeeping->code_journal = $journal;
848 $bookkeeping->journal_label = $langs->transnoentities($journal_label);
849 $bookkeeping->fk_user_author = $user->id;
850 $bookkeeping->date_creation = $now;
852 if ($tabtype[$key] ==
'payment') {
854 $bookkeeping->subledger_account = $k;
855 $bookkeeping->subledger_label = $tabcompany[$key][
'name'];
856 $bookkeeping->numero_compte = $tabcompany[$key][
'accountancy_code_general'];
857 $bookkeeping->label_compte = $accountingaccountcustomer->label;
858 } elseif ($tabtype[$key] ==
'payment_supplier') {
860 $bookkeeping->subledger_account = $k;
861 $bookkeeping->subledger_label = $tabcompany[$key][
'name'];
862 $bookkeeping->numero_compte = $tabcompany[$key][
'accountancy_code_general'];
863 $bookkeeping->label_compte = $accountingaccountsupplier->label;
864 } elseif ($tabtype[$key] ==
'payment_expensereport') {
865 $bookkeeping->subledger_account = $tabuser[$key][
'accountancy_code'];
866 $bookkeeping->subledger_label = $tabuser[$key][
'name'];
868 $bookkeeping->label_compte = $accountingaccountexpensereport->label;
869 } elseif ($tabtype[$key] ==
'payment_salary') {
870 $bookkeeping->subledger_account = $tabuser[$key][
'accountancy_code'];
871 $bookkeeping->subledger_label = $tabuser[$key][
'name'];
872 $bookkeeping->numero_compte = $tabuser[$key][
'accountancy_code_general'];
873 $bookkeeping->label_compte = $accountingaccountpayment->label;
874 } elseif (in_array($tabtype[$key], array(
'sc',
'payment_sc'))) {
875 $bookkeeping->subledger_account =
'';
876 $bookkeeping->subledger_label =
'';
877 if (empty($conf->cache[
'accountingaccountincurrententity'][$k])) {
879 $accountingaccount->fetch(0, $k,
true);
880 $conf->cache[
'accountingaccountincurrententity'][$k] = $accountingaccount;
882 $accountingaccount = $conf->cache[
'accountingaccountincurrententity'][$k];
884 $bookkeeping->numero_compte = $k;
885 $bookkeeping->label_compte = $accountingaccount->label;
886 } elseif ($tabtype[$key] ==
'payment_vat') {
887 $bookkeeping->subledger_account =
'';
888 $bookkeeping->subledger_label =
'';
889 if (empty($conf->cache[
'accountingaccountincurrententity'][$k])) {
891 $accountingaccount->fetch(0, $k,
true);
892 $conf->cache[
'accountingaccountincurrententity'][$k] = $accountingaccount;
894 $accountingaccount = $conf->cache[
'accountingaccountincurrententity'][$k];
896 $bookkeeping->numero_compte = $k;
897 $bookkeeping->label_compte = $accountingaccount->label;
898 } elseif ($tabtype[$key] ==
'payment_donation') {
899 $bookkeeping->subledger_account =
'';
900 $bookkeeping->subledger_label =
'';
901 if (empty($conf->cache[
'accountingaccountincurrententity'][$k])) {
903 $accountingaccount->fetch(0, $k,
true);
904 $conf->cache[
'accountingaccountincurrententity'][$k] = $accountingaccount;
906 $accountingaccount = $conf->cache[
'accountingaccountincurrententity'][$k];
908 $bookkeeping->numero_compte = $k;
909 $bookkeeping->label_compte = $accountingaccount->label;
910 } elseif ($tabtype[$key] ==
'member') {
911 $bookkeeping->subledger_account =
'';
912 $bookkeeping->subledger_label =
'';
913 if (empty($conf->cache[
'accountingaccountincurrententity'][$k])) {
915 $accountingaccount->fetch(0, $k,
true);
916 $conf->cache[
'accountingaccountincurrententity'][$k] = $accountingaccount;
918 $accountingaccount = $conf->cache[
'accountingaccountincurrententity'][$k];
920 $bookkeeping->numero_compte = $k;
921 $bookkeeping->label_compte = $accountingaccount->label;
922 } elseif ($tabtype[$key] ==
'payment_loan') {
923 $bookkeeping->subledger_account =
'';
924 $bookkeeping->subledger_label =
'';
925 if (empty($conf->cache[
'accountingaccountincurrententity'][$k])) {
927 $accountingaccount->fetch(0, $k,
true);
928 $conf->cache[
'accountingaccountincurrententity'][$k] = $accountingaccount;
930 $accountingaccount = $conf->cache[
'accountingaccountincurrententity'][$k];
932 $bookkeeping->numero_compte = $k;
933 $bookkeeping->label_compte = $accountingaccount->label;
934 } elseif ($tabtype[$key] ==
'payment_various') {
935 $bookkeeping->subledger_account = $k;
936 $bookkeeping->subledger_label = $tabcompany[$key][
'name'];
937 if (empty($conf->cache[
'accountingaccountincurrententity'][$tabpay[$key][
"account_various"]])) {
939 $accountingaccount->fetch(0, $tabpay[$key][
"account_various"],
true);
940 $conf->cache[
'accountingaccountincurrententity'][$tabpay[$key][
"account_various"]] = $accountingaccount;
942 $accountingaccount = $conf->cache[
'accountingaccountincurrententity'][$tabpay[$key][
"account_various"]];
944 $bookkeeping->numero_compte = $tabpay[$key][
"account_various"];
945 $bookkeeping->label_compte = $accountingaccount->label;
946 } elseif ($tabtype[$key] ==
'banktransfert') {
947 $bookkeeping->subledger_account =
'';
948 $bookkeeping->subledger_label =
'';
949 if (empty($conf->cache[
'accountingaccountincurrententity'][$k])) {
951 $accountingaccount->fetch(0, $k,
true);
952 $conf->cache[
'accountingaccountincurrententity'][$k] = $accountingaccount;
954 $accountingaccount = $conf->cache[
'accountingaccountincurrententity'][$k];
956 $bookkeeping->numero_compte = $k;
957 $bookkeeping->label_compte = $accountingaccount->label;
959 if ($tabtype[$key] ==
'unknown') {
961 $bookkeeping->subledger_account =
'';
962 $bookkeeping->subledger_label =
'';
964 $bookkeeping->label_compte = $accountingaccountsuspense->label;
967 $bookkeeping->label_operation = $reflabel;
968 $bookkeeping->entity = $conf->entity;
970 $totaldebit += $bookkeeping->debit;
971 $totalcredit += $bookkeeping->credit;
973 $result = $bookkeeping->create($user);
975 if ($bookkeeping->error ==
'BookkeepingRecordAlreadyExists') {
978 setEventMessages(
'Transaction for ('.$bookkeeping->doc_type.
', '.$bookkeeping->fk_doc.
', '.$bookkeeping->fk_docdet.
') were already recorded',
null,
'warnings');
986 require_once DOL_DOCUMENT_ROOT .
'/accountancy/class/lettering.class.php';
988 $nb_lettering = $lettering_static->bookkeepingLetteringAll(array($bookkeeping->id));
994 foreach ($tabbq[$key] as $k => $mt) {
997 if (!empty($val[
'lib'])) {
1003 $bookkeeping->doc_date = $val[
"date"];
1004 $bookkeeping->doc_ref = $ref;
1005 $bookkeeping->doc_type =
'bank';
1006 $bookkeeping->fk_doc = $key;
1007 $bookkeeping->fk_docdet = $val[
"fk_bank"];
1008 $bookkeeping->montant = $mt;
1009 $bookkeeping->sens = ($mt < 0) ?
'D' :
'C';
1010 $bookkeeping->debit = ($mt < 0 ? -$mt : 0);
1011 $bookkeeping->credit = ($mt >= 0) ? $mt : 0;
1012 $bookkeeping->code_journal = $journal;
1013 $bookkeeping->journal_label = $langs->transnoentities($journal_label);
1014 $bookkeeping->fk_user_author = $user->id;
1015 $bookkeeping->date_creation = $now;
1016 $bookkeeping->label_compte =
'';
1017 $bookkeeping->label_operation = $reflabel;
1018 $bookkeeping->entity = $conf->entity;
1020 $totaldebit += $bookkeeping->debit;
1021 $totalcredit += $bookkeeping->credit;
1023 $result = $bookkeeping->create($user);
1026 if ($bookkeeping->error ==
'BookkeepingRecordAlreadyExists') {
1029 setEventMessages(
'Transaction for ('.$bookkeeping->doc_type.
', '.$bookkeeping->fk_doc.
', '.$bookkeeping->fk_docdet.
') were already recorded',
null,
'warnings');
1044 setEventMessages(
'We tried to insert a non balanced transaction in book for '.$ref.
'. Canceled. Surely a bug.',
null,
'errors');
1047 if (!$errorforline) {
1054 if ($error >= $MAXNBERRORS) {
1055 setEventMessages($langs->trans(
"ErrorTooManyErrorsProcessStopped").
' (>'.$MAXNBERRORS.
')',
null,
'errors');
1061 if (empty($error) && count($tabpay) > 0) {
1063 } elseif (count($tabpay) == $error) {
1066 setEventMessages($langs->trans(
"GeneralLedgerSomeRecordWasNotRecorded"),
null,
'warnings');
1072 if (count($tabpay) != $error) {
1073 $param =
'id_journal='.$id_journal;
1074 $param .=
'&date_startday='.$date_startday;
1075 $param .=
'&date_startmonth='.$date_startmonth;
1076 $param .=
'&date_startyear='.$date_startyear;
1077 $param .=
'&date_endday='.$date_endday;
1078 $param .=
'&date_endmonth='.$date_endmonth;
1079 $param .=
'&date_endyear='.$date_endyear;
1080 $param .=
'&in_bookkeeping='.$in_bookkeeping;
1081 header(
"Location: ".$_SERVER[
'PHP_SELF'].($param ?
'?'.$param :
''));
1089if ($action ==
'exportcsv' && $user->hasRight(
'accounting',
'bind',
'write')) {
1092 $filename =
'journal';
1093 $type_export =
'journal';
1094 include DOL_DOCUMENT_ROOT.
'/accountancy/tpl/export_journal.tpl.php';
1097 print
'"'.$langs->transnoentitiesnoconv(
"BankId").
'"'.$sep;
1098 print
'"'.$langs->transnoentitiesnoconv(
"Date").
'"'.$sep;
1099 print
'"'.$langs->transnoentitiesnoconv(
"PaymentMode").
'"'.$sep;
1100 print
'"'.$langs->transnoentitiesnoconv(
"AccountAccounting").
'"'.$sep;
1101 print
'"'.$langs->transnoentitiesnoconv(
"SubledgerAccount").
'"'.$sep;
1102 print
'"'.$langs->transnoentitiesnoconv(
"Label").
'"'.$sep;
1103 print
'"'.$langs->transnoentitiesnoconv(
"AccountingDebit").
'"'.$sep;
1104 print
'"'.$langs->transnoentitiesnoconv(
"AccountingCredit").
'"'.$sep;
1105 print
'"'.$langs->transnoentitiesnoconv(
"Journal").
'"'.$sep;
1106 print
'"'.$langs->transnoentitiesnoconv(
"Note").
'"'.$sep;
1109 foreach ($tabpay as $key => $val) {
1115 foreach ($tabbq[$key] as $k => $mt) {
1118 if (!empty($val[
'lib'])) {
1122 if (!empty($val[
'soclib'])) {
1123 $reflabel .=
" / ".dol_string_nohtmltag($val[
'soclib']);
1126 print
'"'.$key.
'"'.$sep;
1127 print
'"'.$date.
'"'.$sep;
1128 print
'"'.$val[
"type_payment"].
'"'.$sep;
1129 print
'"'.length_accountg(html_entity_decode($k)).
'"'.$sep;
1131 print
'"'.$reflabel.
'"'.$sep;
1132 print
'"'.($mt >= 0 ?
price($mt) :
'').
'"'.$sep;
1133 print
'"'.($mt < 0 ?
price(-$mt) :
'').
'"'.$sep;
1134 print
'"'.$journal.
'"'.$sep;
1135 print
'"'.dol_string_nohtmltag($ref).
'"'.$sep;
1141 if (is_array($tabtp[$key])) {
1142 foreach ($tabtp[$key] as $k => $mt) {
1145 if (!empty($val[
'lib'])) {
1148 if ($tabtype[$key] ==
'banktransfert') {
1149 $reflabel .=
dol_string_nohtmltag($langs->transnoentitiesnoconv(
'TransitionalAccount').
' '.$account_transfer);
1154 print
'"'.$key.
'"'.$sep;
1155 print
'"'.$date.
'"'.$sep;
1156 print
'"'.$val[
"type_payment"].
'"'.$sep;
1157 if ($tabtype[$key] ==
'payment_supplier') {
1158 $account_ledger = (!empty($obj->accountancy_code_supplier_general)) ? $obj->accountancy_code_supplier_general : $account_supplier;
1159 print
'"'.length_accountg($account_ledger).
'"'.$sep;
1160 } elseif ($tabtype[$key] ==
'payment') {
1161 $account_ledger = (!empty($obj->accountancy_code_customer_general)) ? $obj->accountancy_code_customer_general : $account_customer;
1162 print
'"'.length_accountg($account_ledger).
'"'.$sep;
1163 } elseif ($tabtype[$key] ==
'payment_expensereport') {
1164 print
'"'.length_accountg(
getDolGlobalString(
'ACCOUNTING_ACCOUNT_EXPENSEREPORT')).
'"'.$sep;
1165 } elseif ($tabtype[$key] ==
'payment_salary') {
1166 $account_ledger = (!empty($obj->accountancy_code_user_general)) ? $obj->accountancy_code_user_general : $account_employee;
1167 print
'"'.length_accountg($account_ledger).
'"'.$sep;
1169 print
'"'.length_accountg(html_entity_decode($k)).
'"'.$sep;
1171 print
'"'.length_accounta(html_entity_decode($k)).
'"'.$sep;
1172 print
'"'.$reflabel.
'"'.$sep;
1173 print
'"'.($mt < 0 ?
price(-$mt) :
'').
'"'.$sep;
1174 print
'"'.($mt >= 0 ?
price($mt) :
'').
'"'.$sep;
1175 print
'"'.$journal.
'"'.$sep;
1176 print
'"'.dol_string_nohtmltag($ref).
'"'.$sep;
1181 foreach ($tabbq[$key] as $k => $mt) {
1184 if (!empty($val[
'lib'])) {
1189 print
'"'.$key.
'"'.$sep;
1190 print
'"'.$date.
'"'.$sep;
1191 print
'"'.$val[
"type_payment"].
'"'.$sep;
1192 print
'"'.length_accountg(
getDolGlobalString(
'ACCOUNTING_ACCOUNT_SUSPENSE')).
'"'.$sep;
1194 print
'"'.$reflabel.
'"'.$sep;
1195 print
'"'.($mt < 0 ?
price(-$mt) :
'').
'"'.$sep;
1196 print
'"'.($mt >= 0 ?
price($mt) :
'').
'"'.$sep;
1197 print
'"'.$journal.
'"'.$sep;
1198 print
'"'.dol_string_nohtmltag($ref).
'"'.$sep;
1211$form =
new Form($db);
1213if (empty($action) || $action ==
'view') {
1214 $invoicestatic =
new Facture($db);
1217 $vatstatic =
new Tva($db);
1218 $donationstatic =
new Don($db);
1219 $loanstatic =
new Loan($db);
1220 $salarystatic =
new Salary($db);
1223 $title = $langs->trans(
"GenerationOfAccountingEntries").
' - '.$accountingjournalstatic->getNomUrl(0, 2, 1,
'', 1);
1224 $help_url =
'EN:Module_Double_Entry_Accounting|FR:Module_Comptabilité_en_Partie_Double#Génération_des_écritures_en_comptabilité';
1230 $description = $langs->trans(
"DescJournalOnlyBindedVisible").
'<br>';
1232 $listofchoices = array(
1233 'notyet' => $langs->trans(
"NotYetInGeneralLedger"),
1234 'already' => $langs->trans(
"AlreadyInGeneralLedger")
1236 $period = $form->selectDate($date_start ? $date_start : -1,
'date_start', 0, 0, 0,
'', 1, 0).
' - '.$form->selectDate($date_end ? $date_end : -1,
'date_end', 0, 0, 0,
'', 1, 0);
1237 $period .=
'<span class="valignmiddle"> - '.$langs->trans(
"JournalizationInLedgerStatus").
' </span>'.$form->selectarray(
'in_bookkeeping', $listofchoices, $in_bookkeeping, 1, 0, 0,
'', 0, 0, 0,
'',
'minwidth75 valignmiddle');
1239 $varlink =
'id_journal='.$id_journal;
1243 $listofchoices = array(
1244 1 => $langs->trans(
"TransfertAllBankLines"),
1245 2 => $langs->trans(
"TransfertOnlyConciliatedBankLine")
1247 $moreoptions = [
"BankLineConciliated" => $form->selectarray(
'only_rappro', $listofchoices, $only_rappro, 0, 0, 0,
'', 0, 0, 0,
'',
'minwidth75 valignmiddle')];
1249 journalHead($nom,
'', $period, $periodlink, $description, $builddate, $exportlink, array(
'action' =>
''),
'', $varlink, $moreoptions);
1256 $sql =
"SELECT COUNT(rowid) as nb FROM ".MAIN_DB_PREFIX.
"accounting_fiscalyear WHERE entity = ".((int) $conf->entity);
1257 $resql = $db->query($sql);
1259 $obj = $db->fetch_object($resql);
1260 if ($obj->nb == 0) {
1261 print
'<br><div class="warning">'.img_warning().
' '.$langs->trans(
"TheFiscalPeriodIsNotDefined");
1262 $desc =
' : '.$langs->trans(
"AccountancyAreaDescFiscalPeriod", 4,
'{link}');
1263 $desc = str_replace(
'{link}',
'<strong>'.$langs->transnoentitiesnoconv(
"MenuAccountancy").
'-'.$langs->transnoentitiesnoconv(
"Setup").
"-".$langs->transnoentitiesnoconv(
"FiscalPeriod").
'</strong>', $desc);
1273 $sql =
"SELECT COUNT(rowid) as nb FROM ".MAIN_DB_PREFIX.
"bank_account WHERE entity = ".((int) $conf->entity).
" AND fk_accountancy_journal IS NULL AND clos=0";
1274 $resql = $db->query($sql);
1276 $obj = $db->fetch_object($resql);
1278 print
'<br><div class="warning">'.img_warning().
' '.$langs->trans(
"TheJournalCodeIsNotDefinedOnSomeBankAccount");
1279 $desc =
' : '.$langs->trans(
"AccountancyAreaDescBank", 6,
'{link}');
1280 $desc = str_replace(
'{link}',
'<strong>'.$langs->transnoentitiesnoconv(
"MenuAccountancy").
'-'.$langs->transnoentitiesnoconv(
"Setup").
"-".$langs->transnoentitiesnoconv(
"BankAccounts").
'</strong>', $desc);
1296 print($desc ?
'' :
'<br>').
'<div class="warning">'.
img_warning().
' '.$langs->trans(
"SomeMandatoryStepsOfSetupWereNotDone");
1297 $desc =
' : '.$langs->trans(
"AccountancyAreaDescMisc", 4,
'{link}');
1298 $desc = str_replace(
'{link}',
'<strong>'.$langs->transnoentitiesnoconv(
"MenuAccountancy").
'-'.$langs->transnoentitiesnoconv(
"Setup").
"-".$langs->transnoentitiesnoconv(
"MenuDefaultAccounts").
'</strong>', $desc);
1304 print
'<br><div class="tabsAction tabsActionNoBottom centerimp">';
1306 if (
getDolGlobalString(
'ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL') && $in_bookkeeping ==
'notyet') {
1307 print
'<input type="button" class="butAction" name="exportcsv" value="'.$langs->trans(
"ExportDraftJournal").
'" onclick="launch_export();" />';
1312 print
'<input type="button" class="butActionRefused classfortooltip" title="'.dol_escape_htmltag($langs->trans(
"SomeMandatoryStepsOfSetupWereNotDone")).
'" value="'.$langs->trans(
"WriteBookKeeping").
'" />';
1314 if ($in_bookkeeping ==
'notyet') {
1315 print
'<input type="button" class="butAction" name="writebookkeeping" value="'.$langs->trans(
"WriteBookKeeping").
'" onclick="writebookkeeping();" />';
1317 print
'<a class="butActionRefused classfortooltip" name="writebookkeeping">'.$langs->trans(
"WriteBookKeeping").
'</a>';
1325 <script type="text/javascript">
1326 function launch_export() {
1327 console.log("Set value into form and submit");
1328 $("div.fiche form input[name=\"action\"]").val("exportcsv");
1329 $("div.fiche form input[type=\"submit\"]").click();
1330 $("div.fiche form input[name=\"action\"]").val("");
1332 function writebookkeeping() {
1333 console.log("Set value into form and submit");
1334 $("div.fiche form input[name=\"action\"]").val("writebookkeeping");
1335 $("div.fiche form input[type=\"submit\"]").click();
1336 $("div.fiche form input[name=\"action\"]").val("");
1346 print
'<div class="div-table-responsive">';
1347 print
'<table class="noborder centpercent">';
1348 print
'<tr class="liste_titre">';
1349 print
"<td>".$langs->trans(
"Date").
"</td>";
1350 print
"<td>".$langs->trans(
"Piece").
' ('.$langs->trans(
"ObjectsRef").
")</td>";
1351 print
"<td>".$langs->trans(
"AccountAccounting").
"</td>";
1352 print
"<td>".$langs->trans(
"SubledgerAccount").
"</td>";
1353 print
"<td>".$langs->trans(
"LabelOperation").
"</td>";
1354 print
'<td class="center">'.$langs->trans(
"PaymentMode").
"</td>";
1355 print
'<td class="right">'.$langs->trans(
"AccountingDebit").
"</td>";
1356 print
'<td class="right">'.$langs->trans(
"AccountingCredit").
"</td>";
1359 foreach ($tabpay as $key => $val) {
1365 foreach ($tabbq[$key] as $k => $mt) {
1368 if (!empty($val[
'lib'])) {
1369 $reflabel .= $val[
'lib'].
" / ";
1371 $reflabel .= $langs->trans(
"Bank").
' '.$val[
'bank_account_ref'];
1372 if (!empty($val[
'soclib'])) {
1373 $reflabel .=
" / ".$val[
'soclib'];
1377 print
'<!-- Bank bank.rowid='.$key.
'=accounting_bookkeeping.fk_doc (accounting_bookkeeping.doc_type=\'bank\') type='.$tabpay[$key][
'type'].
' ref='.$tabpay[$key][
'ref'].
' -->';
1378 print
'<tr class="oddeven">';
1381 print
"<td>".$date.
"</td>";
1384 print
'<td class="maxwidth300 nopaddingtopimp nopaddingbottomimp">'.dol_escape_htmltag($ref).
"</td>";
1388 if (empty($accounttoshow) || $accounttoshow ==
'NotDefined') {
1389 $accounttoshow =
'<span class="error">'.$langs->trans(
"BankAccountNotDefined").
'</span>';
1391 print
'<td class="maxwidth300" title="'.dol_escape_htmltag(
dol_string_nohtmltag($accounttoshow)).
'">';
1392 print $accounttoshow;
1396 print
'<td class="maxwidth300">';
1406 print
'<td class="maxwidth300 nopaddingtopimp nopaddingbottomimp">';
1410 print
'<td class="center">'.$val[
"type_payment"].
"</td>";
1411 print
'<td class="right nowraponall amount">'.($mt >= 0 ?
price($mt) :
'').
"</td>";
1412 print
'<td class="right nowraponall amount">'.($mt < 0 ?
price(-$mt) :
'').
"</td>";
1420 if (is_array($tabtp[$key])) {
1421 foreach ($tabtp[$key] as $k => $mt) {
1424 if (!empty($val[
'lib'])) {
1425 $reflabel .= $val[
'lib'].(!empty($val[
'soclib']) ?
" / " :
"");
1427 if ($tabtype[$key] ==
'banktransfert') {
1428 $reflabel .= $langs->trans(
'TransitionalAccount').
' '.$account_transfer;
1430 $reflabel .= isset($val[
'soclib']) ? $val[
'soclib'] :
"";
1433 print
'<!-- Thirdparty bank.rowid='.$key.
'=accounting_bookkeeping.fk_doc (accounting_bookkeeping.doc_type=\'bank\') type='.$tabpay[$key][
'type'].
' ref='.$tabpay[$key][
'ref'].
' -->';
1434 print
'<tr class="oddeven">';
1437 print
"<td>".$date.
"</td>";
1440 print
'<td class="nopaddingtopimp nopaddingbottomimp">'.dol_escape_htmltag($ref).
"</td>";
1444 $account_ledger = $k;
1446 if ($tabtype[$key] ==
'payment') {
1447 $account_ledger = (!empty($obj->accountancy_code_customer_general)) ? $obj->accountancy_code_customer_general : $account_customer;
1449 if ($tabtype[$key] ==
'payment_supplier') {
1450 $account_ledger = (!empty($obj->accountancy_code_supplier_general)) ? $obj->accountancy_code_supplier_general : $account_supplier;
1452 if ($tabtype[$key] ==
'payment_expensereport') {
1455 if ($tabtype[$key] ==
'payment_salary') {
1456 $account_ledger = (!empty($obj->accountancy_code_user_general)) ? $obj->accountancy_code_user_general : $account_employee;
1458 if ($tabtype[$key] ==
'payment_vat') {
1461 if ($tabtype[$key] ==
'member') {
1464 if ($tabtype[$key] ==
'payment_various') {
1465 $account_ledger = $tabpay[$key][
"account_various"];
1468 if (empty($accounttoshow) || $accounttoshow ==
'NotDefined') {
1469 if ($tabtype[$key] ==
'unknown') {
1472 $accounttoshow =
'<span class="error small">'.$langs->trans(
'UnknownAccountForThirdpartyAndWaitingAccountNotDefinedBlocking').
'</span>';
1474 $accounttoshow =
'<span class="warning small">'.$langs->trans(
'UnknownAccountForThirdparty',
length_accountg(
getDolGlobalString(
'ACCOUNTING_ACCOUNT_SUSPENSE'))).
'</span>';
1478 $errorstring =
'UnknownAccountForThirdpartyBlocking';
1479 if ($tabtype[$key] ==
'payment') {
1480 $errorstring =
'MainAccountForCustomersNotDefined';
1482 if ($tabtype[$key] ==
'payment_supplier') {
1483 $errorstring =
'MainAccountForSuppliersNotDefined';
1485 if ($tabtype[$key] ==
'payment_expensereport') {
1486 $errorstring =
'MainAccountForUsersNotDefined';
1488 if ($tabtype[$key] ==
'payment_salary') {
1489 $errorstring =
'MainAccountForUsersNotDefined';
1491 if ($tabtype[$key] ==
'payment_vat') {
1492 $errorstring =
'MainAccountForVatPaymentNotDefined';
1494 if ($tabtype[$key] ==
'member') {
1495 $errorstring =
'MainAccountForSubscriptionPaymentNotDefined';
1497 $accounttoshow =
'<span class="error small">'.$langs->trans($errorstring).
'</span>';
1500 print
'<td class="maxwidth300" title="'.dol_escape_htmltag(
dol_string_nohtmltag($accounttoshow)).
'">';
1501 print $accounttoshow;
1505 $accounttoshowsubledger =
'';
1506 if (in_array($tabtype[$key], array(
'payment',
'payment_supplier',
'payment_expensereport',
'payment_salary',
'payment_various'))) {
1508 if ($accounttoshow != $accounttoshowsubledger) {
1509 if (empty($accounttoshowsubledger) || $accounttoshowsubledger ==
'NotDefined') {
1511 if (!empty($tabcompany[$key][
'code_compta'])) {
1512 if (in_array($tabtype[$key], array(
'payment_various'))) {
1514 $accounttoshowsubledger =
'<span class="warning small twolinesmax">'.$langs->trans(
"ThirdpartyAccountNotDefinedOrThirdPartyUnknownSubledgerIgnored").
'</span>';
1515 } elseif (in_array($tabtype[$key], array(
'payment_salary'))) {
1516 $accounttoshowsubledger =
'<span class="warning small twolinesmax">'.$langs->trans(
"ThirdpartyAccountNotDefinedOrThirdPartyUnknownSubledgerIgnored2").
'</span>';
1518 $accounttoshowsubledger =
'<span class="warning small twolinesmax">'.$langs->trans(
"ThirdpartyAccountNotDefinedOrThirdPartyUnknown", $tabcompany[$key][
'code_compta']).
'</span>';
1521 $accounttoshowsubledger =
'<span class="error small twolinesmax">'.$langs->trans(
"ThirdpartyAccountNotDefinedOrThirdPartyUnknownBlocking").
'</span>';
1525 $accounttoshowsubledger =
'';
1528 print
'<td class="maxwidth300 nopaddingtopimp nopaddingbottomimp" title="'.dolPrintHTMLForAttribute(
dol_string_nohtmltag($accounttoshowsubledger)).
'">';
1529 print $accounttoshowsubledger;
1533 print
'<td class="nopaddingtopimpo paddingbottomimp">';
1537 print
'<td class="center">'.$val[
"type_payment"].
"</td>";
1539 print
'<td class="right nowraponall amount">'.($mt < 0 ?
price(-$mt) :
'').
"</td>";
1541 print
'<td class="right nowraponall amount">'.($mt >= 0 ?
price($mt) :
'').
"</td>";
1549 foreach ($tabbq[$key] as $k => $mt) {
1552 if (!empty($val[
'lib'])) {
1553 $reflabel .= $val[
'lib'].
" / ";
1555 $reflabel .=
'WaitingAccount';
1557 print
'<!-- Wait bank.rowid='.$key.
' -->';
1558 print
'<tr class="oddeven">';
1559 print
"<td>".$date.
"</td>";
1560 print
"<td>".$ref.
"</td>";
1573 print
"<td>".dol_escape_htmltag($reflabel).
"</td>";
1574 print
'<td class="center">'.$val[
"type_payment"].
"</td>";
1575 print
'<td class="right nowraponall amount">'.($mt < 0 ?
price(-$mt) :
'').
"</td>";
1576 print
'<td class="right nowraponall amount">'.($mt >= 0 ?
price($mt) :
'').
"</td>";
1587 print
'<tr class="oddeven"><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
1614 if ($ref ==
'(SupplierInvoicePayment)' || $ref ==
'(SupplierInvoicePaymentBack)') {
1615 $ref = $langs->transnoentitiesnoconv(
'Supplier');
1617 if ($ref ==
'(CustomerInvoicePayment)' || $ref ==
'(CustomerInvoicePaymentBack)') {
1618 $ref = $langs->transnoentitiesnoconv(
'Customer');
1620 if ($ref ==
'(SocialContributionPayment)') {
1621 $ref = $langs->transnoentitiesnoconv(
'SocialContribution');
1623 if ($ref ==
'(DonationPayment)') {
1624 $ref = $langs->transnoentitiesnoconv(
'Donation');
1626 if ($ref ==
'(SubscriptionPayment)') {
1627 $ref = $langs->transnoentitiesnoconv(
'Subscription');
1629 if ($ref ==
'(ExpenseReportPayment)') {
1630 $ref = $langs->transnoentitiesnoconv(
'Employee');
1632 if ($ref ==
'(LoanPayment)') {
1633 $ref = $langs->transnoentitiesnoconv(
'Loan');
1635 if ($ref ==
'(payment_salary)') {
1636 $ref = $langs->transnoentitiesnoconv(
'Employee');
1640 if ($typerecord ==
'payment') {
1642 $sqlmid =
"SELECT payfac.fk_facture as id, ".$db->ifsql(
'f1.rowid IS NULL',
'f.ref',
'f1.ref').
" as ref";
1643 $sqlmid .=
" FROM ".$db->prefix().
"paiement_facture as payfac";
1644 $sqlmid .=
" LEFT JOIN ".$db->prefix().
"facture as f ON f.rowid = payfac.fk_facture";
1645 $sqlmid .=
" LEFT JOIN ".$db->prefix().
"societe_remise_except as sre ON sre.fk_facture_source = payfac.fk_facture";
1646 $sqlmid .=
" LEFT JOIN ".$db->prefix().
"facture as f1 ON f1.rowid = sre.fk_facture";
1647 $sqlmid .=
" WHERE payfac.fk_paiement=".((int) $val[
'paymentid']);
1649 $sqlmid =
"SELECT payfac.fk_facture as id, f.ref as ref";
1650 $sqlmid .=
" FROM ".$db->prefix().
"paiement_facture as payfac";
1651 $sqlmid .=
" INNER JOIN ".$db->prefix().
"facture as f ON f.rowid = payfac.fk_facture";
1652 $sqlmid .=
" WHERE payfac.fk_paiement=".((int) $val[
'paymentid']);
1654 $ref = $langs->transnoentitiesnoconv(
"Invoice");
1655 } elseif ($typerecord ==
'payment_supplier') {
1656 $sqlmid =
'SELECT payfac.fk_facturefourn as id, f.ref';
1657 $sqlmid .=
" FROM ".MAIN_DB_PREFIX.
"paiementfourn_facturefourn as payfac, ".MAIN_DB_PREFIX.
"facture_fourn as f";
1658 $sqlmid .=
" WHERE payfac.fk_facturefourn = f.rowid AND payfac.fk_paiementfourn=".((int) $val[
"paymentsupplierid"]);
1659 $ref = $langs->transnoentitiesnoconv(
"SupplierInvoice");
1660 } elseif ($typerecord ==
'payment_expensereport') {
1661 $sqlmid =
'SELECT e.rowid as id, e.ref';
1662 $sqlmid .=
" FROM ".MAIN_DB_PREFIX.
"payment_expensereport as pe, ".MAIN_DB_PREFIX.
"expensereport as e";
1663 $sqlmid .=
" WHERE pe.rowid=".((int) $val[
"paymentexpensereport"]).
" AND pe.fk_expensereport = e.rowid";
1664 $ref = $langs->transnoentitiesnoconv(
"ExpenseReport");
1665 } elseif ($typerecord ==
'payment_salary') {
1666 $sqlmid =
'SELECT s.rowid as ref';
1667 $sqlmid .=
" FROM ".MAIN_DB_PREFIX.
"payment_salary as s";
1668 $sqlmid .=
" WHERE s.rowid=".((int) $val[
"paymentsalid"]);
1669 $ref = $langs->transnoentitiesnoconv(
"SalaryPayment");
1670 } elseif ($typerecord ==
'sc') {
1671 $sqlmid =
'SELECT sc.rowid as ref';
1672 $sqlmid .=
" FROM ".MAIN_DB_PREFIX.
"paiementcharge as sc";
1673 $sqlmid .=
" WHERE sc.rowid=".((int) $val[
"paymentscid"]);
1674 $ref = $langs->transnoentitiesnoconv(
"SocialContribution");
1675 } elseif ($typerecord ==
'payment_vat') {
1676 $sqlmid =
'SELECT v.rowid as ref';
1677 $sqlmid .=
" FROM ".MAIN_DB_PREFIX.
"tva as v";
1678 $sqlmid .=
" WHERE v.rowid=".((int) $val[
"paymentvatid"]);
1679 $ref = $langs->transnoentitiesnoconv(
"PaymentVat");
1680 } elseif ($typerecord ==
'payment_donation') {
1681 $sqlmid =
'SELECT payd.fk_donation as ref';
1682 $sqlmid .=
" FROM ".MAIN_DB_PREFIX.
"payment_donation as payd";
1683 $sqlmid .=
" WHERE payd.fk_donation=".((int) $val[
"paymentdonationid"]);
1684 $ref = $langs->transnoentitiesnoconv(
"Donation");
1685 } elseif ($typerecord ==
'payment_loan') {
1686 $sqlmid =
'SELECT l.rowid as ref';
1687 $sqlmid .=
" FROM ".MAIN_DB_PREFIX.
"payment_loan as l";
1688 $sqlmid .=
" WHERE l.rowid=".((int) $val[
"paymentloanid"]);
1689 $ref = $langs->transnoentitiesnoconv(
"LoanPayment");
1690 } elseif ($typerecord ==
'payment_various') {
1691 $sqlmid =
'SELECT v.rowid as ref';
1692 $sqlmid .=
" FROM ".MAIN_DB_PREFIX.
"payment_various as v";
1693 $sqlmid .=
" WHERE v.rowid=".((int) $val[
"paymentvariousid"]);
1694 $ref = $langs->transnoentitiesnoconv(
"VariousPayment");
1697 if (empty($sqlmid)) {
1698 dol_syslog(
"Found a typerecord=".$typerecord.
" not supported", LOG_WARNING);
1702 dol_syslog(
"accountancy/journal/bankjournal.php::sqlmid=".$sqlmid, LOG_DEBUG);
1703 $resultmid = $db->query($sqlmid);
1705 while ($objmid = $db->fetch_object($resultmid)) {
1706 $ref .=
' '.$objmid->ref;
1713 $ref =
dol_trunc($langs->transnoentitiesnoconv(
"BankId").
' '.$val[
'fk_bank'].
' - '.$ref, 295);
if(! $sortfield) if(! $sortorder) $object
length_accountg($account)
Return General accounting account with defined length (used for product and miscellaneous)
journalHead($nom, $variant, $period, $periodlink, $description, $builddate, $exportlink='', $moreparam=array(), $calcmode='', $varlink='', $moreoptions=array())
Show header of a page used to transfer/dispatch data in accounting.
getDefaultDatesForTransfer()
Return Default dates for transfer based on periodicity option in accountancy setup.
length_accounta($accounta)
Return Auxiliary accounting account of thirdparties with defined length.
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
getSourceDocRef($val, $typerecord)
Return source for doc_ref of a bank transaction.
Class to manage bank accounts.
Class to manage bank transaction lines.
Class to manage accounting accounts.
Class to manage accounting journals.
Class to manage Ledger (General Ledger and Subledger)
Class for managing the social charges.
Class to manage donations.
Class to manage Trips and Expenses.
Class to manage suppliers invoices.
Class to manage invoices.
Class to manage payments for supplier invoices.
Class to manage payments of customer invoices.
Class to manage payments of donations.
Class to manage payments of expense report.
Class to manage payments of loans.
Class to manage payments of salaries.
Class to manage various payments.
Class to manage salary payments.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage subscriptions of foundation members.
Class to manage VAT - Value-added tax (also known in French as TVA - Taxe sur la valeur ajoutée)
Class to manage Dolibarr users.
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
dol_now($mode='gmt')
Return date for now.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dolGetFirstLastname($firstname, $lastname, $nameorder=-1)
Return firstname and lastname in correct order.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
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_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
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.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.