| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?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) 2021 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
- * Copyright (C) 2021 Greg Rastklan <greg.rastklan@atm-consulting.fr>
- * Copyright (C) 2021 Jean-Pascal BOUDET <jean-pascal.boudet@atm-consulting.fr>
- * Copyright (C) 2021 Grégory BLEMAND <gregory.blemand@atm-consulting.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
- * $dateSelector
- * $forceall (0 by default, 1 for supplier invoices/orders)
- * $element (used to test $user->rights->$element->creer)
- * $permtoedit (used to replace test $user->rights->$element->creer)
- * $senderissupplier (0 by default, 1 for supplier invoices/orders)
- * $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)
- * $object_rights->creer initialized from = $object->getRights()
- * $disableedit, $disablemove, $disableremove
- *
- * $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;
- }
- global $mysoc;
- global $forceall, $senderissupplier, $inputalsopricewithtax, $outputalsopricetotalwithtax;
- // add html5 elements
- $domData = ' data-element="'.$line->element.'"';
- $domData .= ' data-id="'.$line->id.'"';
- $domData .= ' data-qty="'.$line->qty.'"';
- $domData .= ' data-product_type="'.$line->product_type.'"';
- $coldisplay = 0;
- ?>
- <!-- BEGIN PHP TEMPLATE objectline_view.tpl.php -->
- <tr id="row-<?php print $line->id?>" class="drag drop oddeven" <?php print $domData; ?> >
- <?php if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER)) { ?>
- <td class="linecolnum center"><span class="opacitymedium"><?php $coldisplay++; ?><?php print ($i + 1); ?></span></td>
- <?php } ?>
- <td class="linecollabel"><?php $coldisplay++; ?><div id="line_<?php print $line->id; ?>"></div>
- <?php
- if ($line->fk_skill > 0) {
- $skill = new Skill($this->db);
- $resSkill = $skill->fetch($line->fk_skill);
- if ($resSkill > 0) {
- print Skill::typeCodeToLabel($skill->skill_type).'</td>';
- print '<td>'.$skill->getNomUrl(1);
- }
- }
- ?>
- </td>
- <td class="linecoldescription minwidth300imp"><?php $coldisplay++; ?>
- <?php
- // Add description in form
- if ($line->fk_skill > 0 && $resSkill > 0) {
- print $skill->description;
- }
- print '</td>';
- ?>
- <td class="linecolrank nowrap right"><?php $coldisplay++; ?>
- <?php
- global $permissiontoadd;
- print displayRankInfos($line->rankorder, $line->fk_skill, 'TNote', ($this->status == 0 && $permissiontoadd) ? 'edit' : 'view');
- ?>
- </td>
- <?php
- if ($this->statut == 0 && !empty($object_rights->creer) && $action != 'selectlines') {
- $situationinvoicelinewithparent = 0;
- if ($line->fk_prev_id != null && in_array($object->element, array('facture', 'facturedet'))) {
- if (!empty($object->situation_cycle_ref)) {
- // Set constant to disallow editing during a situation cycle
- $situationinvoicelinewithparent = 1;
- }
- }
- print '<td class="linecoledit center">';
- $coldisplay++;
- if (($line->info_bits & 2) == 2 || !empty($disableedit)) {
- } else { ?>
- <a class="editfielda reposition" href="<?php print $_SERVER["PHP_SELF"].'?id='.$this->id.'&action=editline&lineid='.$line->id.'#line_'.$line->id; ?>">
- <?php print img_edit().'</a>';
- }
- print '</td>';
- /*print '<td class="linecoldelete center">';
- $coldisplay++;
- if (!$situationinvoicelinewithparent && empty($disableremove)) { // For situation invoice, deletion is not possible if there is a parent company.
- print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?id='.$this->id.'&action=ask_deleteline&lineid='.$line->id.'">';
- print img_delete();
- print '</a>';
- }
- print '</td>';
- if ($num > 1 && $conf->browser->layout != 'phone' && ($this->situation_counter == 1 || !$this->situation_cycle_ref) && empty($disablemove)) {
- print '<td class="linecolmove tdlineupdown center">';
- $coldisplay++;
- if ($i > 0) { ?>
- <a class="lineupdown" href="<?php print $_SERVER["PHP_SELF"].'?id='.$this->id.'&action=up&rowid='.$line->id; ?>">
- <?php print img_up('default', 0, 'imgupforline'); ?>
- </a>
- <?php }
- if ($i < $num - 1) { ?>
- <a class="lineupdown" href="<?php print $_SERVER["PHP_SELF"].'?id='.$this->id.'&action=down&rowid='.$line->id; ?>">
- <?php print img_down('default', 0, 'imgdownforline'); ?>
- </a>
- <?php }
- print '</td>';
- } else {
- print '<td '.(($conf->browser->layout != 'phone' && empty($disablemove)) ? ' class="linecolmove tdlineupdown center"' : ' class="linecolmove center"').'></td>';
- $coldisplay++;
- }*/
- } else {
- //print '<td colspan="3"></td>';
- $coldisplay = $coldisplay + 3;
- }
- if ($action == 'selectlines') { ?>
- <td class="linecolcheck center"><input type="checkbox" class="linecheckbox" name="line_checkbox[<?php print $i + 1; ?>]" value="<?php print $line->id; ?>" ></td>
- <?php }
- print "</tr>\n";
- print "<!-- END PHP TEMPLATE objectline_view.tpl.php -->\n";
|