dolibarr  20.0.0-beta
objectline_title.tpl.php
1 <?php
2 /* Copyright (C) 2010-2013 Regis Houssin <regis.houssin@inodbox.com>
3  * Copyright (C) 2010-2011 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2012-2013 Christophe Battarel <christophe.battarel@altairis.fr>
5  * Copyright (C) 2012 Cédric Salvador <csalvador@gpcsolutions.fr>
6  * Copyright (C) 2012-2014 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
7  * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
8  * Copyright (C) 2017 Juanjo Menent <jmenent@2byte.es>
9  * Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <https://www.gnu.org/licenses/>.
23  *
24  * Need to have following variables defined:
25  * $object (invoice, order, ...)
26  * $conf
27  * $langs
28  * $element (used to test $user->rights->$element->creer)
29  * $permtoedit (used to replace test $user->rights->$element->creer)
30  * $inputalsopricewithtax (0 by default, 1 to also show column with unit price including tax)
31  * $outputalsopricetotalwithtax
32  * $usemargins (0 to disable all margins columns, 1 to show according to margin setup)
33  *
34  * $type, $text, $description, $line
35  */
36 
37 // Protection to avoid direct call of template
38 if (empty($object) || !is_object($object)) {
39  print "Error, template page can't be called as URL";
40  exit(1);
41 }
42 
43 '@phan-var-force CommonObject $this
44  @phan-var-force CommonObject $object';
45 
46 print "<!-- BEGIN PHP TEMPLATE objectline_title.tpl.php -->\n";
47 
48 // Title line
49 print "<thead>\n";
50 
51 print '<tr class="liste_titre nodrag nodrop">';
52 
53 // Adds a line numbering column
54 if (getDolGlobalString('MAIN_VIEW_LINE_NUMBER')) {
55  print '<th class="linecolnum center">&nbsp;</th>';
56 }
57 
58 // Description
59 print '<th class="linecoldescription">'.$langs->trans('Description');
60 $constant = get_class($object)."::STATUS_DRAFT";
61 if (in_array($object->element, array('propal', 'commande', 'facture', 'order_supplier', 'invoice_supplier')) && defined($constant) && $object->status == constant($constant)) {
62  if (empty($disableedit) && GETPOST('mode', 'aZ09') != 'servicedateforalllines') {
63  print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?mode=servicedateforalllines&id='.$object->id.'">'.img_edit($langs->trans("UpdateForAllLines"), 0, 'class="clickvatforalllines opacitymedium paddingleft cursorpointer"').'</a>';
64  }
65  if (GETPOST('mode', 'aZ09') == 'servicedateforalllines') {
66  print '&nbsp;&nbsp;<div class="classvatforalllines inline-block nowraponall">';
67  $hourmin = (isset($conf->global->MAIN_USE_HOURMIN_IN_DATE_RANGE) ? $conf->global->MAIN_USE_HOURMIN_IN_DATE_RANGE : '');
68  print $langs->trans('ServiceLimitedDuration').' '.$langs->trans('From').' ';
69  print $form->selectDate('', 'alldate_start', $hourmin, $hourmin, 1, "updatealllines", 1, 0);
70  print ' '.$langs->trans('to').' ';
71  print $form->selectDate('', 'alldate_end', $hourmin, $hourmin, 1, "updatealllines", 1, 0);
72  print '<input class="inline-block button smallpaddingimp" type="submit" name="submitforalllines" value="'.$langs->trans("Update").'">';
73  print '</div>';
74  }
75 }
76 print '</th>';
77 
78 // Supplier ref
79 if ($this->element == 'supplier_proposal' || $this->element == 'order_supplier' || $this->element == 'invoice_supplier' || $this->element == 'invoice_supplier_rec') {
80  print '<th class="linerefsupplier maxwidth125"><span id="title_fourn_ref">'.$langs->trans("SupplierRef").'</span></th>';
81 }
82 
83 // VAT
84 print '<th class="linecolvat right nowraponall">';
85 if (getDolGlobalString('FACTURE_LOCAL_TAX1_OPTION') || getDolGlobalString('FACTURE_LOCAL_TAX2_OPTION')) {
86  print $langs->trans('Taxes');
87 } else {
88  print $langs->trans('VAT');
89 }
90 
91 // @phan-suppress-next-line PhanUndeclaredConstantOfClass
92 if (in_array($object->element, array('propal', 'commande', 'facture', 'supplier_proposal', 'order_supplier', 'invoice_supplier')) && $object->status == $object::STATUS_DRAFT) {
93  global $mysoc;
94 
95  if (empty($disableedit) && GETPOST('mode', 'aZ09') != 'vatforalllines') {
96  print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?mode=vatforalllines&id='.$object->id.'">'.img_edit($langs->trans("UpdateForAllLines"), 0, 'class="clickvatforalllines opacitymedium paddingleft cursorpointer"').'</a>';
97  }
98  //print '<script>$(document).ready(function() { $(".clickvatforalllines").click(function() { jQuery(".classvatforalllines").toggle(); }); });</script>';
99  if (GETPOST('mode', 'aZ09') == 'vatforalllines') {
100  print '<div class="classvatforalllines inline-block nowraponall">';
101  print $form->load_tva('vatforalllines', '', $mysoc, $object->thirdparty, 0, 0, '', false, 1);
102  print '<input class="inline-block button smallpaddingimp" type="submit" name="submitforalllines" value="'.$langs->trans("Update").'">';
103  print '</div>';
104  }
105 }
106 print '</th>';
107 
108 // Price HT
109 print '<th class="linecoluht right nowraponall">'.$langs->trans('PriceUHT').'</th>';
110 
111 // Multicurrency
112 if (isModEnabled("multicurrency") && $this->multicurrency_code != $conf->currency) {
113  print '<th class="linecoluht_currency right" style="width: 80px">'.$langs->trans('PriceUHTCurrency', $this->multicurrency_code).'</th>';
114 }
115 
116 if (!empty($inputalsopricewithtax) && !getDolGlobalInt('MAIN_NO_INPUT_PRICE_WITH_TAX')) {
117  print '<th class="right nowraponall">'.$langs->trans('PriceUTTC').'</th>';
118 }
119 
120 // Qty
121 print '<th class="linecolqty right">'.$langs->trans('Qty').'</th>';
122 
123 // Unit
124 if (getDolGlobalString('PRODUCT_USE_UNITS')) {
125  print '<th class="linecoluseunit left">'.$langs->trans('Unit').'</th>';
126 }
127 
128 // Reduction short
129 print '<th class="linecoldiscount right nowraponall">';
130 print $langs->trans('ReductionShort');
131 
132 // @phan-suppress-next-line PhanUndeclaredConstantOfClass
133 if (in_array($object->element, array('propal', 'commande', 'facture')) && $object->status == $object::STATUS_DRAFT) {
134  global $mysoc;
135 
136  if (empty($disableedit) && GETPOST('mode', 'aZ09') != 'remiseforalllines') {
137  print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?mode=remiseforalllines&id='.$object->id.'">'.img_edit($langs->trans("UpdateForAllLines"), 0, 'class="clickvatforalllines opacitymedium paddingleft cursorpointer"').'</a>';
138  }
139  //print '<script>$(document).ready(function() { $(".clickremiseforalllines").click(function() { jQuery(".classremiseforalllines").toggle(); }); });</script>';
140  if (GETPOST('mode', 'aZ09') == 'remiseforalllines') {
141  print '<div class="remiseforalllines inline-block nowraponall">';
142  print '<input class="inline-block smallpaddingimp width50 right" name="remiseforalllines" value="" placeholder="%">';
143  print '<input class="inline-block button smallpaddingimp" type="submit" name="submitforalllines" value="'.$langs->trans("Update").'">';
144  print '</div>';
145  }
146 }
147 print '</th>';
148 
149 // Fields for situation invoice
150 if (isset($this->situation_cycle_ref) && $this->situation_cycle_ref) {
151  print '<th class="linecolcycleref right">'.$langs->trans('Progress').'</th>';
152  print '<th class="linecolcycleref2 right">'.$form->textwithpicto($langs->trans('TotalHT100Short'), $langs->trans('UnitPriceXQtyLessDiscount')).'</th>';
153 }
154 
155 // Purchase price
156 if ($usemargins && isModEnabled('margin') && empty($user->socid)) {
157  if ($user->hasRight('margins', 'creer')) {
158  if (getDolGlobalString('MARGIN_TYPE') == "1") {
159  print '<th class="linecolmargin1 margininfos right width75">'.$langs->trans('BuyingPrice').'</th>';
160  } else {
161  print '<th class="linecolmargin1 margininfos right width75">'.$langs->trans('CostPrice').'</th>';
162  }
163  }
164 
165  if (getDolGlobalString('DISPLAY_MARGIN_RATES') && $user->hasRight('margins', 'liretous')) {
166  print '<th class="linecolmargin2 margininfos right width75">'.$langs->trans('MarginRate');
167  if ($user->hasRight("propal", "creer")) {
168  print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?mode=marginforalllines&id='.$object->id.'">'.img_edit($langs->trans("UpdateForAllLines"), 0, 'class="clickmarginforalllines opacitymedium paddingleft cursorpointer"').'</a>';
169  if (GETPOST('mode', 'aZ09') == 'marginforalllines') {
170  print '<div class="classmarginforalllines inline-block nowraponall">';
171  print '<input type="number" name="marginforalllines" min="0" max="999.9" value="20.0" step="0.1" class="width50"><label>%</label>';
172  print '<input class="inline-block button smallpaddingimp" type="submit" name="submitforallmargins" value="'.$langs->trans("Update").'">';
173  print '</div>';
174  }
175  }
176  print '</th>';
177  }
178  if (getDolGlobalString('DISPLAY_MARK_RATES') && $user->hasRight('margins', 'liretous')) {
179  print '<th class="linecolmargin2 margininfos right width75">'.$langs->trans('MarkRate').'</th>';
180  }
181 }
182 
183 // Total HT
184 print '<th class="linecolht right">'.$langs->trans('TotalHTShort').'</th>';
185 
186 // Multicurrency
187 if (isModEnabled("multicurrency") && $this->multicurrency_code != $conf->currency) {
188  print '<th class="linecoltotalht_currency right">'.$langs->trans('TotalHTShortCurrency', $this->multicurrency_code).'</th>';
189 }
190 
191 if ($outputalsopricetotalwithtax) {
192  print '<th class="right" style="width: 80px">'.$langs->trans('TotalTTCShort').'</th>';
193 }
194 
195 if (isModEnabled('asset') && $object->element == 'invoice_supplier') {
196  print '<th class="linecolasset"></th>';
197 }
198 
199 print '<th class="linecoledit"></th>'; // No width to allow autodim
200 
201 print '<th class="linecoldelete" style="width: 10px"></th>';
202 
203 print '<th class="linecolmove" style="width: 10px"></th>';
204 
205 if ($action == 'selectlines') {
206  print '<th class="linecolcheckall center">';
207  print '<input type="checkbox" class="linecheckboxtoggle" />';
208  print '<script>$(document).ready(function() {$(".linecheckboxtoggle").click(function() {var checkBoxes = $(".linecheckbox");checkBoxes.prop("checked", this.checked);})});</script>';
209  print '</th>';
210 }
211 
212 print "</tr>\n";
213 print "</thead>\n";
214 
215 print "<!-- END PHP TEMPLATE objectline_title.tpl.php -->\n";
if($user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition: card.php:58
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.