dolibarr  13.0.2
card.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2015-2017 Alexandre Spangaro <aspangaro@open-dsi.fr>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  */
17 
24 require '../../main.inc.php';
25 require_once DOL_DOCUMENT_ROOT.'/expensereport/class/expensereport.class.php';
26 require_once DOL_DOCUMENT_ROOT.'/expensereport/class/paymentexpensereport.class.php';
27 require_once DOL_DOCUMENT_ROOT.'/core/modules/expensereport/modules_expensereport.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/expensereport.lib.php';
29 if (!empty($conf->banque->enabled)) require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
30 
31 // Load translation files required by the page
32 $langs->loadLangs(array('bills', 'banks', 'companies', 'trips'));
33 
34 $id = GETPOST('rowid') ?GETPOST('rowid', 'int') : GETPOST('id', 'int');
35 $action = GETPOST('action', 'aZ09');
36 $confirm = GETPOST('confirm');
37 
38 // Security check
39 if ($user->socid) $socid = $user->socid;
40 // TODO Add rule to restrict access payment
41 //$result = restrictedArea($user, 'facture', $id,'');
42 
43 $object = new PaymentExpenseReport($db);
44 
45 if ($id > 0)
46 {
47  $result = $object->fetch($id);
48  if (!$result) dol_print_error($db, 'Failed to get payment id '.$id);
49 }
50 
51 
52 /*
53  * Actions
54  */
55 
56 // Delete payment
57 if ($action == 'confirm_delete' && $confirm == 'yes' && $user->rights->expensereport->supprimer)
58 {
59  $db->begin();
60 
61  $result = $object->delete($user);
62  if ($result > 0)
63  {
64  $db->commit();
65  header("Location: ".DOL_URL_ROOT."/expensereport/index.php");
66  exit;
67  } else {
68  setEventMessages($object->error, $object->errors, 'errors');
69  $db->rollback();
70  }
71 }
72 
73 
74 /*
75  * View
76  */
77 
78 llxHeader('', $langs->trans("ExpenseReportPayment"));
79 
80 $form = new Form($db);
81 
82 $head = payment_expensereport_prepare_head($object);
83 
84 print dol_get_fiche_head($head, 'payment', $langs->trans("ExpenseReportPayment"), -1, 'payment');
85 
86 /*
87  * Confirm deleting of the payment
88  */
89 if ($action == 'delete')
90 {
91  print $form->formconfirm('card.php?id='.$object->id, $langs->trans("DeletePayment"), $langs->trans("ConfirmDeletePayment"), 'confirm_delete', '', 0, 2);
92 }
93 
94 $linkback = '';
95 // $linkback = '<a href="' . DOL_URL_ROOT . '/expensereport/payment/list.php">' . $langs->trans("BackToList") . '</a>';
96 
97 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', '');
98 
99 print '<div class="fichecenter">';
100 print '<div class="underbanner clearboth"></div>';
101 
102 print '<table class="border centpercent">'."\n";
103 
104 // Date payment
105 print '<tr><td class="titlefield">'.$langs->trans('Date').'</td><td colspan="3">'.dol_print_date($object->datep, 'day').'</td></tr>';
106 
107 // Mode
108 print '<tr><td>'.$langs->trans('PaymentMode').'</td><td colspan="3">'.$langs->trans("PaymentType".$object->type_code).'</td></tr>';
109 
110 // Number
111 print '<tr><td>'.$langs->trans('Numero').'</td><td colspan="3">'.$object->num_payment.'</td></tr>';
112 
113 // Amount
114 print '<tr><td>'.$langs->trans('Amount').'</td><td colspan="3">'.price($object->amount, 0, $outputlangs, 1, -1, -1, $conf->currency).'</td></tr>';
115 
116 // Note public
117 print '<tr><td class="tdtop">'.$langs->trans('Note').'</td><td colspan="3">'.nl2br($object->note_public).'</td></tr>';
118 
119 $disable_delete = 0;
120 // Bank account
121 if (!empty($conf->banque->enabled))
122 {
123  if ($object->bank_account)
124  {
125  $bankline = new AccountLine($db);
126  $bankline->fetch($object->bank_line);
127  if ($bankline->rappro)
128  {
129  $disable_delete = 1;
130  $title_button = dol_escape_htmltag($langs->transnoentitiesnoconv("CantRemoveConciliatedPayment"));
131  }
132 
133  print '<tr>';
134  print '<td>'.$langs->trans('BankTransactionLine').'</td>';
135  print '<td colspan="3">';
136  print $bankline->getNomUrl(1, 0, 'showconciliated');
137  print '</td>';
138  print '</tr>';
139 
140  print '<tr>';
141  print '<td>'.$langs->trans('BankAccount').'</td>';
142  print '<td colspan="3">';
143  $accountstatic = new Account($db);
144  $accountstatic->fetch($bankline->fk_account);
145  print $accountstatic->getNomUrl(1);
146  print '</td>';
147  print '</tr>';
148  }
149 }
150 
151 print '</table>';
152 
153 print '</div>';
154 
156 
157 
158 /*
159  * List of expense report paid
160  */
161 
162 $sql = 'SELECT er.rowid as eid, er.paid, er.total_ttc, per.amount';
163 $sql .= ' FROM '.MAIN_DB_PREFIX.'payment_expensereport as per,'.MAIN_DB_PREFIX.'expensereport as er';
164 $sql .= ' WHERE per.fk_expensereport = er.rowid';
165 $sql .= ' AND er.entity IN ('.getEntity('expensereport').')';
166 $sql .= ' AND per.rowid = '.$id;
167 
168 dol_syslog("expensereport/payment/card.php", LOG_DEBUG);
169 $resql = $db->query($sql);
170 if ($resql)
171 {
172  $num = $db->num_rows($resql);
173 
174  $i = 0;
175  $total = 0;
176  print '<br>';
177 
178  print '<div class="div-table-responsive">';
179  print '<table class="noborder centpercent">';
180 
181  print '<tr class="liste_titre">';
182  print '<td>'.$langs->trans('ExpenseReport').'</td>';
183  print '<td class="right">'.$langs->trans('ExpectedToPay').'</td>';
184  print '<td class="right">'.$langs->trans('PayedByThisPayment').'</td>';
185  print '<td class="right">'.$langs->trans('RemainderToPay').'</td>';
186  print '<td class="center">'.$langs->trans('Status').'</td>';
187  print "</tr>\n";
188 
189  if ($num > 0)
190  {
191  while ($i < $num)
192  {
193  $objp = $db->fetch_object($resql);
194 
195  print '<tr class="oddeven">';
196 
197  $expensereport = new ExpenseReport($db);
198  $expensereport->fetch($objp->eid);
199 
200  // Expense report
201  print '<td>';
202  print $expensereport->getNomUrl(1);
203  print "</td>\n";
204 
205  // Expected to pay
206  print '<td class="right">'.price($objp->total_ttc).'</td>';
207 
208  // Amount paid
209  print '<td class="right">'.price($objp->amount).'</td>';
210 
211  // Remain to pay
212  print '<td class="right">'.price($objp->total_ttc - $objp->amount).'</td>';
213 
214  // Status
215  print '<td class="center">'.$expensereport->getLibStatut(4, $objp->amount).'</td>';
216 
217  print "</tr>\n";
218 
219  if ($objp->paid == 1) // If at least one invoice is paid, disable delete
220  {
221  $disable_delete = 2;
222  $title_button = $langs->trans("CantRemovePaymentWithOneInvoicePaid");
223  }
224  $total = $total + $objp->amount;
225  $i++;
226  }
227  }
228 
229 
230  print "</table>\n";
231  print '</div>';
232 
233  $db->free($resql);
234 } else {
235  dol_print_error($db);
236 }
237 
238 
239 
240 /*
241  * Actions buttons
242  */
243 print '<div class="tabsAction">';
244 
245 if ($action == '')
246 {
247  if ($user->rights->expensereport->supprimer)
248  {
249  if (!$disable_delete)
250  {
251  print '<a class="butActionDelete" href="'.$_SERVER['PHP_SELF'].'?id='.$id.'&amp;action=delete&amp;token='.newToken().'">'.$langs->trans('Delete').'</a>';
252  } else {
253  print '<a class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($title_button).'">'.$langs->trans('Delete').'</a>';
254  }
255  }
256 }
257 
258 print '</div>';
259 
260 // End of page
261 llxFooter();
262 $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 bank transaction lines.
Class to manage bank accounts.
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...
payment_expensereport_prepare_head(PaymentExpenseReport $object)
Returns an array with the tabs for the &quot;Expense report payment&quot; section It loads tabs from modules lo...
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.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
Class to manage Trips and Expenses.
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
dol_print_date($time, $format= '', $tzoutput= 'auto', $outputlangs= '', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
Class to manage payments of expense report.
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_print_error($db= '', $error= '', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
newToken()
Return the value of token currently saved into session with name &#39;newtoken&#39;.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_banner_tab($object, $paramid, $morehtml= '', $shownav=1, $fieldid= 'rowid', $fieldref= 'ref', $morehtmlref= '', $moreparam= '', $nodbprefix=0, $morehtmlleft= '', $morehtmlstatus= '', $onlybanner=0, $morehtmlright= '')
Show tab footer of a card.
llxFooter()
Empty footer.
Definition: wrapper.php:59
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $keepmoretags= '', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields...