dolibarr 21.0.0-alpha
linkedobjectblock.tpl.php
1<?php
2/* Copyright (C) 2010-2011 Regis Houssin <regis.houssin@inodbox.com>
3 * Copyright (C) 2014 Marcos GarcĂ­a <marcosgdf@gmail.com>
4 * Copyright (C) 2015 Charlie Benke <charlie@patas-monkey.com>
5 * Copyright (C) 2016 Laurent Destailleur <eldy@users.sourceforge.net>
6 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
22// Protection to avoid direct call of template
23if (empty($conf) || !is_object($conf)) {
24 print "Error, template page can't be called as URL";
25 exit(1);
26}
27
28
29print "<!-- BEGIN PHP TEMPLATE fourn/facture/tpl/linkedobjectblock.tpl.php -->\n";
30
31
32global $user;
33global $noMoreLinkedObjectBlockAfter;
34
35$langs = $GLOBALS['langs'];
36'@phan-var-force Translate $langs';
37$linkedObjectBlock = $GLOBALS['linkedObjectBlock'];
38'
39@phan-var-force array<string,CommonObject> $linkedObjectBlock
40';
41
42
43$langs->load("bills");
44
45$total = 0;
46$ilink = 0;
47foreach ($linkedObjectBlock as $key => $objectlink) {
48 $ilink++;
49
50 $trclass = 'oddeven';
51 if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
52 $trclass .= ' liste_sub_total';
53 } ?>
54 <tr class="<?php echo $trclass; ?>">
55 <td><?php echo $langs->trans("SupplierInvoice"); ?></td>
56 <td><a href="<?php echo DOL_URL_ROOT.'/fourn/facture/card.php?facid='.$objectlink->id ?>"><?php echo img_object($langs->trans("ShowBill"), "bill").' '.$objectlink->ref; ?></a></td>
57 <td class="left"><?php echo $objectlink->ref_supplier; ?></td>
58 <td class="center"><?php echo dol_print_date($objectlink->date, 'day'); ?></td>
59 <td class="right"><?php
60 if ($user->hasRight('fournisseur', 'facture', 'lire')) {
61 $sign = 1;
63 $sign = -1;
64 }
65 if ($objectlink->statut != 3) {
66 // If not abandoned
67 $total += $sign * $objectlink->total_ht;
68 echo price($objectlink->total_ht);
69 } else {
70 echo '<strike>'.price($objectlink->total_ht).'</strike>';
71 }
72 } ?></td>
73 <td class="right"><?php
74 if (method_exists($objectlink, 'getSommePaiement')) {
75 // @phan-suppress-next-line PhanUnknownMethodCall
76 echo $objectlink->getLibStatut(3, $objectlink->getSommePaiement());
77 } else {
78 echo $objectlink->getLibStatut(3);
79 } ?></td>
80 <td class="right"><a class="reposition" href="<?php echo $_SERVER["PHP_SELF"].'?id='.urlencode((string) ($object->id)).'&action=dellink&token='.newToken().'&dellinkid='.urlencode((string) ($key)); ?>"><?php echo img_picto($langs->transnoentitiesnoconv("RemoveLink"), 'unlink'); ?></a></td>
81 </tr>
82 <?php
83}
84if (count($linkedObjectBlock) > 1) {
85 ?>
86 <tr class="liste_total <?php echo(empty($noMoreLinkedObjectBlockAfter) ? 'liste_sub_total' : ''); ?>">
87 <td><?php echo $langs->trans("Total"); ?></td>
88 <td></td>
89 <td class="center"></td>
90 <td class="center"></td>
91 <td class="right"><?php echo price($total); ?></td>
92 <td class="right"></td>
93 <td class="right"></td>
94 </tr>
95 <?php
96}
97
98print "<!-- END PHP TEMPLATE -->\n";
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
const TYPE_CREDIT_NOTE
Credit note invoice.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
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).
$objectlink