dolibarr  13.0.2
card.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2005 Simon TOSSER <simon@kornog-computing.com>
4  * Copyright (C) 2013-2017 Alexandre Spangaro <aspangaro@open-dsi.fr>
5  * Copyright (C) 2013-2014 Olivier Geffroy <jeff@jeffinfo.com>
6  * Copyright (C) 2013-2014 Florian Henry <florian.henry@open-concept.pro>
7  * Copyright (C) 2014 Juanjo Menent <jmenent@2byte.es>
8  * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.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 require '../../main.inc.php';
30 
31 require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php';
32 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formaccounting.class.php';
33 
34 // Load translation files required by the page
35 $langs->loadLangs(array("bills", "accountancy"));
36 
37 $action = GETPOST('action', 'aZ09');
38 $cancel = GETPOST('cancel', 'alpha');
39 $backtopage = GETPOST('backtopage', 'alpha');
40 
41 $codeventil = GETPOST('codeventil', 'int');
42 $id = GETPOST('id', 'int');
43 
44 // Security check
45 if ($user->socid > 0)
47 
48 
49 /*
50  * Actions
51  */
52 
53 if ($action == 'ventil' && $user->rights->accounting->bind->write)
54 {
55  if (!$cancel)
56  {
57  if ($codeventil < 0) $codeventil = 0;
58 
59  $sql = " UPDATE ".MAIN_DB_PREFIX."facture_fourn_det";
60  $sql .= " SET fk_code_ventilation = ".$codeventil;
61  $sql .= " WHERE rowid = ".$id;
62 
63  $resql = $db->query($sql);
64  if (!$resql) {
65  setEventMessages($db->lasterror(), null, 'errors');
66  } else {
67  setEventMessages($langs->trans("RecordModifiedSuccessfully"), null, 'mesgs');
68  if ($backtopage)
69  {
70  header("Location: ".$backtopage);
71  exit();
72  }
73  }
74  } else {
75  header("Location: ./lines.php");
76  exit();
77  }
78 }
79 
80 
81 
82 /*
83  * View
84  */
85 llxHeader("", $langs->trans('FicheVentilation'));
86 
87 if ($cancel == $langs->trans("Cancel")) {
88  $action = '';
89 }
90 
91 // Create
92 $form = new Form($db);
93 $facturefournisseur_static = new FactureFournisseur($db);
94 $formaccounting = new FormAccounting($db);
95 
96 if (!empty($id)) {
97  $sql = "SELECT f.ref as ref, f.rowid as facid, l.fk_product, l.description, l.rowid, l.fk_code_ventilation, ";
98  $sql .= " p.rowid as product_id, p.ref as product_ref, p.label as product_label";
99  $sql .= ", aa.account_number, aa.label";
100  $sql .= " FROM ".MAIN_DB_PREFIX."facture_fourn_det as l";
101  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON p.rowid = l.fk_product";
102  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."accounting_account as aa ON l.fk_code_ventilation = aa.rowid";
103  $sql .= " INNER JOIN ".MAIN_DB_PREFIX."facture_fourn as f ON f.rowid = l.fk_facture_fourn ";
104  $sql .= " WHERE f.fk_statut > 0 AND l.rowid = ".$id;
105  $sql .= " AND f.entity IN (".getEntity('facture_fourn', 0).")"; // We don't share object for accountancy
106 
107  dol_syslog("/accounting/supplier/card.php sql=".$sql, LOG_DEBUG);
108  $result = $db->query($sql);
109 
110  if ($result) {
111  $num_lines = $db->num_rows($result);
112  $i = 0;
113 
114  if ($num_lines) {
115  $objp = $db->fetch_object($result);
116 
117  print '<form action="'.$_SERVER["PHP_SELF"].'?id='.$id.'" method="post">'."\n";
118  print '<input type="hidden" name="token" value="'.newToken().'">';
119  print '<input type="hidden" name="action" value="ventil">';
120  print '<input type="hidden" name="backtopage" value="'.dol_escape_htmltag($backtopage).'">';
121 
122  print load_fiche_titre($langs->trans('SuppliersVentilation'), '', 'title_accountancy');
123 
125 
126  print '<table class="border centpercent">';
127 
128  // ref invoice
129  print '<tr><td>'.$langs->trans("BillsSuppliers").'</td>';
130  $facturefournisseur_static->ref = $objp->ref;
131  $facturefournisseur_static->id = $objp->facid;
132  print '<td>'.$facturefournisseur_static->getNomUrl(1).'</td>';
133  print '</tr>';
134 
135  print '<tr><td width="20%">'.$langs->trans("Line").'</td>';
136  print '<td>'.stripslashes(nl2br($objp->description)).'</td></tr>';
137  print '<tr><td width="20%">'.$langs->trans("ProductLabel").'</td>';
138  print '<td>'.dol_trunc($objp->product_label, 24).'</td>';
139  print '<tr><td width="20%">'.$langs->trans("Account").'</td><td>';
140  print $formaccounting->select_account($objp->fk_code_ventilation, 'codeventil', 1);
141  print '</td></tr>';
142  print '</table>';
143 
145 
146  print '<div class="center">';
147  print '<input class="button button-save" type="submit" value="'.$langs->trans("Save").'">';
148  print '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
149  print '<input class="button button-cancel" type="submit" name="cancel" value="'.$langs->trans("Cancel").'">';
150  print '</div>';
151 
152  print '</form>';
153  } else {
154  print "Error";
155  }
156  } else {
157  print "Error";
158  }
159 } else {
160  print "Error ID incorrect";
161 }
162 
163 // End of page
164 llxFooter();
165 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Class to manage suppliers invoices.
llxHeader()
Empty header.
Definition: wrapper.php:45
setEventMessages($mesg, $mesgs, $style= 'mesgs', $messagekey= '')
Set event messages in dol_events session object.
Class to manage generation of HTML components Only common components must be here.
load_fiche_titre($titre, $morehtmlright= '', $picto= 'generic', $pictoisfullpath=0, $id= '', $morecssontable= '', $morehtmlcenter= '')
Load a title with picto.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
accessforbidden($message= '', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
dol_get_fiche_head($links=array(), $active= '', $title= '', $notab=0, $picto= '', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limittoshow=0, $moretabssuffix= '')
Show tabs of a record.
print
Draft customers invoices.
Definition: index.php:89
Class to manage generation of HTML components for accounting management.
if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) if(!empty($conf->don->enabled)&&$user->rights->don->lire) if(!empty($conf->tax->enabled)&&$user->rights->tax->charges->lire) if(!empty($conf->facture->enabled)&&!empty($conf->commande->enabled)&&$user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) $resql
Social contributions to pay.
Definition: index.php:1232
dol_get_fiche_end($notab=0)
Return tab footer of a card.
llxFooter()
Empty footer.
Definition: wrapper.php:59