33require
'../../main.inc.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/lib/report.lib.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
36require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.facture.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.class.php';
49$langs->loadlangs(array(
'companies',
'other',
'bills',
'compta'));
51$date_startmonth =
GETPOST(
'date_startmonth');
52$date_startday =
GETPOST(
'date_startday');
53$date_startyear =
GETPOST(
'date_startyear');
54$date_endmonth =
GETPOST(
'date_endmonth');
55$date_endday =
GETPOST(
'date_endday');
56$date_endyear =
GETPOST(
'date_endyear');
59if ($user->socid > 0) {
60 $socid = $user->socid;
64$hookmanager->initHooks([
'purchasejournallist']);
66if (isModEnabled(
'comptabilite')) {
69if (isModEnabled(
'accounting')) {
70 $result =
restrictedArea($user,
'accounting',
'',
'',
'comptarapport');
84$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;
86llxHeader(
'', $langs->trans(
"PurchasesJournal"),
'',
'', 0, 0,
'',
'', $morequery);
93$pastmonthyear = $year_current;
99$date_start =
dol_mktime(0, 0, 0, (
int) $date_startmonth, (
int) $date_startday, (
int) $date_startyear);
100$date_end =
dol_mktime(23, 59, 59, (
int) $date_endmonth, (
int) $date_endday, (
int) $date_endyear);
102if (empty($date_start) || empty($date_end)) {
107$name = $langs->trans(
"PurchasesJournal");
111$description = $langs->trans(
"DescPurchasesJournal").
'<br>';
113 $description .= $langs->trans(
"DepositsAreNotIncluded");
115 $description .= $langs->trans(
"DepositsAreIncluded");
117$period = $form->selectDate($date_start,
'date_start', 0, 0, 0,
'', 1, 0).
' - '.$form->selectDate($date_end,
'date_end', 0, 0, 0,
'', 1, 0);
119report_header($name,
'', $period, $periodlink, $description, $builddate, $exportlink);
125$sql =
"SELECT f.rowid, f.ref_supplier, f.type, f.datef, f.libelle as label,";
126$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,";
127$sql .=
" s.rowid as socid, s.nom as name, s.code_compta_fournisseur,";
128$sql .=
" p.rowid as pid, p.ref as ref, p.accountancy_code_buy,";
129$sql .=
" ct.accountancy_code_buy as account_tva, ct.recuperableonly";
130$sql .=
" FROM ".MAIN_DB_PREFIX.
"facture_fourn_det as fd";
131$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);
132$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product as p ON p.rowid = fd.fk_product";
133$sql .=
" JOIN ".MAIN_DB_PREFIX.
"facture_fourn as f ON f.rowid = fd.fk_facture_fourn";
134$sql .=
" JOIN ".MAIN_DB_PREFIX.
"societe as s ON s.rowid = f.fk_soc";
135$sql .=
" WHERE f.fk_statut > 0 AND f.entity IN (".getEntity(
'invoice').
")";
137 $sql .=
" AND f.type IN (0,1,2)";
139 $sql .=
" AND f.type IN (0,1,2,3)";
141if ($date_start && $date_end) {
142 $sql .=
" AND f.datef >= '".$db->idate($date_start).
"' AND f.datef <= '".$db->idate($date_end).
"'";
146if (in_array($db->type, array(
'mysql',
'mysqli'))) {
147 $db->query(
'SET SQL_BIG_SELECTS=1');
152$result = $db->query($sql);
154 $num = $db->num_rows($result);
156 $cptfour = ((
getDolGlobalString(
'ACCOUNTING_ACCOUNT_SUPPLIER') !=
"") ?
$conf->global->ACCOUNTING_ACCOUNT_SUPPLIER : $langs->trans(
"CodeNotDef"));
157 $cpttva = (
getDolGlobalString(
'ACCOUNTING_VAT_BUY_ACCOUNT') ?
$conf->global->ACCOUNTING_VAT_BUY_ACCOUNT : $langs->trans(
"CodeNotDef"));
162 $tablocaltax1 = array();
163 $tablocaltax2 = array();
164 $tabcompany = array();
168 $obj = $db->fetch_object($result);
170 $compta_soc = (($obj->code_compta_fournisseur !=
"") ? $obj->code_compta_fournisseur : $cptfour);
171 $compta_prod = $obj->accountancy_code_buy;
172 if (empty($compta_prod)) {
173 if ($obj->product_type == 0) {
174 $compta_prod = (
getDolGlobalString(
'ACCOUNTING_PRODUCT_BUY_ACCOUNT') ?
$conf->global->ACCOUNTING_PRODUCT_BUY_ACCOUNT : $langs->trans(
"CodeNotDef"));
176 $compta_prod = (
getDolGlobalString(
'ACCOUNTING_SERVICE_BUY_ACCOUNT') ?
$conf->global->ACCOUNTING_SERVICE_BUY_ACCOUNT : $langs->trans(
"CodeNotDef"));
179 $compta_tva = (!empty($obj->account_tva) ? $obj->account_tva : $cpttva);
180 $compta_localtax1 = (!empty($obj->account_localtax1) ? $obj->account_localtax1 : $langs->trans(
"CodeNotDef"));
181 $compta_localtax2 = (!empty($obj->account_localtax2) ? $obj->account_localtax2 : $langs->trans(
"CodeNotDef"));
184 $compta_localtax1 = (!empty($account_localtax1[2]) ? $account_localtax1[2] : $langs->trans(
"CodeNotDef"));
186 $compta_localtax2 = (!empty($account_localtax2[2]) ? $account_localtax2[2] : $langs->trans(
"CodeNotDef"));
188 $tabfac[$obj->rowid][
"date"] = $obj->datef;
189 $tabfac[$obj->rowid][
"ref"] = $obj->ref_supplier;
190 $tabfac[$obj->rowid][
"type"] = $obj->type;
191 $tabfac[$obj->rowid][
"lib"] = $obj->label;
192 $tabttc[$obj->rowid][$compta_soc] += $obj->total_ttc;
193 $tabht[$obj->rowid][$compta_prod] += $obj->total_ht;
194 if ($obj->recuperableonly != 1) {
195 $tabtva[$obj->rowid][$compta_tva] += $obj->total_tva;
197 $tablocaltax1[$obj->rowid][$compta_localtax1] += $obj->total_localtax1;
198 $tablocaltax2[$obj->rowid][$compta_localtax2] += $obj->total_localtax2;
199 $tabcompany[$obj->rowid] = array(
'id' => $obj->socid,
'name' => $obj->name);
210print
'<table class="liste noborder centpercent">';
211print
"<tr class=\"liste_titre\">";
213print
"<td>".$langs->trans(
"Date").
"</td>";
214print
"<td>".$langs->trans(
"Piece").
' ('.$langs->trans(
"InvoiceRef").
")</td>";
215print
"<td>".$langs->trans(
"Account").
"</td>";
216print
"<td>".$langs->trans(
"Type").
"</td>";
217print
"<td class='right'>".$langs->trans(
"AccountingDebit").
"</td>";
218print
"<td class='right'>".$langs->trans(
"AccountingCredit").
"</td>";
225foreach ($tabfac as $key => $val) {
226 $invoicestatic->id = $key;
227 $invoicestatic->ref = $val[
"ref"];
228 $invoicestatic->type = $val[
"type"];
230 $companystatic->id = $tabcompany[$key][
'id'];
231 $companystatic->name = $tabcompany[$key][
'name'];
235 'var' => $tabht[$key],
236 'label' => $langs->trans(
'Products'),
239 'var' => $tabtva[$key],
240 'label' => $langs->trans(
'VAT')
243 'var' => $tablocaltax1[$key],
244 'label' => $langs->transcountry(
'LT1', $mysoc->country_code)
247 'var' => $tablocaltax2[$key],
248 'label' => $langs->transcountry(
'LT2', $mysoc->country_code)
251 'var' => $tabttc[$key],
252 'label' => $langs->trans(
'ThirdParty').
' ('.$companystatic->getNomUrl(0,
'supplier', 16).
')',
258 foreach ($lines as $line) {
259 foreach ($line[
'var'] as $k => $mt) {
260 if (isset($line[
'nomtcheck']) || $mt) {
261 print
'<tr class="oddeven">';
262 print
"<td>".dol_print_date($db->jdate($val[
"date"])).
"</td>";
263 print
"<td>".$invoicestatic->getNomUrl(1).
"</td>";
264 print
"<td>".$k.
"</td>";
265 print
"<td>".$line[
'label'].
"</td>";
267 if (isset($line[
'inv'])) {
268 print
'<td class="right">'.($mt < 0 ?
price(-$mt) :
'').
"</td>";
269 print
'<td class="right">'.($mt >= 0 ?
price($mt) :
'').
"</td>";
271 print
'<td class="right">'.($mt >= 0 ?
price($mt) :
'').
"</td>";
272 print
'<td class="right">'.($mt < 0 ?
price(-$mt) :
'').
"</td>";
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.
Class to manage suppliers invoices.
Class to manage suppliers.
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
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.
dol_now($mode='auto')
Return date for now.
getLocalTaxesFromRate($vatrate, $local, $buyer, $seller, $firstparamisid=0)
Get type and rate of localtaxes for a particular vat rate/country of a thirdparty.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
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.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
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.