dolibarr  16.0.5
card.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2015 Alexandre Spangaro <aspangaro@open-dsi.fr>
3  * Copyright (C) 2019 Frédéric France <frederic.france@netlogic.fr>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 
25 require '../../main.inc.php';
26 require_once DOL_DOCUMENT_ROOT.'/don/class/don.class.php';
27 require_once DOL_DOCUMENT_ROOT.'/don/class/paymentdonation.class.php';
28 require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/modules/facture/modules_facture.php';
30 if (!empty($conf->banque->enabled)) {
31  require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
32 }
33 
34 // Load translation files required by the page
35 $langs->loadLangs(array("bills", "banks", "companies", "donations"));
36 
37 // Security check
38 $id = GETPOST('rowid') ? GETPOST('rowid', 'int') : GETPOST('id', 'int');
39 $action = GETPOST('action', 'aZ09');
40 $confirm = GETPOST('confirm', 'alpha');
41 if ($user->socid) {
42  $socid = $user->socid;
43 }
44 // TODO Add rule to restrict access payment
45 //$result = restrictedArea($user, 'facture', $id,'');
46 
47 $object = new PaymentDonation($db);
48 if ($id > 0) {
49  $result = $object->fetch($id);
50  if (!$result) {
51  dol_print_error($db, 'Failed to get payment id '.$id);
52  }
53 }
54 
55 
56 /*
57  * Actions
58  */
59 
60 // Delete payment
61 if ($action == 'confirm_delete' && $confirm == 'yes' && $user->rights->don->supprimer) {
62  $db->begin();
63 
64  $result = $object->delete($user);
65  if ($result > 0) {
66  $db->commit();
67  header("Location: ".DOL_URL_ROOT."/don/index.php");
68  exit;
69  } else {
70  setEventMessages($object->error, $object->errors, 'errors');
71  $db->rollback();
72  }
73 }
74 
75 
76 
77 /*
78  * View
79  */
80 
81 llxHeader();
82 
83 $don = new Don($db);
84 $form = new Form($db);
85 
86 $h = 0;
87 
88 $head = array();
89 $head[$h][0] = DOL_URL_ROOT.'/don/payment/card.php?id='.$id;
90 $head[$h][1] = $langs->trans("DonationPayment");
91 $hselected = $h;
92 $h++;
93 
94 print dol_get_fiche_head($head, $hselected, $langs->trans("DonationPayment"), -1, 'payment');
95 
96 /*
97  * Confirm deleting of the payment
98  */
99 if ($action == 'delete') {
100  print $form->formconfirm('card.php?id='.$object->id, $langs->trans("DeletePayment"), $langs->trans("ConfirmDeletePayment"), 'confirm_delete', '', 0, 2);
101 }
102 
103 
104 dol_banner_tab($object, 'id', '', 1, 'rowid', 'id');
105 
106 print '<div class="fichecenter">';
107 print '<div class="underbanner clearboth"></div>';
108 
109 print '<table class="border centpercent">';
110 
111 // Date
112 print '<tr><td class="titlefield">'.$langs->trans('Date').'</td><td>'.dol_print_date($object->datep, 'day').'</td></tr>';
113 
114 // Mode
115 print '<tr><td>'.$langs->trans('Mode').'</td><td>'.$langs->trans("PaymentType".$object->type_code).'</td></tr>';
116 
117 // Number
118 print '<tr><td>'.$langs->trans('Numero').'</td><td>'.$object->num_payment.'</td></tr>';
119 
120 // Amount
121 print '<tr><td>'.$langs->trans('Amount').'</td><td>'.price($object->amount, 0, $outputlangs, 1, -1, -1, $conf->currency).'</td></tr>';
122 
123 // Note public
124 print '<tr><td>'.$langs->trans('Note').'</td><td>'.nl2br($object->note_public).'</td></tr>';
125 
126 // Bank account
127 if (!empty($conf->banque->enabled)) {
128  if ($object->bank_account) {
129  $bankline = new AccountLine($db);
130  $bankline->fetch($object->bank_line);
131 
132  print '<tr>';
133  print '<td>'.$langs->trans('BankTransactionLine').'</td>';
134  print '<td>';
135  print $bankline->getNomUrl(1, 0, 'showall');
136  print '</td>';
137  print '</tr>';
138  }
139 }
140 
141 print '</table>';
142 
143 
144 /*
145  * List of donations paid
146  */
147 
148 $disable_delete = 0;
149 $sql = 'SELECT d.rowid as did, d.paid, d.amount as d_amount, pd.amount';
150 $sql .= ' FROM '.MAIN_DB_PREFIX.'payment_donation as pd,'.MAIN_DB_PREFIX.'don as d';
151 $sql .= ' WHERE pd.fk_donation = d.rowid';
152 $sql .= ' AND d.entity = '.$conf->entity;
153 $sql .= ' AND pd.rowid = '.((int) $id);
154 
155 dol_syslog("don/payment/card.php", LOG_DEBUG);
156 $resql = $db->query($sql);
157 if ($resql) {
158  $num = $db->num_rows($resql);
159 
160  $i = 0;
161  $total = 0;
162  print '<br><table class="noborder centpercent">';
163  print '<tr class="liste_titre">';
164  print '<td>'.$langs->trans('Donation').'</td>';
165  print '<td class="right">'.$langs->trans('ExpectedToPay').'</td>';
166  print '<td class="center">'.$langs->trans('Status').'</td>';
167  print '<td class="right">'.$langs->trans('PayedByThisPayment').'</td>';
168  print "</tr>\n";
169 
170  if ($num > 0) {
171  while ($i < $num) {
172  $objp = $db->fetch_object($resql);
173 
174  print '<tr class="oddeven">';
175  // Ref
176  print '<td>';
177  $don->fetch($objp->did);
178  print $don->getNomUrl(1);
179  print "</td>\n";
180  // Expected to pay
181  print '<td class="right">'.price($objp->d_amount).'</td>';
182  // Status
183  print '<td class="center">'.$don->getLibStatut(4, $objp->amount).'</td>';
184  // Amount paid
185  print '<td class="right">'.price($objp->amount).'</td>';
186  print "</tr>\n";
187  if ($objp->paid == 1) {
188  // If at least one invoice is paid, disable delete
189  $disable_delete = 1;
190  }
191  $total = $total + $objp->amount;
192  $i++;
193  }
194  }
195 
196 
197  print "</table>\n";
198  $db->free($resql);
199 } else {
200  dol_print_error($db);
201 }
202 
203 print '</div>';
204 
205 print dol_get_fiche_end();
206 
207 
208 /*
209  * Actions buttons
210  */
211 print '<div class="tabsAction">';
212 
213 if (empty($action)) {
214  if ($user->rights->don->supprimer) {
215  if (!$disable_delete) {
216  print '<a class="butActionDelete" href="card.php?id='.$object->id.'&amp;action=delete&token='.newToken().'">'.$langs->trans('Delete').'</a>';
217  } else {
218  print '<a class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->trans("CantRemovePaymentWithOneInvoicePaid")).'">'.$langs->trans('Delete').'</a>';
219  }
220  }
221 }
222 
223 print '</div>';
224 
225 
226 
227 llxFooter();
228 
229 $db->close();
llxFooter
llxFooter()
Empty footer.
Definition: wrapper.php:73
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
dol_print_error
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
Definition: functions.lib.php:4844
PaymentDonation
Class to manage payments of donations.
Definition: paymentdonation.class.php:30
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
Don
Class to manage donations.
Definition: don.class.php:38
dol_banner_tab
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.
Definition: functions.lib.php:2046
dol_print_date
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
Definition: functions.lib.php:2514
dol_syslog
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
Definition: functions.lib.php:1603
dol_get_fiche_head
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
Definition: functions.lib.php:1822
newToken
newToken()
Return the value of token currently saved into session with name 'newtoken'.
Definition: functions.lib.php:10878
dol_get_fiche_end
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition: functions.lib.php:2018
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
AccountLine
Class to manage bank transaction lines.
Definition: account.class.php:1779
$resql
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->rights->fournisseur->facture->lire)||(isModEnabled('supplier_invoice') && $user->rights->supplier_invoice->lire)) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
Definition: index.php:742
price
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.
Definition: functions.lib.php:5541
setEventMessages
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
Definition: functions.lib.php:8137
llxHeader
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:59