26require
'../../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
'/expensereport/class/expensereport.class.php';
28require_once DOL_DOCUMENT_ROOT.
'/expensereport/class/paymentexpensereport.class.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/modules/expensereport/modules_expensereport.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/lib/expensereport.lib.php';
31if (isModEnabled(
"bank")) {
32 require_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/account.class.php';
36$langs->loadLangs(array(
'bills',
'banks',
'companies',
'trips'));
39$action =
GETPOST(
'action',
'aZ09');
44 $socid = $user->socid;
64if ($action ==
'confirm_delete' && $confirm ==
'yes' && $user->hasRight(
'expensereport',
'supprimer')) {
67 $result =
$object->delete($user);
70 header(
"Location: ".DOL_URL_ROOT.
"/expensereport/index.php");
83llxHeader(
'', $langs->trans(
"ExpenseReportPayment"));
89print
dol_get_fiche_head($head,
'payment', $langs->trans(
"ExpenseReportPayment"), -1,
'payment');
94if ($action ==
'delete') {
95 print $form->formconfirm(
'card.php?id='.
$object->id, $langs->trans(
"DeletePayment"), $langs->trans(
"ConfirmDeletePayment"),
'confirm_delete',
'', 0, 2);
101dol_banner_tab(
$object,
'ref', $linkback, 1,
'ref',
'ref',
'');
103print
'<div class="fichecenter">';
104print
'<div class="underbanner clearboth"></div>';
106print
'<table class="border centpercent">'.
"\n";
109print
'<tr><td class="titlefield">'.$langs->trans(
'Date').
'</td><td>'.
dol_print_date(
$object->datep,
'day').
'</td></tr>';
112print
'<tr><td>'.$langs->trans(
'PaymentMode').
'</td><td>'.$langs->trans(
"PaymentType".
$object->type_code).
'</td></tr>';
118print
'<tr><td>'.$langs->trans(
'Amount').
'</td><td>'.
price(
$object->amount, 0, $outputlangs, 1, -1, -1, $conf->currency).
'</td></tr>';
125if (isModEnabled(
"bank")) {
128 $bankline->fetch(
$object->bank_line);
129 if ($bankline->rappro) {
131 $title_button =
dol_escape_htmltag($langs->transnoentitiesnoconv(
"CantRemoveConciliatedPayment"));
135 print
'<td>'.$langs->trans(
'BankTransactionLine').
'</td>';
136 print
'<td colspan="3">';
137 print $bankline->getNomUrl(1, 0,
'showconciliated');
142 print
'<td>'.$langs->trans(
'BankAccount').
'</td>';
143 print
'<td colspan="3">';
144 $accountstatic =
new Account($db);
145 $accountstatic->fetch($bankline->fk_account);
146 print $accountstatic->getNomUrl(1);
163$sql =
'SELECT er.rowid as eid, er.paid, er.total_ttc, per.amount';
164$sql .=
' FROM '.MAIN_DB_PREFIX.
'payment_expensereport as per,'.MAIN_DB_PREFIX.
'expensereport as er';
165$sql .=
' WHERE per.fk_expensereport = er.rowid';
166$sql .=
' AND er.entity IN ('.getEntity(
'expensereport').
')';
167$sql .=
' AND per.rowid = '.((int) $id);
169dol_syslog(
"expensereport/payment/card.php", LOG_DEBUG);
170$resql = $db->query($sql);
172 $num = $db->num_rows($resql);
178 print
'<div class="div-table-responsive">';
179 print
'<table class="noborder centpercent">';
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>';
191 $objp = $db->fetch_object($resql);
193 print
'<tr class="oddeven">';
196 $expensereport->fetch($objp->eid);
200 print $expensereport->getNomUrl(1);
204 print
'<td class="right">'.price($objp->total_ttc).
'</td>';
207 print
'<td class="right">'.price($objp->amount).
'</td>';
210 print
'<td class="right">'.price($objp->total_ttc - $objp->amount).
'</td>';
213 print
'<td class="center">'.$expensereport->getLibStatut(4).
'</td>';
217 if ($objp->paid == 1) {
219 $title_button = $langs->trans(
"CantRemovePaymentWithOneInvoicePaid");
221 $total += $objp->amount;
240print
'<div class="tabsAction">';
244 if ($user->hasRight(
'expensereport',
'supprimer')) {
245 if (!$disable_delete) {
248 print
dolGetButtonAction($title_button, $langs->trans(
"Delete"),
'delete', $_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=delete&token='.
newToken(),
'delete', 0);
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage bank accounts.
Class to manage bank transaction lines.
Class to manage Trips and Expenses.
Class to manage payments of expense report.
payment_expensereport_prepare_head(PaymentExpenseReport $object)
Returns an array with the tabs for the "Expense report payment" section It loads tabs from modules lo...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_string_onlythesehtmltags($stringtoclean, $cleanalsosomestyles=1, $removeclassattribute=1, $cleanalsojavascript=0, $allowiframe=0, $allowed_tags=array(), $allowlink=0, $allowscript=0, $allowstyle=0)
Clean a string to keep only desirable HTML tags.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
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.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_htmlentitiesbr($stringtoencode, $nl2brmode=0, $pagecodefrom='UTF-8', $removelasteolbr=1)
This function is called to encode a string into a HTML string but differs from htmlentities because a...
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...