123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559 |
- <?php
- /* Copyright (C) 2016-2017 Jamal Elbaz <jamelbaz@gmail.com>
- * Copyright (C) 2016 Alexandre Spangaro <aspangaro@open-dsi.fr>
- * Copyright (C) 2018 Laurent Destailleur <eldy@destailleur.fr>
- * Copyright (C) 2018 Frédéric France <frederic.france@netlogic.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 <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/compta/resultat/result.php
- * \ingroup compta, accountancy
- * \brief Page for accounting result
- */
- require '../../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/accounting.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/report.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formaccounting.class.php';
- require_once DOL_DOCUMENT_ROOT.'/accountancy/class/accountancycategory.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array('compta','bills','donation','salaries','accountancy'));
- $error = 0;
- $mesg = '';
- $action = GETPOST('action','aZ09');
- $cat_id = GETPOST('account_category');
- $selectcpt = GETPOST('cpt_bk');
- $id = GETPOST('id', 'int');
- $rowid = GETPOST('rowid', 'int');
- $cancel = GETPOST('cancel','alpha');
- $showaccountdetail = GETPOST('showaccountdetail','aZ09')?GETPOST('showaccountdetail','aZ09'):'no';
- $date_startmonth=GETPOST('date_startmonth','int');
- $date_startday=GETPOST('date_startday','int');
- $date_startyear=GETPOST('date_startyear','int');
- $date_endmonth=GETPOST('date_endmonth','int');
- $date_endday=GETPOST('date_endday','int');
- $date_endyear=GETPOST('date_endyear','int');
- $nbofyear=1;
- // Date range
- $year=GETPOST('year','int');
- if (empty($year))
- {
- $year_current = strftime("%Y", dol_now());
- $month_current = strftime("%m", dol_now());
- $year_start = $year_current - ($nbofyear - 1);
- } else {
- $year_current = $year;
- $month_current = strftime("%m", dol_now());
- $year_start = $year - ($nbofyear - 1);
- }
- $date_start=dol_mktime(0, 0, 0, $date_startmonth, $date_startday, $date_startyear);
- $date_end=dol_mktime(23, 59, 59, $date_endmonth, $date_endday, $date_endyear);
- // 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=GETPOST("month",'int')?GETPOST("month",'int'):($conf->global->SOCIETE_FISCAL_MONTH_START?($conf->global->SOCIETE_FISCAL_MONTH_START):1);
- $date_startmonth = $month_start;
- 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); }
- }
- if (($date_start < dol_time_plus_duree($date_end, -1, 'y')) || ($date_start > $date_end))
- {
- $date_end = dol_time_plus_duree($date_start - 1, 1, 'y');
- }
- // $date_start and $date_end are defined. We force $start_year and $nbofyear
- $tmps=dol_getdate($date_start);
- $start_year = $tmps['year'];
- $start_month = $tmps['mon'];
- $tmpe=dol_getdate($date_end);
- $year_end = $tmpe['year'];
- $month_end = $tmpe['mon'];
- $nbofyear = ($year_end - $start_year) + 1;
- $date_start_previous = dol_time_plus_duree($date_start, -1, 'y');
- $date_end_previous = dol_time_plus_duree($date_end, -1, 'y');
- //var_dump($date_start." ".$date_end." ".$date_start_previous." ".$date_end_previous." ".$nbofyear);
- if($cat_id == 0){
- $cat_id = null;
- }
- // Define modecompta ('CREANCES-DETTES' or 'RECETTES-DEPENSES' or 'BOOKKEEPING')
- $modecompta = $conf->global->ACCOUNTING_MODE;
- if (! empty($conf->accounting->enabled)) $modecompta='BOOKKEEPING';
- if (GETPOST("modecompta")) $modecompta=GETPOST("modecompta",'alpha');
- // Security check
- if ($user->societe_id > 0)
- accessforbidden();
- if (! $user->rights->accounting->comptarapport->lire)
- accessforbidden();
- $AccCat = new AccountancyCategory($db);
- /*
- * View
- */
- $months = array(
- $langs->trans("JanuaryMin"),
- $langs->trans("FebruaryMin"),
- $langs->trans("MarchMin"),
- $langs->trans("AprilMin"),
- $langs->trans("MayMin"),
- $langs->trans("JuneMin"),
- $langs->trans("JulyMin"),
- $langs->trans("AugustMin"),
- $langs->trans("SeptemberMin"),
- $langs->trans("OctoberMin"),
- $langs->trans("NovemberMin"),
- $langs->trans("DecemberMin"),
- );
- llxheader('', $langs->trans('ReportInOut'));
- $formaccounting = new FormAccounting($db);
- $form = new Form($db);
- $textprevyear = '<a href="' . $_SERVER["PHP_SELF"] . '?year=' . ($start_year - 1) . '">' . img_previous() . '</a>';
- $textnextyear = ' <a href="' . $_SERVER["PHP_SELF"] . '?year=' . ($start_year + 1) . '">' . img_next() . '</a>';
- // Affiche en-tete de rapport
- if ($modecompta=="CREANCES-DETTES")
- {
- $name=$langs->trans("AnnualByAccountDueDebtMode");
- $calcmode=$langs->trans("CalcModeDebt");
- $calcmode.='<br>('.$langs->trans("SeeReportInInputOutputMode",'<a href="'.$_SERVER["PHP_SELF"].'?year='.$start_year.(GETPOST("month")>0?'&month='.GETPOST("month"):'').'&modecompta=RECETTES-DEPENSES">','</a>').')';
- if (! empty($conf->accounting->enabled)) $calcmode.='<br>('.$langs->trans("SeeReportInBookkeepingMode",'<a href="'.$_SERVER["PHP_SELF"].'?year='.$start_year.'&modecompta=BOOKKEEPING">','</a>').')';
- $period=$form->selectDate($date_start, 'date_start', 0, 0, 0, '', 1, 0).' - '.$form->selectDate($date_end, 'date_end', 0, 0, 0, '', 1, 0);
- //$periodlink='<a href="'.$_SERVER["PHP_SELF"].'?year='.($year-1).'&modecompta='.$modecompta.'">'.img_previous().'</a> <a href="'.$_SERVER["PHP_SELF"].'?year='.($year+1).'&modecompta='.$modecompta.'">'.img_next().'</a>';
- $description=$langs->trans("RulesResultDue");
- if (! empty($conf->global->FACTURE_DEPOSITS_ARE_JUST_PAYMENTS)) $description.= $langs->trans("DepositsAreNotIncluded");
- else $description.= $langs->trans("DepositsAreIncluded");
- $builddate=dol_now();
- //$exportlink=$langs->trans("NotYetAvailable");
- }
- elseif ($modecompta=="RECETTES-DEPENSES") {
- $name=$langs->trans("AnnualByAccountInputOutputMode");
- $calcmode=$langs->trans("CalcModeEngagement");
- $calcmode.='<br>('.$langs->trans("SeeReportInDueDebtMode",'<a href="'.$_SERVER["PHP_SELF"].'?year='.$year.(GETPOST("month")>0?'&month='.GETPOST("month"):'').'&modecompta=CREANCES-DETTES">','</a>').')';
- if (! empty($conf->accounting->enabled)) $calcmode.='<br>('.$langs->trans("SeeReportInBookkeepingMode",'<a href="'.$_SERVER["PHP_SELF"].'?year='.$year.'&modecompta=BOOKKEEPING">','</a>').')';
- $period=$form->selectDate($date_start, 'date_start', 0, 0, 0, '', 1, 0).' - '.$form->selectDate($date_end, 'date_end', 0, 0, 0, '', 1, 0);
- //$periodlink='<a href="'.$_SERVER["PHP_SELF"].'?year='.($year-1).'&modecompta='.$modecompta.'">'.img_previous().'</a> <a href="'.$_SERVER["PHP_SELF"].'?year='.($year+1).'&modecompta='.$modecompta.'">'.img_next().'</a>';
- $description=$langs->trans("RulesResultInOut");
- $builddate=dol_now();
- //$exportlink=$langs->trans("NotYetAvailable");
- }
- elseif ($modecompta=="BOOKKEEPING")
- {
- $name = $langs->trans("ReportInOut").', '.$langs->trans("ByPersonalizedAccountGroups");
- $calcmode=$langs->trans("CalcModeBookkeeping");
- //$calcmode.='<br>('.$langs->trans("SeeReportInDueDebtMode",'<a href="'.$_SERVER["PHP_SELF"].'?year_start='.$year_start.'&modecompta=CREANCES-DETTES">','</a>').')';
- //$calcmode.='<br>('.$langs->trans("SeeReportInInputOutputMode",'<a href="'.$_SERVER["PHP_SELF"].'?year_start='.$year_start.'&modecompta=RECETTES-DEPENSES">','</a>').')';
- $period=$form->selectDate($date_start, 'date_start', 0, 0, 0, '', 1, 0).' - '.$form->selectDate($date_end, 'date_end', 0, 0, 0, '', 1, 0);
- $arraylist=array('no'=>$langs->trans("No"), 'yes'=>$langs->trans("AccountWithNonZeroValues"), 'all'=>$langs->trans("All"));
- $period.=' '.$langs->trans("DetailByAccount").' '. $form->selectarray('showaccountdetail', $arraylist, $showaccountdetail, 0);
- $periodlink = $textprevyear . $textnextyear ;
- $exportlink = '';
- $description=$langs->trans("RulesResultBookkeepingPersonalized").
- $description.=' ('.$langs->trans("SeePageForSetup", DOL_URL_ROOT.'/accountancy/admin/categories_list.php?search_country_id='.$mysoc->country_id.'&mainmenu=accountancy&leftmenu=accountancy_admin', $langs->transnoentitiesnoconv("Accountancy").' / '.$langs->transnoentitiesnoconv("Setup").' / '.$langs->transnoentitiesnoconv("AccountingCategory")).')';
- //if (! empty($conf->global->FACTURE_DEPOSITS_ARE_JUST_PAYMENTS)) $description.= $langs->trans("DepositsAreNotIncluded");
- //else $description.= $langs->trans("DepositsAreIncluded");
- $builddate=dol_now();
- }
- report_header($name, '', $period, $periodlink, $description, $builddate, $exportlink, array('modecompta'=>$modecompta, 'action' => ''), $calcmode);
- if (! empty($conf->accounting->enabled) && $modecompta != 'BOOKKEEPING')
- {
- print info_admin($langs->trans("WarningReportNotReliable"), 0, 0, 1);
- }
- $moreforfilter='';
- print '<div class="div-table-responsive">';
- print '<table class="tagtable liste'.($moreforfilter?" listwithfilterbefore":"").'">'."\n";
- print '<tr class="liste_titre">';
- print '<th class="liste_titre">'.$langs->trans("AccountingCategory").'</th>';
- print '<th class="liste_titre"></th>';
- print '<th class="liste_titre" align="right">'.$langs->trans("PreviousPeriod").'</th>';
- print '<th class="liste_titre" align="right">'.$langs->trans("SelectedPeriod").'</th>';
- foreach($months as $k => $v){
- if (($k+1) >= $date_startmonth)
- {
- print '<th class="liste_titre width50" align="right" >'.$langs->trans('MonthShort'.sprintf("%02s",($k+1))).'</th>';
- }
- }
- foreach($months as $k => $v){
- if (($k+1) < $date_startmonth)
- {
- print '<th class="liste_titre width50" align="right" >'.$langs->trans('MonthShort'.sprintf("%02s",($k+1))).'</th>';
- }
- }
- print '</tr>';
- if ($modecompta == 'CREANCES-DETTES')
- {
- //if (! empty($date_start) && ! empty($date_end))
- // $sql.= " AND f.datef >= '".$db->idate($date_start)."' AND f.datef <= '".$db->idate($date_end)."'";
- }
- elseif ($modecompta=="RECETTES-DEPENSES")
- {
- //if (! empty($date_start) && ! empty($date_end))
- // $sql.= " AND p.datep >= '".$db->idate($date_start)."' AND p.datep <= '".$db->idate($date_end)."'";
- }
- elseif ($modecompta=="BOOKKEEPING")
- {
- // Get array of all report groups that are active
- $cats = $AccCat->getCats(); // WARNING: Computed groups must be after group they include
- /*
- $sql = 'SELECT DISTINCT t.numero_compte as nb FROM '.MAIN_DB_PREFIX.'accounting_bookkeeping as t, '.MAIN_DB_PREFIX.'accounting_account as aa';
- $sql.= " WHERE t.numero_compte = aa.account_number AND aa.fk_accounting_category = 0";
- if (! empty($date_start) && ! empty($date_end))
- $sql.= " AND t.doc_date >= '".$db->idate($date_start)."' AND t.doc_date <= '".$db->idate($date_end)."'";
- if (! empty($month)) {
- $sql .= " AND MONTH(t.doc_date) = " . $month;
- }
- $resql = $db->query($sql);
- if ($resql)
- {
- $num_rows = $db->num_rows($resql);
- if ($num_rows) {
- print '<div class="warning">Warning: There is '.$num_rows.' accounts in your ledger table that are not set into a reporting group</div>';
- $i = 0;
- //while ($i < $num) {
- // $obj = $db->fetch_object($resql);
- // $i++;
- //}
- }
- }
- else dol_print_error($db);
- */
- $j=1;
- $sommes = array();
- $totPerAccount = array();
- foreach ($cats as $cat) // Loop on each group
- {
- if (!empty($cat['category_type'])) // category calculed
- {
- // When we enter here, $sommes was filled by group of accounts
- $formula = $cat['formula'];
- print '<tr class="liste_total">';
- // Year NP
- print '<td class="liste_total width200">';
- print $cat['code'];
- print '</td><td>';
- print $cat['label'];
- print '</td>';
- $vars = array();
- // Previous Fiscal year (N-1)
- foreach($sommes as $code => $det){
- $vars[$code] = $det['NP'];
- }
- $result = strtr($formula, $vars);
- //var_dump($result);
- //$r = $AccCat->calculate($result);
- $r = dol_eval($result, 1);
- //var_dump($r);
- print '<td class="liste_total right">' . price($r) . '</td>';
- // Year N
- $code = $cat['code']; // code of categorie ('VTE', 'MAR', ...)
- $sommes[$code]['NP'] += $r;
- // Current fiscal year (N)
- if (is_array($sommes) && ! empty($sommes)){
- foreach($sommes as $code => $det){
- $vars[$code] = $det['N'];
- }
- }
- $result = strtr($formula, $vars);
- //$r = $AccCat->calculate($result);
- $r = dol_eval($result, 1);
- print '<td class="liste_total right">' . price($r) . '</td>';
- $sommes[$code]['N'] += $r;
- // Detail by month
- foreach($months as $k => $v)
- {
- if (($k+1) >= $date_startmonth)
- {
- foreach($sommes as $code => $det){
- $vars[$code] = $det['M'][$k];
- }
- $result = strtr($formula, $vars);
- //$r = $AccCat->calculate($result);
- $r = dol_eval($result, 1);
- print '<td class="liste_total right">' . price($r) . '</td>';
- $sommes[$code]['M'][$k] += $r;
- }
- }
- foreach($months as $k => $v)
- {
- if (($k+1) < $date_startmonth)
- {
- foreach($sommes as $code => $det){
- $vars[$code] = $det['M'][$k];
- }
- $result = strtr($formula, $vars);
- //$r = $AccCat->calculate($result);
- $r = dol_eval($result, 1);
- print '<td class="liste_total right">' . price($r) . '</td>';
- $sommes[$code]['M'][$k] += $r;
- }
- }
- print "</tr>\n";
- //var_dump($sommes);
- }
- else // normal category
- {
- $code = $cat['code']; // Category code we process
- $totCat = array();
- $totCat['NP'] = 0;
- $totCat['N'] = 0;
- $totCat['M'] = array();
- foreach($months as $k => $v)
- {
- $totCat['M'][$k] = 0;
- }
- // Set $cpts with array of accounts in the category/group
- $cpts = $AccCat->getCptsCat($cat['rowid']);
- $arrayofaccountforfilter=array();
- foreach($cpts as $i => $cpt) // Loop on each account.
- {
- $arrayofaccountforfilter[]=$cpt['account_number'];
- }
- // N-1
- if (! empty($arrayofaccountforfilter))
- {
- $return = $AccCat->getSumDebitCredit($arrayofaccountforfilter, $date_start_previous, $date_end_previous, $cpt['dc']?$cpt['dc']:0);
- if ($return < 0) {
- setEventMessages(null, $AccCat->errors, 'errors');
- $resultNP=0;
- } else {
- foreach($cpts as $i => $cpt) // Loop on each account.
- {
- $resultNP = empty($AccCat->sdcperaccount[$cpt['account_number']])?0:$AccCat->sdcperaccount[$cpt['account_number']];
- $totCat['NP'] += $resultNP;
- $sommes[$code]['NP'] += $resultNP;
- $totPerAccount[$cpt['account_number']]['NP'] = $resultNP;
- }
- }
- }
- // Set value into column N and month M ($totCat)
- // This make 12 calls for each accountancy account (12 monthes M)
- foreach($cpts as $i => $cpt) // Loop on each account.
- {
- // We make 1 loop for each account because we may want detail per account.
- // @TODO Optimize to ask a 'group by' account and a filter with account in (..., ...) in request
- // Each month
- $resultN = 0;
- foreach($months as $k => $v)
- {
- $monthtoprocess = $k+1; // ($k+1) is month 1, 2, ..., 12
- $yeartoprocess = $start_year;
- if (($k+1) < $start_month) $yeartoprocess++;
- //var_dump($monthtoprocess.'_'.$yeartoprocess);
- $return = $AccCat->getSumDebitCredit($cpt['account_number'], $date_start, $date_end, $cpt['dc']?$cpt['dc']:0, 'nofilter', $monthtoprocess, $yeartoprocess);
- if ($return < 0) {
- setEventMessages(null, $AccCat->errors, 'errors');
- $resultM=0;
- } else {
- $resultM=$AccCat->sdc;
- }
- $totCat['M'][$k] += $resultM;
- $sommes[$code]['M'][$k] += $resultM;
- $totPerAccount[$cpt['account_number']]['M'][$k] = $resultM;
- $resultN += $resultM;
- }
- $totCat['N'] += $resultN;
- $sommes[$code]['N'] += $resultN;
- $totPerAccount[$cpt['account_number']]['N'] = $resultN;
- }
- // Now output columns for row $code ('VTE', 'MAR', ...)
- print "<tr>";
- // Column group
- print '<td class="width200">';
- print $cat['code'];
- print '</td>';
- // Label of group
- print '<td>';
- print $cat['label'];
- if (count($cpts) > 0) // Show example of 5 first accounting accounts
- {
- $i=0;
- foreach($cpts as $cpt)
- {
- if ($i > 5)
- {
- print '...)';
- break;
- }
- if ($i > 0) print ', ';
- else print ' (';
- print $cpt['account_number'];
- $i++;
- }
- if ($i <= 5) print ')';
- }
- else
- {
- print ' - <span class="warning">'.$langs->trans("GroupIsEmptyCheckSetup").'</span>';
- }
- print '</td>';
- print '<td align="right">' . price($totCat['NP']) . '</td>';
- print '<td align="right">' . price($totCat['N']) . '</td>';
- // Each month
- foreach($totCat['M'] as $k => $v){
- if (($k+1) >= $date_startmonth) print '<td align="right">' . price($v) . '</td>';
- }
- foreach($totCat['M'] as $k => $v){
- if (($k+1) < $date_startmonth) print '<td align="right">' . price($v) . '</td>';
- }
- print "</tr>\n";
- // Loop on detail of all accounts to output the detail
- if ($showaccountdetail != 'no')
- {
- foreach($cpts as $i => $cpt)
- {
- $resultNP=$totPerAccount[$cpt['account_number']]['NP'];
- $resultN=$totPerAccount[$cpt['account_number']]['N'];
- if ($showaccountdetail == 'all' || $resultN > 0)
- {
- print '<tr>';
- print '<td></td>';
- print '<td class="tdoverflowmax200">';
- print ' ' . length_accountg($cpt['account_number']);
- print ' - ';
- print $cpt['account_label'];
- print '</td>';
- print '<td align="right">' . price($resultNP) . '</td>';
- print '<td align="right">' . price($resultN) . '</td>';
- // Make one call for each month
- foreach($months as $k => $v)
- {
- if (($k+1) >= $date_startmonth)
- {
- $resultM=$totPerAccount[$cpt['account_number']]['M'][$k];
- print '<td align="right">' . price($resultM) . '</td>';
- }
- }
- foreach($months as $k => $v)
- {
- if (($k+1) < $date_startmonth)
- {
- $resultM=$totPerAccount[$cpt['account_number']]['M'][$k];
- print '<td align="right">' . price($resultM) . '</td>';
- }
- }
- print "</tr>\n";
- }
- }
- }
- }
- }
- }
- print "</table>";
- print '</div>';
- // End of page
- llxFooter();
- $db->close();
|