| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490 |
- <?php
- /* Copyright (C) 2020 Maxime Kohlhaas <maxime@atm-consulting.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/compta/stats/supplier_turnover.php
- * \brief Page reporting purchase turnover
- */
- // Load Dolibarr environment
- require '../../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/report.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
- // Load translation files required by the page
- $langs->loadLangs(array('compta', 'bills'));
- $date_startday = GETPOST('date_startday', 'int');
- $date_startmonth = GETPOST('date_startmonth', 'int');
- $date_startyear = GETPOST('date_startyear', 'int');
- $date_endday = GETPOST('date_endday', 'int');
- $date_endmonth = GETPOST('date_endmonth', 'int');
- $date_endyear = GETPOST('date_endyear', 'int');
- $nbofyear = 4;
- // Date range
- $year = GETPOST('year', 'int');
- if (empty($year)) {
- $year_current = dol_print_date(dol_now(), "%Y");
- $month_current = dol_print_date(dol_now(), "%m");
- $year_start = $year_current - ($nbofyear - 1);
- } else {
- $year_current = $year;
- $month_current = dol_print_date(dol_now(), "%m");
- $year_start = $year - ($nbofyear - 1);
- }
- $date_start = dol_mktime(0, 0, 0, $date_startmonth, $date_startday, $date_startyear, 'tzserver'); // We use timezone of server so report is same from everywhere
- $date_end = dol_mktime(23, 59, 59, $date_endmonth, $date_endday, $date_endyear, 'tzserver'); // We use timezone of server so report is same from everywhere
- // We define date_start and date_end
- if (empty($date_start) || empty($date_end)) { // We define date_start and date_end
- $q = GETPOST("q") ?GETPOST("q") : 0;
- if ($q == 0) {
- // We define date_start and date_end
- $year_end = $year_start + ($nbofyear - 1);
- $month_start = GETPOSTISSET("month") ? GETPOST("month", 'int') : ($conf->global->SOCIETE_FISCAL_MONTH_START ? $conf->global->SOCIETE_FISCAL_MONTH_START : 1);
- if (!GETPOST('month')) {
- if (!GETPOST("year") && $month_start > $month_current) {
- $year_start--;
- $year_end--;
- }
- $month_end = $month_start - 1;
- if ($month_end < 1) {
- $month_end = 12;
- } else {
- $year_end++;
- }
- } else {
- $month_end = $month_start;
- }
- $date_start = dol_get_first_day($year_start, $month_start, false);
- $date_end = dol_get_last_day($year_end, $month_end, false);
- }
- if ($q == 1) {
- $date_start = dol_get_first_day($year_start, 1, false);
- $date_end = dol_get_last_day($year_start, 3, false);
- }
- if ($q == 2) {
- $date_start = dol_get_first_day($year_start, 4, false);
- $date_end = dol_get_last_day($year_start, 6, false);
- }
- if ($q == 3) {
- $date_start = dol_get_first_day($year_start, 7, false);
- $date_end = dol_get_last_day($year_start, 9, false);
- }
- if ($q == 4) {
- $date_start = dol_get_first_day($year_start, 10, false);
- $date_end = dol_get_last_day($year_start, 12, false);
- }
- }
- $userid = GETPOST('userid', 'int');
- $socid = GETPOST('socid', 'int');
- $tmps = dol_getdate($date_start);
- $year_start = $tmps['year'];
- $tmpe = dol_getdate($date_end);
- $year_end = $tmpe['year'];
- $nbofyear = ($year_end - $year_start) + 1;
- // Define modecompta ('CREANCES-DETTES' or 'RECETTES-DEPENSES' or 'BOOKKEEPING')
- $modecompta = $conf->global->ACCOUNTING_MODE;
- if (isModEnabled('accounting')) {
- $modecompta = 'BOOKKEEPING';
- }
- if (GETPOST("modecompta")) {
- $modecompta = GETPOST("modecompta", 'alpha');
- }
- // Security check
- if ($user->socid > 0) {
- $socid = $user->socid;
- }
- if (isModEnabled('comptabilite')) {
- $result = restrictedArea($user, 'compta', '', '', 'resultat');
- }
- if (isModEnabled('accounting')) {
- $result = restrictedArea($user, 'accounting', '', '', 'comptarapport');
- }
- /*
- * View
- */
- llxHeader();
- $form = new Form($db);
- // TODO Report from bookkeeping not yet available, so we switch on report on business events
- if ($modecompta == "BOOKKEEPING") {
- $modecompta = "CREANCES-DETTES";
- }
- if ($modecompta == "BOOKKEEPINGCOLLECTED") {
- $modecompta = "RECETTES-DEPENSES";
- }
- // Affiche en-tete du rapport
- if ($modecompta == "CREANCES-DETTES") {
- $name = $langs->trans("PurchaseTurnover");
- $calcmode = $langs->trans("CalcModeDebt");
- if (isModEnabled('accounting')) {
- $calcmode .= '<br>('.$langs->trans("SeeReportInBookkeepingMode", '{link1}', '{link2}').')';
- $calcmode = str_replace('{link1}', '<a href="'.$_SERVER["PHP_SELF"].'?year_start='.$year_start.'&modecompta=BOOKKEEPING">', $calcmode);
- $calcmode = str_replace('{link2}', '</a>', $calcmode);
- }
- $periodlink = ($year_start ? "<a href='".$_SERVER["PHP_SELF"]."?year=".($year_start + $nbofyear - 2)."&modecompta=".$modecompta."'>".img_previous()."</a> <a href='".$_SERVER["PHP_SELF"]."?year=".($year_start + $nbofyear)."&modecompta=".$modecompta."'>".img_next()."</a>" : "");
- $description = $langs->trans("RulesPurchaseTurnoverDue");
- //$exportlink=$langs->trans("NotYetAvailable");
- } elseif ($modecompta == "RECETTES-DEPENSES") {
- $name = $langs->trans("PurchaseTurnoverCollected");
- $calcmode = $langs->trans("CalcModeEngagement");
- $periodlink = ($year_start ? "<a href='".$_SERVER["PHP_SELF"]."?year=".($year_start + $nbofyear - 2)."&modecompta=".$modecompta."'>".img_previous()."</a> <a href='".$_SERVER["PHP_SELF"]."?year=".($year_start + $nbofyear)."&modecompta=".$modecompta."'>".img_next()."</a>" : "");
- $description = $langs->trans("RulesPurchaseTurnoverIn");
- //$exportlink=$langs->trans("NotYetAvailable");
- } elseif ($modecompta == "BOOKKEEPING") {
- $name = $langs->trans("PurchaseTurnover");
- $calcmode = $langs->trans("CalcModeBookkeeping");
- $calcmode .= '<br>('.$langs->trans("SeeReportInDueDebtMode", '{link1}', '{link2}').')';
- $calcmode = str_replace('{link1}', '<a href="'.$_SERVER["PHP_SELF"].'?year_start='.$year_start.'&modecompta=CREANCES-DETTES">', $calcmode);
- $calcmode = str_replace('{link2}', '</a>', $calcmode);
- $periodlink = ($year_start ? "<a href='".$_SERVER["PHP_SELF"]."?year=".($year_start + $nbofyear - 2)."&modecompta=".$modecompta."'>".img_previous()."</a> <a href='".$_SERVER["PHP_SELF"]."?year=".($year_start + $nbofyear)."&modecompta=".$modecompta."'>".img_next()."</a>" : "");
- $description = $langs->trans("RulesPurchaseTurnoverOfExpenseAccounts");
- //$exportlink=$langs->trans("NotYetAvailable");
- } elseif ($modecompta == "BOOKKEEPINGCOLLECTED") {
- $name = $langs->trans("PurchaseTurnoverCollected");
- $calcmode = $langs->trans("CalcModeBookkeeping");
- $calcmode .= '<br>('.$langs->trans("SeeReportInDueDebtMode", '{link1}', '{link2}').')';
- $calcmode = str_replace('{link1}', '<a href="'.$_SERVER["PHP_SELF"].'?year_start='.$year_start.'&modecompta=RECETTES-DEPENSES">', $calcmode);
- $calcmode = str_replace('{link2}', '</a>', $calcmode);
- $periodlink = ($year_start ? "<a href='".$_SERVER["PHP_SELF"]."?year=".($year_start + $nbofyear - 2)."&modecompta=".$modecompta."'>".img_previous()."</a> <a href='".$_SERVER["PHP_SELF"]."?year=".($year_start + $nbofyear)."&modecompta=".$modecompta."'>".img_next()."</a>" : "");
- $description = $langs->trans("RulesPurchaseTurnoverCollectedOfExpenseAccounts");
- //$exportlink=$langs->trans("NotYetAvailable");
- }
- $builddate = dol_now();
- $period = $form->selectDate($date_start, 'date_start', 0, 0, 0, '', 1, 0, 0, '', '', '', '', 1, '', '', 'tzserver');
- $period .= ' - ';
- $period .= $form->selectDate($date_end, 'date_end', 0, 0, 0, '', 1, 0, 0, '', '', '', '', 1, '', '', 'tzserver');
- $moreparam = array();
- if (!empty($modecompta)) {
- $moreparam['modecompta'] = $modecompta;
- }
- $exportlink = '';
- report_header($name, '', $period, $periodlink, $description, $builddate, $exportlink, $moreparam, $calcmode);
- if (isModEnabled('accounting') && $modecompta != 'BOOKKEEPING') {
- print info_admin($langs->trans("WarningReportNotReliable"), 0, 0, 1);
- }
- if ($modecompta == 'CREANCES-DETTES') {
- $sql = "SELECT date_format(f.datef,'%Y-%m') as dm, sum(f.total_ht) as amount, sum(f.total_ttc) as amount_ttc";
- $sql .= " FROM ".MAIN_DB_PREFIX."facture_fourn as f";
- $sql .= " WHERE f.fk_statut in (1,2)";
- $sql .= " AND f.type IN (0,2)";
- $sql .= " AND f.entity IN (".getEntity('supplier_invoice').")";
- if ($socid) {
- $sql .= " AND f.fk_soc = ".((int) $socid);
- }
- } elseif ($modecompta == "RECETTES-DEPENSES") {
- $sql = "SELECT date_format(p.datep,'%Y-%m') as dm, sum(pf.amount) as amount_ttc";
- $sql .= " FROM ".MAIN_DB_PREFIX."facture_fourn as f";
- $sql .= ", ".MAIN_DB_PREFIX."paiementfourn_facturefourn as pf";
- $sql .= ", ".MAIN_DB_PREFIX."paiementfourn as p";
- $sql .= " WHERE p.rowid = pf.fk_paiementfourn";
- $sql .= " AND pf.fk_facturefourn = f.rowid";
- $sql .= " AND f.entity IN (".getEntity('supplier_invoice').")";
- if ($socid) {
- $sql .= " AND f.fk_soc = ".((int) $socid);
- }
- } elseif ($modecompta == "BOOKKEEPING") {
- $pcgverid = $conf->global->CHARTOFACCOUNTS;
- $pcgvercode = dol_getIdFromCode($db, $pcgverid, 'accounting_system', 'rowid', 'pcg_version');
- if (empty($pcgvercode)) {
- $pcgvercode = $pcgverid;
- }
- $sql = "SELECT date_format(b.doc_date, '%Y-%m') as dm, sum(b.debit - b.credit) as amount_ttc";
- $sql .= " FROM ".MAIN_DB_PREFIX."accounting_bookkeeping as b,";
- $sql .= " ".MAIN_DB_PREFIX."accounting_account as aa";
- $sql .= " WHERE b.entity = ".$conf->entity; // In module double party accounting, we never share entities
- $sql .= " AND b.doc_type = 'supplier_invoice'";
- $sql .= " AND b.numero_compte = aa.account_number";
- $sql .= " AND aa.entity = ".$conf->entity;
- $sql .= " AND aa.fk_pcg_version = '".$db->escape($pcgvercode)."'";
- $sql .= " AND aa.pcg_type = 'EXPENSE'"; // TODO Be able to use a custom group
- }
- //print $sql;
- $sql .= " GROUP BY dm";
- $sql .= " ORDER BY dm";
- // TODO Add a filter on $date_start and $date_end to reduce quantity on data
- //print $sql;
- $minyearmonth = $maxyearmonth = 0;
- $result = $db->query($sql);
- if ($result) {
- $num = $db->num_rows($result);
- $i = 0;
- while ($i < $num) {
- $obj = $db->fetch_object($result);
- $cum_ht[$obj->dm] = !empty($obj->amount) ? $obj->amount : 0;
- $cum[$obj->dm] = $obj->amount_ttc;
- if ($obj->amount_ttc) {
- $minyearmonth = ($minyearmonth ? min($minyearmonth, $obj->dm) : $obj->dm);
- $maxyearmonth = max($maxyearmonth, $obj->dm);
- }
- $i++;
- }
- $db->free($result);
- } else {
- dol_print_error($db);
- }
- $moreforfilter = '';
- print '<div class="div-table-responsive">';
- print '<table class="tagtable liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
- print '<tr class="liste_titre"><td> </td>';
- for ($annee = $year_start; $annee <= $year_end; $annee++) {
- if ($modecompta == 'CREANCES-DETTES') {
- print '<td align="center" width="10%" colspan="3">';
- } else {
- print '<td align="center" width="10%" colspan="2" class="borderrightlight">';
- }
- if ($modecompta != 'BOOKKEEPING') {
- print '<a href="supplier_turnover_by_thirdparty.php?year='.$annee.($modecompta ? '&modecompta='.$modecompta : '').'">';
- }
- print $annee;
- if ($conf->global->SOCIETE_FISCAL_MONTH_START > 1) {
- print '-'.($annee + 1);
- }
- if ($modecompta != 'BOOKKEEPING') {
- print '</a>';
- }
- print '</td>';
- if ($annee != $year_end) {
- print '<td width="15"> </td>';
- }
- }
- print '</tr>';
- print '<tr class="liste_titre"><td class="liste_titre">'.$langs->trans("Month").'</td>';
- for ($annee = $year_start; $annee <= $year_end; $annee++) {
- if ($modecompta == 'CREANCES-DETTES') {
- print '<td class="liste_titre right">'.$langs->trans("AmountHT").'</td>';
- }
- print '<td class="liste_titre right">';
- if ($modecompta == "BOOKKEEPING") {
- print $langs->trans("Amount");
- } else {
- print $langs->trans("AmountTTC");
- }
- print '</td>';
- print '<td class="liste_titre right borderrightlight">'.$langs->trans("Delta").'</td>';
- if ($annee != $year_end) {
- print '<td class="liste_titre" width="15"> </td>';
- }
- }
- print '</tr>';
- $now_show_delta = 0;
- $minyear = substr($minyearmonth, 0, 4);
- $maxyear = substr($maxyearmonth, 0, 4);
- $nowyear = dol_print_date(dol_now('gmt'), "%Y", 'gmt');
- $nowyearmonth = strftime("%Y-%m", dol_now());
- $maxyearmonth = max($maxyearmonth, $nowyearmonth);
- $now = dol_now();
- $casenow = dol_print_date($now, "%Y-%m");
- // Loop on each month
- $nb_mois_decalage = $conf->global->SOCIETE_FISCAL_MONTH_START ? ($conf->global->SOCIETE_FISCAL_MONTH_START - 1) : 0;
- for ($mois = 1 + $nb_mois_decalage; $mois <= 12 + $nb_mois_decalage; $mois++) {
- $mois_modulo = $mois; // ajout
- if ($mois > 12) {
- $mois_modulo = $mois - 12;
- } // ajout
- if ($year_start == $year_end) {
- if ($mois > $date_endmonth && $year_end >= $date_endyear) {
- break;
- }
- }
- print '<tr class="oddeven">';
- // Month
- print "<td>".dol_print_date(dol_mktime(12, 0, 0, $mois_modulo, 1, 2000), "%B")."</td>";
- for ($annee = $year_start - 1; $annee <= $year_end; $annee++) { // We start one year before to have data to be able to make delta
- $annee_decalage = $annee;
- if ($mois > 12) {
- $annee_decalage = $annee + 1;
- }
- $case = dol_print_date(dol_mktime(1, 1, 1, $mois_modulo, 1, $annee_decalage), "%Y-%m");
- $caseprev = dol_print_date(dol_mktime(1, 1, 1, $mois_modulo, 1, $annee_decalage - 1), "%Y-%m");
- if ($annee >= $year_start) { // We ignore $annee < $year_start, we loop on it to be able to make delta, nothing is output.
- if ($modecompta == 'CREANCES-DETTES') {
- // Valeur CA du mois w/o VAT
- print '<td class="right">';
- if (!empty($cum_ht[$case])) {
- $now_show_delta = 1; // On a trouve le premier mois de la premiere annee generant du chiffre.
- print '<a href="supplier_turnover_by_thirdparty.php?year='.$annee_decalage.'&month='.$mois_modulo.($modecompta ? '&modecompta='.$modecompta : '').'">'.price($cum_ht[$case], 1).'</a>';
- } else {
- if ($minyearmonth < $case && $case <= max($maxyearmonth, $nowyearmonth)) {
- print '0';
- } else {
- print ' ';
- }
- }
- print "</td>";
- }
- // Valeur CA du mois
- print '<td class="right">';
- if (!empty($cum[$case])) {
- $now_show_delta = 1; // On a trouve le premier mois de la premiere annee generant du chiffre.
- if ($modecompta != 'BOOKKEEPING') {
- print '<a href="supplier_turnover_by_thirdparty.php?year='.$annee_decalage.'&month='.$mois_modulo.($modecompta ? '&modecompta='.$modecompta : '').'">';
- }
- print price($cum[$case], 1);
- if ($modecompta != 'BOOKKEEPING') {
- print '</a>';
- }
- } else {
- if ($minyearmonth < $case && $case <= max($maxyearmonth, $nowyearmonth)) {
- print '0';
- } else {
- print ' ';
- }
- }
- print "</td>";
- // Pourcentage du mois
- if ($annee_decalage > $minyear && $case <= $casenow) {
- if (!empty($cum[$caseprev]) && !empty($cum[$case])) {
- $percent = (round(($cum[$case] - $cum[$caseprev]) / $cum[$caseprev], 4) * 100);
- //print "X $cum[$case] - $cum[$caseprev] - $cum[$caseprev] - $percent X";
- print '<td class="borderrightlight right">'.($percent >= 0 ? "+$percent" : "$percent").'%</td>';
- }
- if (!empty($cum[$caseprev]) && empty($cum[$case])) {
- print '<td class="borderrightlight right">-100%</td>';
- }
- if (empty($cum[$caseprev]) && !empty($cum[$case])) {
- //print '<td class="right">+Inf%</td>';
- print '<td class="borderrightlight right">-</td>';
- }
- if (isset($cum[$caseprev]) && empty($cum[$caseprev]) && empty($cum[$case])) {
- print '<td class="borderrightlight right">+0%</td>';
- }
- if (!isset($cum[$caseprev]) && empty($cum[$case])) {
- print '<td class="borderrightlight right">-</td>';
- }
- } else {
- print '<td class="borderrightlight right">';
- if ($minyearmonth <= $case && $case <= $maxyearmonth) {
- print '-';
- } else {
- print ' ';
- }
- print '</td>';
- }
- if ($annee_decalage < $year_end || ($annee_decalage == $year_end && $mois > 12 && $annee < $year_end)) {
- print '<td width="15"> </td>';
- }
- }
- if (empty($total_ht[$annee])) {
- $total_ht[$annee] = ((!empty($cum_ht[$case])) ? $cum_ht[$case] : 0);
- } else {
- $total_ht[$annee] += ((!empty($cum_ht[$case])) ? $cum_ht[$case] : 0);
- }
- if (empty($total[$annee])) {
- $total[$annee] = (empty($cum[$case]) ? 0 : $cum[$case]);
- } else {
- $total[$annee] += (empty($cum[$case]) ? 0 : $cum[$case]);
- }
- }
- print '</tr>';
- }
- // Affiche total
- print '<tr class="liste_total"><td>'.$langs->trans("Total").'</td>';
- for ($annee = $year_start; $annee <= $year_end; $annee++) {
- if ($modecompta == 'CREANCES-DETTES') {
- // Montant total HT
- if ($total_ht[$annee] || ($annee >= $minyear && $annee <= max($nowyear, $maxyear))) {
- print '<td class="nowrap right">'.($total_ht[$annee] ?price($total_ht[$annee]) : "0")."</td>";
- } else {
- print '<td> </td>';
- }
- }
- // Montant total
- if ($total[$annee] || ($annee >= $minyear && $annee <= max($nowyear, $maxyear))) {
- print '<td class="nowrap right">'.($total[$annee] ?price($total[$annee]) : "0")."</td>";
- } else {
- print '<td> </td>';
- }
- // Pourcentage total
- if ($annee > $minyear && $annee <= max($nowyear, $maxyear)) {
- if ($total[$annee - 1] && $total[$annee]) {
- $percent = (round(($total[$annee] - $total[$annee - 1]) / $total[$annee - 1], 4) * 100);
- print '<td class="nowrap borderrightlight right">'.($percent >= 0 ? "+$percent" : "$percent").'%</td>';
- }
- if ($total[$annee - 1] && !$total[$annee]) {
- print '<td class="borderrightlight right">-100%</td>';
- }
- if (!$total[$annee - 1] && $total[$annee]) {
- print '<td class="borderrightlight right">+'.$langs->trans('Inf').'%</td>';
- }
- if (!$total[$annee - 1] && !$total[$annee]) {
- print '<td class="borderrightlight right">+0%</td>';
- }
- } else {
- print '<td class="borderrightlight right">';
- if ($total[$annee] || ($minyear <= $annee && $annee <= max($nowyear, $maxyear))) {
- print '-';
- } else {
- print ' ';
- }
- print '</td>';
- }
- if ($annee != $year_end) {
- print '<td width="15"> </td>';
- }
- }
- print "</tr>\n";
- print "</table>";
- print '</div>';
- // End of page
- llxFooter();
- $db->close();
|