dolibarr  16.0.5
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) {
49  $socid = $user->socid;
50 }
51 if (isModEnabled('comptabilite')) {
52  $result = restrictedArea($user, 'compta', '', '', 'resultat');
53 }
54 if (isModEnabled('accounting')) {
55  $result = restrictedArea($user, 'accounting', '', '', 'comptarapport');
56 }
57 
58 
59 /*
60  * Actions
61  */
62 
63 // None
64 
65 
66 /*
67  * View
68  */
69 
70 $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;
71 
72 llxHeader('', $langs->trans("PurchasesJournal"), '', '', 0, 0, '', '', $morequery);
73 
74 $form = new Form($db);
75 
76 $year_current = strftime("%Y", dol_now());
77 $pastmonth = strftime("%m", dol_now()) - 1;
78 $pastmonthyear = $year_current;
79 if ($pastmonth == 0) {
80  $pastmonth = 12;
81  $pastmonthyear--;
82 }
83 
84 $date_start = dol_mktime(0, 0, 0, $date_startmonth, $date_startday, $date_startyear);
85 $date_end = dol_mktime(23, 59, 59, $date_endmonth, $date_endday, $date_endyear);
86 
87 if (empty($date_start) || empty($date_end)) { // We define date_start and date_end
88  $date_start = dol_get_first_day($pastmonthyear, $pastmonth, false);
89  $date_end = dol_get_last_day($pastmonthyear, $pastmonth, false);
90 }
91 
92 $name = $langs->trans("PurchasesJournal");
93 $periodlink = '';
94 $exportlink = '';
95 $builddate = dol_now();
96 $description = $langs->trans("DescPurchasesJournal").'<br>';
97 if (!empty($conf->global->FACTURE_SUPPLIER_DEPOSITS_ARE_JUST_PAYMENTS)) {
98  $description .= $langs->trans("DepositsAreNotIncluded");
99 } else {
100  $description .= $langs->trans("DepositsAreIncluded");
101 }
102 $period = $form->selectDate($date_start, 'date_start', 0, 0, 0, '', 1, 0).' - '.$form->selectDate($date_end, 'date_end', 0, 0, 0, '', 1, 0);
103 
104 report_header($name, '', $period, $periodlink, $description, $builddate, $exportlink);
105 
106 $p = explode(":", $conf->global->MAIN_INFO_SOCIETE_COUNTRY);
107 $idpays = $p[0];
108 
109 
110 $sql = "SELECT f.rowid, f.ref_supplier, f.type, f.datef, f.libelle as label,";
111 $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,";
112 $sql .= " s.rowid as socid, s.nom as name, s.code_compta_fournisseur,";
113 $sql .= " p.rowid as pid, p.ref as ref, p.accountancy_code_buy,";
114 $sql .= " ct.accountancy_code_buy as account_tva, ct.recuperableonly";
115 $sql .= " FROM ".MAIN_DB_PREFIX."facture_fourn_det as fd";
116 $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);
117 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON p.rowid = fd.fk_product";
118 $sql .= " JOIN ".MAIN_DB_PREFIX."facture_fourn as f ON f.rowid = fd.fk_facture_fourn";
119 $sql .= " JOIN ".MAIN_DB_PREFIX."societe as s ON s.rowid = f.fk_soc";
120 $sql .= " WHERE f.fk_statut > 0 AND f.entity IN (".getEntity('invoice').")";
121 if (!empty($conf->global->FACTURE_SUPPLIER_DEPOSITS_ARE_JUST_PAYMENTS)) {
122  $sql .= " AND f.type IN (0,1,2)";
123 } else {
124  $sql .= " AND f.type IN (0,1,2,3)";
125 }
126 if ($date_start && $date_end) {
127  $sql .= " AND f.datef >= '".$db->idate($date_start)."' AND f.datef <= '".$db->idate($date_end)."'";
128 }
129 
130 // TODO Find a better trick to avoid problem with some mysql installations
131 if (in_array($db->type, array('mysql', 'mysqli'))) {
132  $db->query('SET SQL_BIG_SELECTS=1');
133 }
134 
135 $result = $db->query($sql);
136 if ($result) {
137  $num = $db->num_rows($result);
138  // les variables
139  $cptfour = (($conf->global->ACCOUNTING_ACCOUNT_SUPPLIER != "") ? $conf->global->ACCOUNTING_ACCOUNT_SUPPLIER : $langs->trans("CodeNotDef"));
140  $cpttva = (!empty($conf->global->ACCOUNTING_VAT_BUY_ACCOUNT) ? $conf->global->ACCOUNTING_VAT_BUY_ACCOUNT : $langs->trans("CodeNotDef"));
141 
142  $tabfac = array();
143  $tabht = array();
144  $tabtva = array();
145  $tabttc = array();
146  $tablocaltax1 = array();
147  $tablocaltax2 = array();
148  $tabcompany = array();
149 
150  $i = 0;
151  while ($i < $num) {
152  $obj = $db->fetch_object($result);
153  // contrôles
154  $compta_soc = (($obj->code_compta_fournisseur != "") ? $obj->code_compta_fournisseur : $cptfour);
155  $compta_prod = $obj->accountancy_code_buy;
156  if (empty($compta_prod)) {
157  if ($obj->product_type == 0) {
158  $compta_prod = (!empty($conf->global->ACCOUNTING_PRODUCT_BUY_ACCOUNT) ? $conf->global->ACCOUNTING_PRODUCT_BUY_ACCOUNT : $langs->trans("CodeNotDef"));
159  } else {
160  $compta_prod = (!empty($conf->global->ACCOUNTING_SERVICE_BUY_ACCOUNT) ? $conf->global->ACCOUNTING_SERVICE_BUY_ACCOUNT : $langs->trans("CodeNotDef"));
161  }
162  }
163  $compta_tva = (!empty($obj->account_tva) ? $obj->account_tva : $cpttva);
164  $compta_localtax1 = (!empty($obj->account_localtax1) ? $obj->account_localtax1 : $langs->trans("CodeNotDef"));
165  $compta_localtax2 = (!empty($obj->account_localtax2) ? $obj->account_localtax2 : $langs->trans("CodeNotDef"));
166 
167  $account_localtax1 = getLocalTaxesFromRate($obj->tva_tx, 1, $mysoc, $obj->thirdparty);
168  $compta_localtax1 = (!empty($account_localtax1[2]) ? $account_localtax1[2] : $langs->trans("CodeNotDef"));
169  $account_localtax2 = getLocalTaxesFromRate($obj->tva_tx, 2, $mysoc, $obj->thirdparty);
170  $compta_localtax2 = (!empty($account_localtax2[2]) ? $account_localtax2[2] : $langs->trans("CodeNotDef"));
171 
172  $tabfac[$obj->rowid]["date"] = $obj->datef;
173  $tabfac[$obj->rowid]["ref"] = $obj->ref_supplier;
174  $tabfac[$obj->rowid]["type"] = $obj->type;
175  $tabfac[$obj->rowid]["lib"] = $obj->label;
176  $tabttc[$obj->rowid][$compta_soc] += $obj->total_ttc;
177  $tabht[$obj->rowid][$compta_prod] += $obj->total_ht;
178  if ($obj->recuperableonly != 1) {
179  $tabtva[$obj->rowid][$compta_tva] += $obj->total_tva;
180  }
181  $tablocaltax1[$obj->rowid][$compta_localtax1] += $obj->total_localtax1;
182  $tablocaltax2[$obj->rowid][$compta_localtax2] += $obj->total_localtax2;
183  $tabcompany[$obj->rowid] = array('id'=>$obj->socid, 'name'=>$obj->name);
184 
185  $i++;
186  }
187 } else {
188  dol_print_error($db);
189 }
190 
191 /*
192  * Show result array
193  */
194 print "<table class=\"noborder\" width=\"100%\">";
195 print "<tr class=\"liste_titre\">";
197 print "<td>".$langs->trans("Date")."</td>";
198 print "<td>".$langs->trans("Piece").' ('.$langs->trans("InvoiceRef").")</td>";
199 print "<td>".$langs->trans("Account")."</td>";
200 print "<td>".$langs->trans("Type")."</td><td class='right'>".$langs->trans("Debit")."</td><td class='right'>".$langs->trans("Credit")."</td>";
201 print "</tr>\n";
202 
203 
204 $invoicestatic = new FactureFournisseur($db);
205 $companystatic = new Fournisseur($db);
206 
207 foreach ($tabfac as $key => $val) {
208  $invoicestatic->id = $key;
209  $invoicestatic->ref = $val["ref"];
210  $invoicestatic->type = $val["type"];
211 
212  $companystatic->id = $tabcompany[$key]['id'];
213  $companystatic->name = $tabcompany[$key]['name'];
214 
215  $lines = array(
216  array(
217  'var' => $tabht[$key],
218  'label' => $langs->trans('Products'),
219  ),
220  array(
221  'var' => $tabtva[$key],
222  'label' => $langs->trans('VAT')
223  ),
224  array(
225  'var' => $tablocaltax1[$key],
226  'label' => $langs->transcountry('LT1', $mysoc->country_code)
227  ),
228  array(
229  'var' => $tablocaltax2[$key],
230  'label' => $langs->transcountry('LT2', $mysoc->country_code)
231  ),
232  array(
233  'var' => $tabttc[$key],
234  'label' => $langs->trans('ThirdParty').' ('.$companystatic->getNomUrl(0, 'supplier', 16).')',
235  'nomtcheck' => true,
236  'inv' => true
237  )
238  );
239 
240  foreach ($lines as $line) {
241  foreach ($line['var'] as $k => $mt) {
242  if (isset($line['nomtcheck']) || $mt) {
243  print '<tr class="oddeven">';
244  print "<td>".dol_print_date($db->jdate($val["date"]))."</td>";
245  print "<td>".$invoicestatic->getNomUrl(1)."</td>";
246  print "<td>".$k."</td><td>".$line['label']."</td>";
247 
248  if (isset($line['inv'])) {
249  print '<td class="right">'.($mt < 0 ?price(-$mt) : '')."</td>";
250  print '<td class="right">'.($mt >= 0 ?price($mt) : '')."</td>";
251  } else {
252  print '<td class="right">'.($mt >= 0 ?price($mt) : '')."</td>";
253  print '<td class="right">'.($mt < 0 ?price(-$mt) : '')."</td>";
254  }
255 
256  print "</tr>";
257  }
258  }
259  }
260 }
261 
262 print "</table>";
263 
264 // End of page
265 llxFooter();
266 $db->close();
getLocalTaxesFromRate
getLocalTaxesFromRate($vatrate, $local, $buyer, $seller, $firstparamisid=0)
Get type and rate of localtaxes for a particular vat rate/country of a thirdparty.
Definition: functions.lib.php:6097
restrictedArea
restrictedArea($user, $features, $objectid=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
Definition: security.lib.php:234
llxFooter
llxFooter()
Empty footer.
Definition: wrapper.php:73
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
FactureFournisseur
Class to manage suppliers invoices.
Definition: fournisseur.facture.class.php:53
dol_print_error
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
Definition: functions.lib.php:4844
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
Fournisseur
Class to manage suppliers.
Definition: fournisseur.class.php:34
dol_get_first_day
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
Definition: date.lib.php:551
dol_get_last_day
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
Definition: date.lib.php:570
isModEnabled
isModEnabled($module)
Is Dolibarr module enabled.
Definition: functions.lib.php:105
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
dol_now
dol_now($mode='auto')
Return date for now.
Definition: functions.lib.php:2845
price
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.
Definition: functions.lib.php:5541
dol_mktime
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...
Definition: functions.lib.php:2757
report_header
report_header($reportname, $notused, $period, $periodlink, $description, $builddate, $exportlink='', $moreparam=array(), $calcmode='', $varlink='')
Show header of a report.
Definition: report.lib.php:41
llxHeader
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:59