dolibarr 24.0.0-beta
sellsjournal.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-2025 Alexandre Spangaro <aspangaro@open-dsi.fr>
7 * Copyright (C) 2012 Cédric Salvador <csalvador@gpcsolutions.fr>
8 * Copyright (C) 2013 Marcos García <marcosgdf@gmail.com>
9 * Copyright (C) 2014 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
10 * Copyright (C) 2018-2025 Frédéric France <frederic.france@free.fr>
11 * Copyright (C) 2024-2026 MDW <mdeweerd@users.noreply.github.com>
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 3 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program. If not, see <https://www.gnu.org/licenses/>.
25 */
26
32global $mysoc;
33
34// Load Dolibarr environment
35require '../../main.inc.php';
36require_once DOL_DOCUMENT_ROOT.'/core/lib/report.lib.php';
37require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
38require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
39require_once DOL_DOCUMENT_ROOT.'/societe/class/client.class.php';
40
50// Load translation files required by the page
51$langs->loadLangs(array('companies', 'other', 'bills', 'compta'));
52
53$date_startmonth = GETPOST('date_startmonth');
54$date_startday = GETPOST('date_startday');
55$date_startyear = GETPOST('date_startyear');
56$date_endmonth = GETPOST('date_endmonth');
57$date_endday = GETPOST('date_endday');
58$date_endyear = GETPOST('date_endyear');
59
60// Security check
61if ($user->socid > 0) {
62 $socid = $user->socid;
63}
64
65// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
66$hookmanager->initHooks(['selljournallist']);
67
68if (isModEnabled('comptabilite')) {
69 $result = restrictedArea($user, 'compta', '', '', 'resultat');
70}
71if (isModEnabled('accounting')) {
72 $result = restrictedArea($user, 'accounting', '', '', 'comptarapport');
73}
74
75/*
76 * Actions
77 */
78
79// None
80
81
82
83/*
84 * View
85 */
86
87$form = new Form($db);
88
89$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;
90
91llxHeader('', $langs->trans("SellsJournal"), '', '', 0, 0, '', '', $morequery);
92
93
94$year_current = (int) dol_print_date(dol_now('gmt'), "%Y", 'gmt');
95//$pastmonth = strftime("%m", dol_now()) - 1;
96$pastmonth = (int) dol_print_date(dol_now(), "%m") - 1;
97$pastmonthyear = $year_current;
98if ($pastmonth == 0) {
99 $pastmonth = 12;
100 $pastmonthyear--;
101}
102
103$date_start = dol_mktime(0, 0, 0, (int) $date_startmonth, (int) $date_startday, (int) $date_startyear);
104$date_end = dol_mktime(23, 59, 59, (int) $date_endmonth, (int) $date_endday, (int) $date_endyear);
105
106if (empty($date_start) || empty($date_end)) { // We define date_start and date_end
107 $date_start = dol_get_first_day($pastmonthyear, $pastmonth, false);
108 $date_end = dol_get_last_day($pastmonthyear, $pastmonth, false);
109}
110
111$name = $langs->trans("SellsJournal");
112$periodlink = '';
113$exportlink = '';
114$builddate = dol_now();
115$description = $langs->trans("DescSellsJournal").'<br>';
116if (getDolGlobalString('FACTURE_DEPOSITS_ARE_JUST_PAYMENTS')) {
117 $description .= $langs->trans("DepositsAreNotIncluded");
118} else {
119 $description .= $langs->trans("DepositsAreIncluded");
120}
121$period = $form->selectDate($date_start, 'date_start', 0, 0, 0, '', 1, 0).' - '.$form->selectDate($date_end, 'date_end', 0, 0, 0, '', 1, 0);
122report_header($name, '', $period, $periodlink, $description, $builddate, $exportlink);
123
124$idpays = $mysoc->country_id;
125
126$sql = "SELECT f.rowid, f.ref, f.type, f.datef, f.ref_client, f.situation_cycle_ref,";
127$sql .= " fd.product_type, fd.total_ht, fd.total_tva, fd.tva_tx, fd.total_ttc, fd.localtax1_tx, fd.localtax2_tx, fd.total_localtax1, fd.total_localtax2, fd.rowid as id, fd.situation_percent,";
128$sql .= " s.rowid as socid, s.nom as name, s.code_compta as code_compta_client, s.client,";
129$sql .= " p.rowid as pid, p.ref as pref,";
130if (getDolGlobalString('MAIN_PRODUCT_PERENTITY_SHARED')) {
131 $sql .= " ppe.accountancy_code_sell,";
132} else {
133 $sql .= " p.accountancy_code_sell,";
134}
135$sql .= " ct.accountancy_code_sell as account_tva, ct.recuperableonly";
136$sql .= " FROM ".MAIN_DB_PREFIX."facturedet as fd";
137$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON p.rowid = fd.fk_product";
138if (getDolGlobalString('MAIN_PRODUCT_PERENTITY_SHARED')) {
139 $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "product_perentity as ppe ON ppe.fk_product = p.rowid AND ppe.entity = " . ((int) $conf->entity);
140}
141$sql .= " JOIN ".MAIN_DB_PREFIX."facture as f ON f.rowid = fd.fk_facture";
142$sql .= " JOIN ".MAIN_DB_PREFIX."societe as s ON s.rowid = f.fk_soc";
143$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_tva ct ON fd.tva_tx = ct.taux AND fd.info_bits = ct.recuperableonly AND ct.fk_pays = ".((int) $idpays);
144$sql .= " WHERE f.entity IN (".getEntity('invoice').")";
145$sql .= " AND ct.entity IN (".getEntity('invoice').")";
146$sql .= " AND f.fk_statut > 0";
147if (getDolGlobalString('FACTURE_DEPOSITS_ARE_JUST_PAYMENTS')) {
148 $sql .= " AND f.type IN (".Facture::TYPE_STANDARD.",".Facture::TYPE_REPLACEMENT.",".Facture::TYPE_CREDIT_NOTE.",".Facture::TYPE_SITUATION.")";
149} else {
150 $sql .= " AND f.type IN (".Facture::TYPE_STANDARD.",".Facture::TYPE_STANDARD.",".Facture::TYPE_CREDIT_NOTE.",".Facture::TYPE_DEPOSIT.",".Facture::TYPE_SITUATION.")";
151}
152
153$sql .= " AND fd.product_type IN (0,1)";
154if ($date_start && $date_end) {
155 $sql .= " AND f.datef >= '".$db->idate($date_start)."' AND f.datef <= '".$db->idate($date_end)."'";
156}
157$sql .= " ORDER BY f.rowid";
158
159// TODO Find a better trick to avoid problem with some mysql installations
160if (in_array($db->type, array('mysql', 'mysqli'))) {
161 $db->query('SET SQL_BIG_SELECTS=1');
162}
163
164$tabfac = array();
165$tabht = array();
166$tabtva = array();
167$tablocaltax1 = array();
168$tablocaltax2 = array();
169$tabttc = array();
170$tabcompany = array();
171
172$result = $db->query($sql);
173if ($result) {
174 $account_localtax1 = 0;
175 $account_localtax2 = 0;
176
177 $num = $db->num_rows($result);
178 $i = 0;
179 $resligne = array();
180 while ($i < $num) {
181 $obj = $db->fetch_object($result);
182 // les variables
183 $cptcli = getDolGlobalString('ACCOUNTING_ACCOUNT_CUSTOMER', $langs->trans("CodeNotDef"));
184 $compta_soc = (!empty($obj->code_compta_client) ? $obj->code_compta_client : $cptcli);
185 $compta_prod = $obj->accountancy_code_sell;
186 if (empty($compta_prod)) {
187 if ($obj->product_type == 0) {
188 $compta_prod = getDolGlobalString('ACCOUNTING_PRODUCT_SOLD_ACCOUNT', $langs->trans("CodeNotDef"));
189 } else {
190 $compta_prod = getDolGlobalString('ACCOUNTING_SERVICE_SOLD_ACCOUNT', $langs->trans("CodeNotDef"));
191 }
192 }
193 $cpttva = getDolGlobalString('ACCOUNTING_VAT_SOLD_ACCOUNT', $langs->trans("CodeNotDef"));
194 $compta_tva = (!empty($obj->account_tva) ? $obj->account_tva : $cpttva);
195
196 $account_localtax1 = getLocalTaxesFromRate($obj->tva_tx, 1, $obj->socid, $mysoc);
197 $compta_localtax1 = (!empty($account_localtax1[3]) ? $account_localtax1[3] : $langs->trans("CodeNotDef"));
198 $account_localtax2 = getLocalTaxesFromRate($obj->tva_tx, 2, $obj->socid, $mysoc);
199 $compta_localtax2 = (!empty($account_localtax2[3]) ? $account_localtax2[3] : $langs->trans("CodeNotDef"));
200
201 // Situation invoices handling
202 $line = new FactureLigne($db);
203 $line->fetch($obj->id); // id of line
204 $prev_progress = 0;
205 if ($obj->situation_cycle_ref > 0) { // It is a situation invoice
206 $prev_progress = $line->get_prev_progress($obj->rowid); // id on invoice
207 if (getDolGlobalInt('INVOICE_USE_SITUATION') === 1) {
208 // backward compat: old behavior => line's situation_percent was cumulative
209 // (it reflected the line's progress state, not the line progress delta)
210 $progressDelta = $obj->situation_percent - $prev_progress;
211 $progressState = $obj->situation_percent;
212 } else {
213 $progressDelta = $obj->situation_percent;
214 $progressState = $prev_progress + $progressDelta;
215 }
216
217 // Avoid divide by 0
218 if ($progressState == 0) {
219 $situation_ratio = 0;
220 } else {
221 $situation_ratio = $progressDelta / $progressState;
222 }
223 } else {
224 $situation_ratio = 1;
225 }
226
227 // Invoice line
228 $tabfac[$obj->rowid]["date"] = $obj->datef;
229 $tabfac[$obj->rowid]["ref"] = $obj->ref;
230 $tabfac[$obj->rowid]["type"] = $obj->type;
231 if (!isset($tabttc[$obj->rowid][$compta_soc])) {
232 $tabttc[$obj->rowid][$compta_soc] = 0;
233 }
234 if (!isset($tabht[$obj->rowid][$compta_prod])) {
235 $tabht[$obj->rowid][$compta_prod] = 0;
236 }
237 if (!isset($tabtva[$obj->rowid][$compta_tva])) {
238 $tabtva[$obj->rowid][$compta_tva] = 0;
239 }
240 if (!isset($tablocaltax1[$obj->rowid][$compta_localtax1])) {
241 $tablocaltax1[$obj->rowid][$compta_localtax1] = 0;
242 }
243 if (!isset($tablocaltax2[$obj->rowid][$compta_localtax2])) {
244 $tablocaltax2[$obj->rowid][$compta_localtax2] = 0;
245 }
246 $tabttc[$obj->rowid][$compta_soc] += $obj->total_ttc * $situation_ratio;
247 $tabht[$obj->rowid][$compta_prod] += $obj->total_ht * $situation_ratio;
248 if ($obj->recuperableonly != 1) {
249 $tabtva[$obj->rowid][$compta_tva] += $obj->total_tva * $situation_ratio;
250 }
251 $tablocaltax1[$obj->rowid][$compta_localtax1] += $obj->total_localtax1;
252 $tablocaltax2[$obj->rowid][$compta_localtax2] += $obj->total_localtax2;
253 $tabcompany[$obj->rowid] = array('id' => $obj->socid, 'name' => $obj->name, 'client' => $obj->client);
254 $i++;
255 }
256} else {
258}
259
260
261/*
262 * Show result array
263 */
264
265
266print '<table class="liste noborder centpercent">';
267print '<tr class="liste_titre">';
268//print "<td>".$langs->trans("JournalNum")."</td>";
269print '<td>'.$langs->trans('Date').'</td>';
270print '<td>'.$langs->trans('Piece').' ('.$langs->trans('InvoiceRef').')</td>';
271print '<td>'.$langs->trans('Account').'</td>';
272print '<td>'.$langs->trans('Type').'</td>';
273print '<td class="right">'.$langs->trans('AccountingDebit').'</td>';
274print '<td class="right">'.$langs->trans('AccountingCredit').'</td>';
275print "</tr>\n";
276
277
278$invoicestatic = new Facture($db);
279$companystatic = new Client($db);
280
281foreach ($tabfac as $key => $val) {
282 $invoicestatic->id = (int) $key;
283 $invoicestatic->ref = $val["ref"];
284 $invoicestatic->type = $val["type"];
285
286 $companystatic->id = $tabcompany[$key]['id'];
287 $companystatic->name = $tabcompany[$key]['name'];
288 $companystatic->client = $tabcompany[$key]['client'];
289
290 $lines = array(
291 array(
292 'var' => $tabttc[$key],
293 'label' => $langs->trans('ThirdParty').' ('.$companystatic->getNomUrl(0, 'customer', 16).')',
294 'nomtcheck' => true,
295 'inv' => true
296 ),
297 array(
298 'var' => $tabht[$key],
299 'label' => $langs->trans('Products'),
300 ),
301 array(
302 'var' => $tabtva[$key],
303 'label' => $langs->trans('VAT')
304 ),
305 array(
306 'var' => $tablocaltax1[$key],
307 'label' => $langs->transcountry('LT1', $mysoc->country_code)
308 ),
309 array(
310 'var' => $tablocaltax2[$key],
311 'label' => $langs->transcountry('LT2', $mysoc->country_code)
312 )
313 );
314
315 foreach ($lines as $line) {
316 foreach ($line['var'] as $k => $mt) {
317 if (isset($line['nomtcheck']) || $mt) {
318 print '<tr class="oddeven">';
319 print '<td class="nowraponall">'.dol_print_date($db->jdate($val["date"]), 'day')."</td>";
320 print '<td class="tdoverflowmax150">'.$invoicestatic->getNomUrl(1)."</td>";
321 print "<td>".$k."</td><td>".$line['label']."</td>";
322
323 if (isset($line['inv'])) {
324 print '<td class="right">'.($mt >= 0 ? price($mt) : '')."</td>";
325 print '<td class="right">'.($mt < 0 ? price(-$mt) : '')."</td>";
326 } else {
327 print '<td class="right">'.($mt < 0 ? price(-$mt) : '')."</td>";
328 print '<td class="right">'.($mt >= 0 ? price($mt) : '')."</td>";
329 }
330
331 print "</tr>";
332 }
333 }
334 }
335}
336
337print "</table>";
338
339// End of page
340llxFooter();
341$db->close();
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:73
Class to manage customers or prospects.
Class to manage invoices.
const TYPE_REPLACEMENT
Replacement invoice.
const TYPE_STANDARD
Standard invoice.
const TYPE_SITUATION
Situation invoice.
const TYPE_DEPOSIT
Deposit invoice.
const TYPE_CREDIT_NOTE
Credit note invoice.
Class to manage invoice lines.
Class to manage generation of HTML components Only common components must be here.
global $mysoc
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
Definition date.lib.php:604
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
Definition date.lib.php:623
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
$date_start
Variables from include:
dol_now($mode='gmt')
Return date for now.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
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.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
getLocalTaxesFromRate($vatrate, $local, $buyer, $seller, $firstparamisid=0)
Get type and rate of localtaxes for a particular vat rate/country of a thirdparty.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
report_header($reportname, $notused, $period, $periodlink, $description, $builddate, $exportlink='', $moreparam=array(), $calcmode='', $varlink='')
Show header of a report.
restrictedArea(User $user, $features, $object=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.