123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- <?php
- /* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
- * Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
- * Copyright (C) 2014 Ferran Marcet <fmarcet@2byte.es>
- *
- * 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/tva/index.php
- * \ingroup tax
- * \brief Index page of VAT reports
- */
- require '../../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/tax.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/compta/tva/class/tva.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
- $langs->load("other");
- $langs->load("compta");
- $langs->load("banks");
- $langs->load("bills");
- $year=GETPOST("year","int");
- if ($year == 0)
- {
- $year_current = strftime("%Y",time());
- $year_start = $year_current;
- } else {
- $year_current = $year;
- $year_start = $year;
- }
- // Security check
- $socid = isset($_GET["socid"])?$_GET["socid"]:'';
- if ($user->societe_id) $socid=$user->societe_id;
- $result = restrictedArea($user, 'tax', '', '', 'charges');
- // Define modetax (0 or 1)
- // 0=normal, 1=option vat for services is on debit
- $modetax = $conf->global->TAX_MODE;
- if (isset($_GET["modetax"])) $modetax=$_GET["modetax"];
- /**
- * print function
- *
- * @param DoliDB $db Database handler
- * @param string $sql SQL Request
- * @param string $date Date
- * @return void
- */
- function pt ($db, $sql, $date)
- {
- global $conf, $bc,$langs;
- $result = $db->query($sql);
- if ($result)
- {
- $num = $db->num_rows($result);
- $i = 0;
- $total = 0;
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- print '<td class="nowrap" width="60%">'.$date.'</td>';
- print '<td align="right">'.$langs->trans("Amount").'</td>';
- print '<td> </td>'."\n";
- print "</tr>\n";
- $var=True;
- while ($i < $num)
- {
- $obj = $db->fetch_object($result);
- print '<tr class="oddeven">';
- print '<td class="nowrap">'.$obj->dm."</td>\n";
- $total = $total + $obj->mm;
- print '<td class="nowrap" align="right">'.price($obj->mm)."</td><td > </td>\n";
- print "</tr>\n";
- $i++;
- }
- print '<tr class="liste_total"><td align="right">'.$langs->trans("Total")." :</td><td class=\"nowrap\" align=\"right\"><b>".price($total)."</b></td><td> </td></tr>";
- print "</table>";
- $db->free($result);
- }
- else {
- dol_print_error($db);
- }
- }
- /*
- * View
- */
- llxHeader();
- $tva = new Tva($db);
- $textprevyear="<a href=\"index.php?year=" . ($year_current-1) . "\">".img_previous($langs->trans("Previous"), 'class="valignbottom"')."</a>";
- $textnextyear=" <a href=\"index.php?year=" . ($year_current+1) . "\">".img_next($langs->trans("Next"), 'class="valignbottom"')."</a>";
- print $conf->dol_optimize_smallscreen;
- print load_fiche_titre($langs->transcountry("VAT", $mysoc->country_code), $textprevyear." ".$langs->trans("Year")." ".$year_start." ".$textnextyear, 'title_accountancy.png');
- print $langs->trans("VATReportBuildWithOptionDefinedInModule").'<br>';
- print '('.$langs->trans("TaxModuleSetupToModifyRules",DOL_URL_ROOT.'/admin/taxes.php').')<br>';
- print '<br>';
- print '<div class="fichecenter"><div class="fichethirdleft">';
- print load_fiche_titre($langs->trans("VATSummary"), '', '');
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre">';
- print '<td width="30%">'.$langs->trans("Year")." ".$y.'</td>';
- print '<td align="right">'.$langs->trans("VATToPay").'</td>';
- print '<td align="right">'.$langs->trans("VATToCollect").'</td>';
- print '<td align="right">'.$langs->trans("TotalToPay").'</td>';
- print '<td> </td>'."\n";
- print '</tr>'."\n";
- $y = $year_current ;
- $var=True;
- $total=0; $subtotalcoll=0; $subtotalpaye=0; $subtotal=0;
- $i=0;
- for ($m = 1 ; $m < 13 ; $m++ )
- {
- $coll_listsell = vat_by_date($db, $y, 0, 0, 0, $modetax, 'sell', $m);
- $coll_listbuy = vat_by_date($db, $y, 0, 0, 0, $modetax, 'buy', $m);
- $action = "tva";
- $object = array(&$coll_listsell, &$coll_listbuy);
- $parameters["mode"] = $modetax;
- $parameters["year"] = $y;
- $parameters["month"] = $m;
- $parameters["type"] = 'vat';
- // Initialize technical object to manage hooks of expenses. Note that conf->hooks_modules contains array array
- $hookmanager->initHooks(array('externalbalance'));
- $reshook=$hookmanager->executeHooks('addVatLine',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks
- if (! is_array($coll_listbuy) && $coll_listbuy == -1)
- {
- $langs->load("errors");
- print '<tr><td colspan="5">'.$langs->trans("ErrorNoAccountancyModuleLoaded").'</td></tr>';
- break;
- }
- if (! is_array($coll_listbuy) && $coll_listbuy == -2)
- {
- print '<tr><td colspan="5">'.$langs->trans("FeatureNotYetAvailable").'</td></tr>';
- break;
- }
- print '<tr class="oddeven">';
- print '<td class="nowrap"><a href="quadri_detail.php?leftmenu=tax_vat&month='.$m.'&year='.$y.'">'.dol_print_date(dol_mktime(0,0,0,$m,1,$y),"%b %Y").'</a></td>';
- $x_coll = 0;
- foreach($coll_listsell as $vatrate=>$val)
- {
- $x_coll+=$val['vat'];
- }
- $subtotalcoll = $subtotalcoll + $x_coll;
- print "<td class=\"nowrap\" align=\"right\">".price($x_coll)."</td>";
- $x_paye = 0;
- foreach($coll_listbuy as $vatrate=>$val)
- {
- $x_paye+=$val['vat'];
- }
- $subtotalpaye = $subtotalpaye + $x_paye;
- print "<td class=\"nowrap\" align=\"right\">".price($x_paye)."</td>";
- $diff = $x_coll - $x_paye;
- $total = $total + $diff;
- $subtotal = $subtotal + $diff;
- print "<td class=\"nowrap\" align=\"right\">".price($diff)."</td>\n";
- print "<td> </td>\n";
- print "</tr>\n";
- $i++;
- if ($i > 2) {
- print '<tr class="liste_total">';
- print '<td align="right"><a href="quadri_detail.php?leftmenu=tax_vat&q='.($m/3).'&year='.$y.'">'.$langs->trans("SubTotal").'</a>:</td>';
- print '<td class="nowrap" align="right">'.price($subtotalcoll).'</td>';
- print '<td class="nowrap" align="right">'.price($subtotalpaye).'</td>';
- print '<td class="nowrap" align="right">'.price($subtotal).'</td>';
- print '<td> </td></tr>';
- $i = 0;
- $subtotalcoll=0; $subtotalpaye=0; $subtotal=0;
- }
- }
- print '<tr class="liste_total"><td align="right" colspan="3">'.$langs->trans("TotalToPay").':</td><td class="nowrap" align="right">'.price($total).'</td>';
- print "<td> </td>\n";
- print '</tr>';
- print '</table>';
- print '</div><div class="fichetwothirdright"><div class="ficheaddleft">';
- print load_fiche_titre($langs->trans("VATPaid"), '', '');
- /*
- * Payed
- */
- $sql = "SELECT SUM(amount) as mm, date_format(f.datep,'%Y-%m') as dm";
- $sql.= " FROM ".MAIN_DB_PREFIX."tva as f";
- $sql.= " WHERE f.entity = ".$conf->entity;
- $sql.= " AND f.datep >= '".$db->idate(dol_get_first_day($y,1,false))."'";
- $sql.= " AND f.datep <= '".$db->idate(dol_get_last_day($y,12,false))."'";
- $sql.= " GROUP BY dm ORDER BY dm ASC";
- pt($db, $sql,$langs->trans("Year")." $y");
- print '<br>';
- if (! empty($conf->global->MAIN_FEATURES_LEVEL))
- {
- /*
- * Recap
- */
- print load_fiche_titre($langs->trans("VATRecap"), '', ''); // need to add translation
- $sql1 = "SELECT SUM(amount) as mm, date_format(f.datev,'%Y') as dm";
- $sql1 .= " FROM " . MAIN_DB_PREFIX . "tva as f";
- $sql1 .= " WHERE f.entity = " . $conf->entity;
- $sql1 .= " AND f.datev >= '" . $db->idate(dol_get_first_day($y, 1, false)) . "'";
- $sql1 .= " AND f.datev <= '" . $db->idate(dol_get_last_day($y, 12, false)) . "'";
- $sql1 .= " GROUP BY dm ORDER BY dm ASC";
- $result = $db->query($sql1);
- if ($result) {
- $obj = $db->fetch_object($result);
- print '<table class="noborder" width="100%">';
- print "<tr>";
- print '<td align="right">' . $langs->trans("VATDue") . '</td>'; // need to add translation
- print '<td class="nowrap" align="right">' . price(price2num($total, 'MT')) . '</td>';
- print "</tr>\n";
- print "<tr>";
- print '<td align="right">' . $langs->trans("VATPaid") . '</td>';
- print '<td class="nowrap" align="right">' . price(price2num($obj->mm, 'MT')) . "</td>\n";
- print "</tr>\n";
- $restopay = $total - $obj->mm;
- print "<tr>";
- print '<td align="right">' . $langs->trans("VATRestopay") . '</td>'; // need to add translation
- print '<td class="nowrap" align="right">' . price(price2num($restopay, 'MT')) . '</td>';
- print "</tr>\n";
- print '</table>';
- }
- }
- print '</div></div>';
- llxFooter();
- $db->close();
|