| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <?php
- /* Copyright (C) 2010-2013 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2010-2011 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2012-2013 Christophe Battarel <christophe.battarel@altairis.fr>
- * Copyright (C) 2012 Cédric Salvador <csalvador@gpcsolutions.fr>
- * Copyright (C) 2012-2014 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
- * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
- * Copyright (C) 2017 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- *
- * Need to have following variables defined:
- * $object (invoice, order, ...)
- * $conf
- * $langs
- * $element (used to test $user->rights->$element->creer)
- * $permtoedit (used to replace test $user->rights->$element->creer)
- * $inputalsopricewithtax (0 by default, 1 to also show column with unit price including tax)
- * $outputalsopricetotalwithtax
- * $usemargins (0 to disable all margins columns, 1 to show according to margin setup)
- *
- * $type, $text, $description, $line
- */
- // Protection to avoid direct call of template
- if (empty($object) || !is_object($object)) {
- print "Error, template page can't be called as URL";
- exit;
- }
- print "<!-- BEGIN PHP TEMPLATE objectline_title.tpl.php -->\n";
- // Title line
- print "<thead>\n";
- print '<tr class="liste_titre nodrag nodrop">';
- // Adds a line numbering column
- if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER)) {
- print '<th class="linecolnum center"> </th>';
- }
- // Description
- print '<th class="linecoldescription">'.$langs->trans('Description').'</th>';
- // Supplier ref
- if ($this->element == 'supplier_proposal' || $this->element == 'order_supplier' || $this->element == 'invoice_supplier' || $this->element == 'invoice_supplier_rec') {
- print '<th class="linerefsupplier maxwidth125"><span id="title_fourn_ref">'.$langs->trans("SupplierRef").'</span></th>';
- }
- // VAT
- print '<th class="linecolvat right nowraponall">';
- if (!empty($conf->global->FACTURE_LOCAL_TAX1_OPTION) || !empty($conf->global->FACTURE_LOCAL_TAX2_OPTION)) {
- print $langs->trans('Taxes');
- } else {
- print $langs->trans('VAT');
- }
- if (in_array($object->element, array('propal', 'commande', 'facture', 'supplier_proposal', 'order_supplier', 'invoice_supplier')) && $object->status == $object::STATUS_DRAFT) {
- global $mysoc;
- if (empty($disableedit) && GETPOST('mode', 'aZ09') != 'vatforalllines') {
- 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>';
- }
- //print '<script>$(document).ready(function() { $(".clickvatforalllines").click(function() { jQuery(".classvatforalllines").toggle(); }); });</script>';
- if (GETPOST('mode', 'aZ09') == 'vatforalllines') {
- print '<div class="classvatforalllines inline-block nowraponall">';
- print $form->load_tva('vatforalllines', '', $mysoc, $object->thirdparty, 0, 0, '', false, 1);
- print '<input class="inline-block button smallpaddingimp" type="submit" name="submitforalllines" value="'.$langs->trans("Update").'">';
- print '</div>';
- }
- }
- print '</th>';
- // Price HT
- print '<th class="linecoluht right nowraponall">'.$langs->trans('PriceUHT').'</th>';
- // Multicurrency
- if (isModEnabled("multicurrency") && $this->multicurrency_code != $conf->currency) {
- print '<th class="linecoluht_currency right" style="width: 80px">'.$langs->trans('PriceUHTCurrency', $this->multicurrency_code).'</th>';
- }
- if (!empty($inputalsopricewithtax) && !getDolGlobalInt('MAIN_NO_INPUT_PRICE_WITH_TAX')) {
- print '<th class="right nowraponall">'.$langs->trans('PriceUTTC').'</th>';
- }
- // Qty
- print '<th class="linecolqty right">'.$langs->trans('Qty').'</th>';
- // Unit
- if (!empty($conf->global->PRODUCT_USE_UNITS)) {
- print '<th class="linecoluseunit left">'.$langs->trans('Unit').'</th>';
- }
- // Reduction short
- print '<th class="linecoldiscount right nowraponall">';
- print $langs->trans('ReductionShort');
- if (in_array($object->element, array('propal', 'commande', 'facture')) && $object->status == $object::STATUS_DRAFT) {
- global $mysoc;
- if (empty($disableedit) && GETPOST('mode', 'aZ09') != 'remiseforalllines') {
- 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>';
- }
- //print '<script>$(document).ready(function() { $(".clickremiseforalllines").click(function() { jQuery(".classremiseforalllines").toggle(); }); });</script>';
- if (GETPOST('mode', 'aZ09') == 'remiseforalllines') {
- print '<div class="remiseforalllines inline-block nowraponall">';
- print '<input class="inline-block smallpaddingimp width50 right" name="remiseforalllines" value="" placeholder="%">';
- print '<input class="inline-block button smallpaddingimp" type="submit" name="submitforalllines" value="'.$langs->trans("Update").'">';
- print '</div>';
- }
- }
- print '</th>';
- // Fields for situation invoice
- if (isset($this->situation_cycle_ref) && $this->situation_cycle_ref) {
- print '<th class="linecolcycleref right">'.$langs->trans('Progress').'</th>';
- print '<th class="linecolcycleref2 right">'.$form->textwithpicto($langs->trans('TotalHT100Short'), $langs->trans('UnitPriceXQtyLessDiscount')).'</th>';
- }
- // Purchase price
- if ($usemargins && isModEnabled('margin') && empty($user->socid)) {
- if (!empty($user->rights->margins->creer)) {
- if ($conf->global->MARGIN_TYPE == "1") {
- print '<th class="linecolmargin1 margininfos right" style="width: 80px">'.$langs->trans('BuyingPrice').'</th>';
- } else {
- print '<th class="linecolmargin1 margininfos right" style="width: 80px">'.$langs->trans('CostPrice').'</th>';
- }
- }
- if (!empty($conf->global->DISPLAY_MARGIN_RATES) && $user->rights->margins->liretous) {
- print '<th class="linecolmargin2 margininfos right" style="width: 50px">'.$langs->trans('MarginRate').'</th>';
- }
- if (!empty($conf->global->DISPLAY_MARK_RATES) && $user->rights->margins->liretous) {
- print '<th class="linecolmargin2 margininfos right" style="width: 50px">'.$langs->trans('MarkRate').'</th>';
- }
- }
- // Total HT
- print '<th class="linecolht right">'.$langs->trans('TotalHTShort').'</th>';
- // Multicurrency
- if (isModEnabled("multicurrency") && $this->multicurrency_code != $conf->currency) {
- print '<th class="linecoltotalht_currency right">'.$langs->trans('TotalHTShortCurrency', $this->multicurrency_code).'</th>';
- }
- if ($outputalsopricetotalwithtax) {
- print '<th class="right" style="width: 80px">'.$langs->trans('TotalTTCShort').'</th>';
- }
- if (isModEnabled('asset') && $object->element == 'invoice_supplier') {
- print '<th class="linecolasset"></th>';
- }
- print '<th class="linecoledit"></th>'; // No width to allow autodim
- print '<th class="linecoldelete" style="width: 10px"></th>';
- print '<th class="linecolmove" style="width: 10px"></th>';
- if ($action == 'selectlines') {
- print '<th class="linecolcheckall center">';
- print '<input type="checkbox" class="linecheckboxtoggle" />';
- print '<script>$(document).ready(function() {$(".linecheckboxtoggle").click(function() {var checkBoxes = $(".linecheckbox");checkBoxes.prop("checked", this.checked);})});</script>';
- print '</th>';
- }
- print "</tr>\n";
- print "</thead>\n";
- print "<!-- END PHP TEMPLATE objectline_title.tpl.php -->\n";
|