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)) require_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/account.class.php';
33 $langs->loadLangs(array(
"bills",
"banks",
"companies",
"donations"));
37 $action =
GETPOST(
'action',
'aZ09');
38 $confirm =
GETPOST(
'confirm',
'alpha');
39 if ($user->socid) $socid = $user->socid;
46 $result = $object->fetch($id);
56 if ($action ==
'confirm_delete' && $confirm ==
'yes' && $user->rights->don->supprimer)
60 $result = $object->delete($user);
64 header(
"Location: ".DOL_URL_ROOT.
"/don/index.php");
81 $form =
new Form($db);
86 $head[$h][0] = DOL_URL_ROOT.
'/don/payment/card.php?id='.$id;
87 $head[$h][1] = $langs->trans(
"DonationPayment");
96 if ($action ==
'delete')
98 print $form->formconfirm(
'card.php?id='.$object->id, $langs->trans(
"DeletePayment"), $langs->trans(
"ConfirmDeletePayment"),
'confirm_delete',
'', 0, 2);
104 print '<div class="fichecenter">';
105 print '<div class="underbanner clearboth"></div>';
107 print '<table class="border centpercent">';
110 print '<tr><td class="titlefield">'.$langs->trans(
'Date').
'</td><td>'.
dol_print_date($object->datep,
'day').
'</td></tr>';
113 print '<tr><td>'.$langs->trans(
'Mode').
'</td><td>'.$langs->trans(
"PaymentType".$object->type_code).
'</td></tr>';
116 print '<tr><td>'.$langs->trans(
'Numero').
'</td><td>'.$object->num_payment.
'</td></tr>';
119 print '<tr><td>'.$langs->trans(
'Amount').
'</td><td>'.
price($object->amount, 0, $outputlangs, 1, -1, -1, $conf->currency).
'</td></tr>';
122 print '<tr><td>'.$langs->trans(
'Note').
'</td><td>'.nl2br($object->note_public).
'</td></tr>';
125 if (!empty($conf->banque->enabled))
127 if ($object->bank_account)
130 $bankline->fetch($object->bank_line);
133 print '<td>'.$langs->trans(
'BankTransactionLine').
'</td>';
135 print $bankline->getNomUrl(1, 0,
'showall');
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 = '.$id;
155 dol_syslog(
"don/payment/card.php", LOG_DEBUG);
156 $resql = $db->query($sql);
159 $num = $db->num_rows(
$resql);
163 print '<br><table class="noborder centpercent">';
164 print '<tr class="liste_titre">';
165 print '<td>'.$langs->trans(
'Donation').
'</td>';
166 print '<td class="right">'.$langs->trans(
'ExpectedToPay').
'</td>';
167 print '<td class="center">'.$langs->trans(
'Status').
'</td>';
168 print '<td class="right">'.$langs->trans(
'PayedByThisPayment').
'</td>';
175 $objp = $db->fetch_object(
$resql);
177 print '<tr class="oddeven">';
180 $don->fetch($objp->did);
181 print $don->getNomUrl(1);
184 print '<td class="right">'.price($objp->d_amount).
'</td>';
186 print '<td class="center">'.$don->getLibStatut(4, $objp->amount).
'</td>';
188 print '<td class="right">'.price($objp->amount).
'</td>';
190 if ($objp->paid == 1) {
194 $total = $total + $objp->amount;
214 print '<div class="tabsAction">';
218 if ($user->rights->don->supprimer)
220 if (!$disable_delete)
222 print '<a class="butActionDelete" href="card.php?id='.$object->id.
'&action=delete&token='.
newToken().
'">'.$langs->trans(
'Delete').
'</a>';
224 print '<a class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->trans(
"CantRemovePaymentWithOneInvoicePaid")).
'">'.$langs->trans(
'Delete').
'</a>';
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.
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...
setEventMessages($mesg, $mesgs, $style= 'mesgs', $messagekey= '')
Set event messages in dol_events session object.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
Class to manage payments of donations.
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.
Class to manage donations.
dol_print_date($time, $format= '', $tzoutput= 'auto', $outputlangs= '', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
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.
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 'newtoken'.
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.