dolibarr  13.0.2
purchasesjournal.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2007-2010 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2007-2010 Jean Heimburger <jean@tiaris.info>
4  * Copyright (C) 2011-2014 Juanjo Menent <jmenent@2byte.es>
5  * Copyright (C) 2012 Regis Houssin <regis.houssin@inodbox.com>
6  * Copyright (C) 2011-2012 Alexandre spangaro <aspangaro@open-dsi.fr>
7  * Copyright (C) 2013 Marcos García <marcosgdf@gmail.com>
8  * Copyright (C) 2018 Frédéric France <frederic.france@netlogic.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program. If not, see <https://www.gnu.org/licenses/>.
22  */
23 
29 global $mysoc;
30 
31 require '../../main.inc.php';
32 require_once DOL_DOCUMENT_ROOT.'/core/lib/report.lib.php';
33 require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
34 require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php';
35 require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.class.php';
36 
37 // Load translation files required by the page
38 $langs->loadlangs(array('companies', 'other', 'bills', 'compta'));
39 
40 $date_startmonth = GETPOST('date_startmonth');
41 $date_startday = GETPOST('date_startday');
42 $date_startyear = GETPOST('date_startyear');
43 $date_endmonth = GETPOST('date_endmonth');
44 $date_endday = GETPOST('date_endday');
45 $date_endyear = GETPOST('date_endyear');
46 
47 // Security check
48 if ($user->socid > 0) $socid = $user->socid;
49 if (!empty($conf->comptabilite->enabled)) $result = restrictedArea($user, 'compta', '', '', 'resultat');
50 if (!empty($conf->accounting->enabled)) $result = restrictedArea($user, 'accounting', '', '', 'comptarapport');
51 
52 
53 /*
54  * Actions
55  */
56 
57 // None
58 
59 
60 /*
61  * View
62  */
63 
64 $morequery = '&date_startyear='.$date_startyear.'&date_startmonth='.$date_startmonth.'&date_startday='.$date_startday.'&date_endyear='.$date_endyear.'&date_endmonth='.$date_endmonth.'&date_endday='.$date_endday;
65 
66 llxHeader('', $langs->trans("PurchasesJournal"), '', '', 0, 0, '', '', $morequery);
67 
68 $form = new Form($db);
69 
70 $year_current = strftime("%Y", dol_now());
71 $pastmonth = strftime("%m", dol_now()) - 1;
72 $pastmonthyear = $year_current;
73 if ($pastmonth == 0)
74 {
75  $pastmonth = 12;
76  $pastmonthyear--;
77 }
78 
79 $date_start = dol_mktime(0, 0, 0, $date_startmonth, $date_startday, $date_startyear);
80 $date_end = dol_mktime(23, 59, 59, $date_endmonth, $date_endday, $date_endyear);
81 
82 if (empty($date_start) || empty($date_end)) // We define date_start and date_end
83 {
84  $date_start = dol_get_first_day($pastmonthyear, $pastmonth, false);
85  $date_end = dol_get_last_day($pastmonthyear, $pastmonth, false);
86 }
87 
88 $name = $langs->trans("PurchasesJournal");
89 $periodlink = '';
90 $exportlink = '';
91 $builddate = dol_now();
92 $description = $langs->trans("DescPurchasesJournal").'<br>';
93 if (!empty($conf->global->FACTURE_DEPOSITS_ARE_JUST_PAYMENTS)) $description .= $langs->trans("DepositsAreNotIncluded");
94 else $description .= $langs->trans("DepositsAreIncluded");
95 $period = $form->selectDate($date_start, 'date_start', 0, 0, 0, '', 1, 0).' - '.$form->selectDate($date_end, 'date_end', 0, 0, 0, '', 1, 0);
96 
97 report_header($name, '', $period, $periodlink, $description, $builddate, $exportlink);
98 
99 $p = explode(":", $conf->global->MAIN_INFO_SOCIETE_COUNTRY);
100 $idpays = $p[0];
101 
102 
103 $sql = "SELECT f.rowid, f.ref_supplier, f.type, f.datef, f.libelle as label,";
104 $sql .= " fd.total_ttc, fd.tva_tx, fd.total_ht, fd.tva as total_tva, fd.product_type, fd.localtax1_tx, fd.localtax2_tx, fd.total_localtax1, fd.total_localtax2,";
105 $sql .= " s.rowid as socid, s.nom as name, s.code_compta_fournisseur,";
106 $sql .= " p.rowid as pid, p.ref as ref, p.accountancy_code_buy,";
107 $sql .= " ct.accountancy_code_buy as account_tva, ct.recuperableonly";
108 $sql .= " FROM ".MAIN_DB_PREFIX."facture_fourn_det as fd";
109 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_tva as ct ON fd.tva_tx = ct.taux AND fd.info_bits = ct.recuperableonly AND ct.fk_pays = ".((int) $idpays);
110 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON p.rowid = fd.fk_product";
111 $sql .= " JOIN ".MAIN_DB_PREFIX."facture_fourn as f ON f.rowid = fd.fk_facture_fourn";
112 $sql .= " JOIN ".MAIN_DB_PREFIX."societe as s ON s.rowid = f.fk_soc";
113 $sql .= " WHERE f.fk_statut > 0 AND f.entity IN (".getEntity('invoice').")";
114 if (!empty($conf->global->FACTURE_DEPOSITS_ARE_JUST_PAYMENTS)) $sql .= " AND f.type IN (0,1,2)";
115 else $sql .= " AND f.type IN (0,1,2,3)";
116 if ($date_start && $date_end) $sql .= " AND f.datef >= '".$db->idate($date_start)."' AND f.datef <= '".$db->idate($date_end)."'";
117 
118 // TODO Find a better trick to avoid problem with some mysql installations
119 if (in_array($db->type, array('mysql', 'mysqli'))) $db->query('SET SQL_BIG_SELECTS=1');
120 
121 $result = $db->query($sql);
122 if ($result)
123 {
124  $num = $db->num_rows($result);
125  // les variables
126  $cptfour = (($conf->global->ACCOUNTING_ACCOUNT_SUPPLIER != "") ? $conf->global->ACCOUNTING_ACCOUNT_SUPPLIER : $langs->trans("CodeNotDef"));
127  $cpttva = (!empty($conf->global->ACCOUNTING_VAT_BUY_ACCOUNT) ? $conf->global->ACCOUNTING_VAT_BUY_ACCOUNT : $langs->trans("CodeNotDef"));
128 
129  $tabfac = array();
130  $tabht = array();
131  $tabtva = array();
132  $tabttc = array();
133  $tablocaltax1 = array();
134  $tablocaltax2 = array();
135  $tabcompany = array();
136 
137  $i = 0;
138  while ($i < $num)
139  {
140  $obj = $db->fetch_object($result);
141  // contrôles
142  $compta_soc = (($obj->code_compta_fournisseur != "") ? $obj->code_compta_fournisseur : $cptfour);
143  $compta_prod = $obj->accountancy_code_buy;
144  if (empty($compta_prod))
145  {
146  if ($obj->product_type == 0) $compta_prod = (!empty($conf->global->ACCOUNTING_PRODUCT_BUY_ACCOUNT) ? $conf->global->ACCOUNTING_PRODUCT_BUY_ACCOUNT : $langs->trans("CodeNotDef"));
147  else $compta_prod = (!empty($conf->global->ACCOUNTING_SERVICE_BUY_ACCOUNT) ? $conf->global->ACCOUNTING_SERVICE_BUY_ACCOUNT : $langs->trans("CodeNotDef"));
148  }
149  $compta_tva = (!empty($obj->account_tva) ? $obj->account_tva : $cpttva);
150  $compta_localtax1 = (!empty($obj->account_localtax1) ? $obj->account_localtax1 : $langs->trans("CodeNotDef"));
151  $compta_localtax2 = (!empty($obj->account_localtax2) ? $obj->account_localtax2 : $langs->trans("CodeNotDef"));
152 
153  $account_localtax1 = getLocalTaxesFromRate($obj->tva_tx, 1, $mysoc, $obj->thirdparty);
154  $compta_localtax1 = (!empty($account_localtax1[2]) ? $account_localtax1[2] : $langs->trans("CodeNotDef"));
155  $account_localtax2 = getLocalTaxesFromRate($obj->tva_tx, 2, $mysoc, $obj->thirdparty);
156  $compta_localtax2 = (!empty($account_localtax2[2]) ? $account_localtax2[2] : $langs->trans("CodeNotDef"));
157 
158  $tabfac[$obj->rowid]["date"] = $obj->datef;
159  $tabfac[$obj->rowid]["ref"] = $obj->ref_supplier;
160  $tabfac[$obj->rowid]["type"] = $obj->type;
161  $tabfac[$obj->rowid]["lib"] = $obj->label;
162  $tabttc[$obj->rowid][$compta_soc] += $obj->total_ttc;
163  $tabht[$obj->rowid][$compta_prod] += $obj->total_ht;
164  if ($obj->recuperableonly != 1) $tabtva[$obj->rowid][$compta_tva] += $obj->total_tva;
165  $tablocaltax1[$obj->rowid][$compta_localtax1] += $obj->total_localtax1;
166  $tablocaltax2[$obj->rowid][$compta_localtax2] += $obj->total_localtax2;
167  $tabcompany[$obj->rowid] = array('id'=>$obj->socid, 'name'=>$obj->name);
168 
169  $i++;
170  }
171 } else {
172  dol_print_error($db);
173 }
174 
175 /*
176  * Show result array
177  */
178 print "<table class=\"noborder\" width=\"100%\">";
179 print "<tr class=\"liste_titre\">";
181 print "<td>".$langs->trans("Date")."</td>";
182 print "<td>".$langs->trans("Piece").' ('.$langs->trans("InvoiceRef").")</td>";
183 print "<td>".$langs->trans("Account")."</td>";
184 print "<td>".$langs->trans("Type")."</td><td class='right'>".$langs->trans("Debit")."</td><td class='right'>".$langs->trans("Credit")."</td>";
185 print "</tr>\n";
186 
187 
188 $invoicestatic = new FactureFournisseur($db);
189 $companystatic = new Fournisseur($db);
190 
191 foreach ($tabfac as $key => $val)
192 {
193  $invoicestatic->id = $key;
194  $invoicestatic->ref = $val["ref"];
195  $invoicestatic->type = $val["type"];
196 
197  $companystatic->id = $tabcompany[$key]['id'];
198  $companystatic->name = $tabcompany[$key]['name'];
199 
200  $lines = array(
201  array(
202  'var' => $tabht[$key],
203  'label' => $langs->trans('Products'),
204  ),
205  array(
206  'var' => $tabtva[$key],
207  'label' => $langs->trans('VAT')
208  ),
209  array(
210  'var' => $tablocaltax1[$key],
211  'label' => $langs->transcountry('LT1', $mysoc->country_code)
212  ),
213  array(
214  'var' => $tablocaltax2[$key],
215  'label' => $langs->transcountry('LT2', $mysoc->country_code)
216  ),
217  array(
218  'var' => $tabttc[$key],
219  'label' => $langs->trans('ThirdParty').' ('.$companystatic->getNomUrl(0, 'supplier', 16).')',
220  'nomtcheck' => true,
221  'inv' => true
222  )
223  );
224 
225  foreach ($lines as $line)
226  {
227  foreach ($line['var'] as $k => $mt)
228  {
229  if (isset($line['nomtcheck']) || $mt)
230  {
231  print '<tr class="oddeven">';
232  print "<td>".dol_print_date($db->jdate($val["date"]))."</td>";
233  print "<td>".$invoicestatic->getNomUrl(1)."</td>";
234  print "<td>".$k."</td><td>".$line['label']."</td>";
235 
236  if (isset($line['inv']))
237  {
238  print '<td class="right">'.($mt < 0 ?price(-$mt) : '')."</td>";
239  print '<td class="right">'.($mt >= 0 ?price($mt) : '')."</td>";
240  } else {
241  print '<td class="right">'.($mt >= 0 ?price($mt) : '')."</td>";
242  print '<td class="right">'.($mt < 0 ?price(-$mt) : '')."</td>";
243  }
244 
245  print "</tr>";
246  }
247  }
248  }
249 }
250 
251 print "</table>";
252 
253 // End of page
254 llxFooter();
255 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm= 'auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
dol_now($mode= 'auto')
Return date for now.
report_header($reportname, $notused, $period, $periodlink, $description, $builddate, $exportlink= '', $moreparam=array(), $calcmode= '', $varlink= '')
Show header of a report.
Definition: report.lib.php:41
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
Definition: date.lib.php:481
Class to manage suppliers invoices.
Class to manage suppliers.
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...
llxHeader()
Empty header.
Definition: wrapper.php:45
Class to manage generation of HTML components Only common components must be here.
restrictedArea($user, $features, $objectid=0, $tableandshare= '', $feature2= '', $dbt_keyfield= 'fk_soc', $dbt_select= 'rowid', $isdraft=0)
Check permissions of a user to show a page and an object.
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
Definition: date.lib.php:498
print
Draft customers invoices.
Definition: index.php:89
dol_print_error($db= '', $error= '', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getLocalTaxesFromRate($vatrate, $local, $buyer, $seller, $firstparamisid=0)
Get type and rate of localtaxes for a particular vat rate/country of a thirdparty.
llxFooter()
Empty footer.
Definition: wrapper.php:59