dolibarr  13.0.2
card.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2013-2014 Olivier Geffroy <jeff@jeffinfo.com>
3  * Copyright (C) 2013-2014 Florian Henry <florian.henry@open-concept.pro>
4  * Copyright (C) 2013-2017 Alexandre Spangaro <aspangaro@open-dsi.fr>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
25 require '../../main.inc.php';
26 
27 require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formaccounting.class.php';
29 
30 // Load translation files required by the page
31 $langs->loadLangs(array("bills", "accountancy"));
32 
33 $action = GETPOST('action', 'aZ09');
34 $cancel = GETPOST('cancel', 'alpha');
35 $backtopage = GETPOST('backtopage', 'alpha');
36 
37 $codeventil = GETPOST('codeventil', 'int');
38 $id = GETPOST('id', 'int');
39 
40 // Security check
41 if ($user->socid > 0)
43 
44 
45 /*
46  * Actions
47  */
48 
49 if ($action == 'ventil' && $user->rights->accounting->bind->write)
50 {
51  if (!$cancel)
52  {
53  if ($codeventil < 0) $codeventil = 0;
54 
55  $sql = " UPDATE ".MAIN_DB_PREFIX."facturedet";
56  $sql .= " SET fk_code_ventilation = ".$codeventil;
57  $sql .= " WHERE rowid = ".$id;
58 
59  $resql = $db->query($sql);
60  if (!$resql) {
61  setEventMessages($db->lasterror(), null, 'errors');
62  } else {
63  setEventMessages($langs->trans("RecordModifiedSuccessfully"), null, 'mesgs');
64  if ($backtopage)
65  {
66  header("Location: ".$backtopage);
67  exit();
68  }
69  }
70  } else {
71  header("Location: ./lines.php");
72  exit();
73  }
74 }
75 
76 
77 /*
78  * View
79  */
80 
81 llxHeader("", $langs->trans('FicheVentilation'));
82 
83 if ($cancel == $langs->trans("Cancel")) {
84  $action = '';
85 }
86 
87 /*
88  * Create
89  */
90 $form = new Form($db);
91 $facture_static = new Facture($db);
92 $formaccounting = new FormAccounting($db);
93 
94 if (!empty($id)) {
95  $sql = "SELECT f.ref, f.rowid as facid, l.fk_product, l.description, l.price,";
96  $sql .= " l.qty, l.rowid, l.tva_tx, l.remise_percent, l.subprice, p.accountancy_code_sell as code_sell,";
97  $sql .= " l.fk_code_ventilation, aa.account_number, aa.label";
98  $sql .= " FROM ".MAIN_DB_PREFIX."facturedet as l";
99  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON p.rowid = l.fk_product";
100  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."accounting_account as aa ON l.fk_code_ventilation = aa.rowid";
101  $sql .= " INNER JOIN ".MAIN_DB_PREFIX."facture as f ON f.rowid = l.fk_facture";
102  $sql .= " WHERE f.fk_statut > 0 AND l.rowid = ".$id;
103  $sql .= " AND f.entity IN (".getEntity('invoice', 0).")"; // We don't share object for accountancy
104 
105  dol_syslog("/accounting/customer/card.php sql=".$sql, LOG_DEBUG);
106  $result = $db->query($sql);
107 
108  if ($result) {
109  $num_lines = $db->num_rows($result);
110  $i = 0;
111 
112  if ($num_lines) {
113  $objp = $db->fetch_object($result);
114 
115  print '<form action="'.$_SERVER["PHP_SELF"].'?id='.$id.'" method="post">'."\n";
116  print '<input type="hidden" name="token" value="'.newToken().'">';
117  print '<input type="hidden" name="action" value="ventil">';
118  print '<input type="hidden" name="backtopage" value="'.dol_escape_htmltag($backtopage).'">';
119 
120  print load_fiche_titre($langs->trans('CustomersVentilation'), '', 'title_accountancy');
121 
123 
124  print '<table class="border centpercent">';
125 
126  // Ref facture
127  print '<tr><td>'.$langs->trans("Invoice").'</td>';
128  $facture_static->ref = $objp->ref;
129  $facture_static->id = $objp->facid;
130  print '<td>'.$facture_static->getNomUrl(1).'</td>';
131  print '</tr>';
132 
133  print '<tr><td width="20%">'.$langs->trans("Line").'</td>';
134  print '<td>'.nl2br($objp->description).'</td></tr>';
135  print '<tr><td width="20%">'.$langs->trans("Account").'</td><td>';
136  print $formaccounting->select_account($objp->fk_code_ventilation, 'codeventil', 1);
137  print '</td></tr>';
138  print '</table>';
139 
141 
142  print '<div class="center">';
143  print '<input class="button button-save" type="submit" value="'.$langs->trans("Save").'">';
144  print '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
145  print '<input class="button button-cancel" type="submit" name="cancel" value="'.$langs->trans("Cancel").'">';
146  print '</div>';
147 
148  print '</form>';
149  } else {
150  print "Error";
151  }
152  } else {
153  print "Error";
154  }
155 } else {
156  print "Error ID incorrect";
157 }
158 
159 // End of page
160 llxFooter();
161 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
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.
Class to manage invoices.
llxFooter()
Empty footer.
Definition: wrapper.php:59