forked from Wavyzz/dolibarr
378 lines
17 KiB
PHP
378 lines
17 KiB
PHP
<?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>
|
|
*
|
|
* 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;
|
|
|
|
$usemargins = 0;
|
|
if (!empty($conf->margin->enabled) && !empty($object->element) && in_array($object->element, array('facture', 'facturerec', 'propal', 'commande'))) $usemargins = 1;
|
|
|
|
if (empty($dateSelector)) $dateSelector = 0;
|
|
if (empty($forceall)) $forceall = 0;
|
|
if (empty($senderissupplier)) $senderissupplier = 0;
|
|
if (empty($inputalsopricewithtax)) $inputalsopricewithtax = 0;
|
|
if (empty($outputalsopricetotalwithtax)) $outputalsopricetotalwithtax = 0;
|
|
|
|
// 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"><?php $coldisplay++; ?><?php print ($i + 1); ?></td>
|
|
<?php } ?>
|
|
<td class="linecoldescription minwidth300imp"><?php $coldisplay++; ?><div id="line_<?php print $line->id; ?>"></div>
|
|
<?php
|
|
if (($line->info_bits & 2) == 2) {
|
|
print '<a href="'.DOL_URL_ROOT.'/comm/remx.php?id='.$this->socid.'">';
|
|
$txt = '';
|
|
print img_object($langs->trans("ShowReduc"), 'reduc').' ';
|
|
if ($line->description == '(DEPOSIT)') $txt = $langs->trans("Deposit");
|
|
elseif ($line->description == '(EXCESS RECEIVED)') $txt = $langs->trans("ExcessReceived");
|
|
elseif ($line->description == '(EXCESS PAID)') $txt = $langs->trans("ExcessPaid");
|
|
//else $txt=$langs->trans("Discount");
|
|
print $txt;
|
|
print '</a>';
|
|
if ($line->description)
|
|
{
|
|
if ($line->description == '(CREDIT_NOTE)' && $line->fk_remise_except > 0)
|
|
{
|
|
$discount = new DiscountAbsolute($this->db);
|
|
$discount->fetch($line->fk_remise_except);
|
|
print ($txt ? ' - ' : '').$langs->transnoentities("DiscountFromCreditNote", $discount->getNomUrl(0));
|
|
}
|
|
elseif ($line->description == '(DEPOSIT)' && $line->fk_remise_except > 0)
|
|
{
|
|
$discount = new DiscountAbsolute($this->db);
|
|
$discount->fetch($line->fk_remise_except);
|
|
print ($txt ? ' - ' : '').$langs->transnoentities("DiscountFromDeposit", $discount->getNomUrl(0));
|
|
// Add date of deposit
|
|
if (!empty($conf->global->INVOICE_ADD_DEPOSIT_DATE))
|
|
print ' ('.dol_print_date($discount->datec).')';
|
|
}
|
|
elseif ($line->description == '(EXCESS RECEIVED)' && $objp->fk_remise_except > 0)
|
|
{
|
|
$discount = new DiscountAbsolute($this->db);
|
|
$discount->fetch($line->fk_remise_except);
|
|
print ($txt ? ' - ' : '').$langs->transnoentities("DiscountFromExcessReceived", $discount->getNomUrl(0));
|
|
}
|
|
elseif ($line->description == '(EXCESS PAID)' && $objp->fk_remise_except > 0)
|
|
{
|
|
$discount = new DiscountAbsolute($this->db);
|
|
$discount->fetch($line->fk_remise_except);
|
|
print ($txt ? ' - ' : '').$langs->transnoentities("DiscountFromExcessPaid", $discount->getNomUrl(0));
|
|
}
|
|
else
|
|
{
|
|
print ($txt ? ' - ' : '').dol_htmlentitiesbr($line->description);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$format = $conf->global->MAIN_USE_HOURMIN_IN_DATE_RANGE ? 'dayhour' : 'day';
|
|
|
|
if ($line->fk_product > 0)
|
|
{
|
|
print $form->textwithtooltip($text, $description, 3, '', '', $i, 0, (!empty($line->fk_parent_line) ?img_picto('', 'rightarrow') : ''));
|
|
}
|
|
else
|
|
{
|
|
$type = (!empty($line->product_type) ? $line->product_type : $line->fk_product_type);
|
|
if ($type == 1) $text = img_object($langs->trans('Service'), 'service');
|
|
else $text = img_object($langs->trans('Product'), 'product');
|
|
|
|
if (!empty($line->label)) {
|
|
$text .= ' <strong>'.$line->label.'</strong>';
|
|
print $form->textwithtooltip($text, dol_htmlentitiesbr($line->description), 3, '', '', $i, 0, (!empty($line->fk_parent_line) ?img_picto('', 'rightarrow') : ''));
|
|
} else {
|
|
if (!empty($line->fk_parent_line)) print img_picto('', 'rightarrow');
|
|
if (preg_match('/^\(DEPOSIT\)/', $line->description)) {
|
|
$newdesc = preg_replace('/^\(DEPOSIT\)/', $langs->trans("Deposit"), $line->description);
|
|
print $text.' '.dol_htmlentitiesbr($newdesc);
|
|
}
|
|
else {
|
|
print $text.' '.dol_htmlentitiesbr($line->description);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Show date range
|
|
if ($line->element == 'facturedetrec') {
|
|
if ($line->date_start_fill || $line->date_end_fill) print '<br><div class="clearboth nowraponall">';
|
|
if ($line->date_start_fill) print $langs->trans('AutoFillDateFromShort').': '.yn($line->date_start_fill);
|
|
if ($line->date_start_fill && $line->date_end_fill) print ' - ';
|
|
if ($line->date_end_fill) print $langs->trans('AutoFillDateToShort').': '.yn($line->date_end_fill);
|
|
if ($line->date_start_fill || $line->date_end_fill) print '</div>';
|
|
}
|
|
else {
|
|
if ($line->date_start || $line->date_end) print '<br><div class="clearboth nowraponall">'.get_date_range($line->date_start, $line->date_end, $format).'</div>';
|
|
//print get_date_range($line->date_start, $line->date_end, $format);
|
|
}
|
|
|
|
// Add description in form
|
|
if ($line->fk_product > 0 && !empty($conf->global->PRODUIT_DESC_IN_FORM))
|
|
{
|
|
print (!empty($line->description) && $line->description != $line->product_label) ? '<br>'.dol_htmlentitiesbr($line->description) : '';
|
|
}
|
|
}
|
|
|
|
if ($user->rights->fournisseur->lire && $line->fk_fournprice > 0)
|
|
{
|
|
require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.product.class.php';
|
|
$productfourn = new ProductFournisseur($this->db);
|
|
$productfourn->fetch_product_fournisseur_price($line->fk_fournprice);
|
|
print '<div class="clearboth"></div>';
|
|
print '<span class="opacitymedium">'.$langs->trans('Supplier').' : </span>'.$productfourn->getSocNomUrl(1, 'supplier').' - <span class="opacitymedium">'.$langs->trans('Ref').' : </span>';
|
|
// Supplier ref
|
|
if ($user->rights->produit->creer || $user->rights->service->creer) // change required right here
|
|
{
|
|
print $productfourn->getNomUrl();
|
|
}
|
|
else
|
|
{
|
|
print $productfourn->ref_supplier;
|
|
}
|
|
}
|
|
|
|
if (!empty($conf->accounting->enabled) && $line->fk_accounting_account > 0)
|
|
{
|
|
$accountingaccount = new AccountingAccount($this->db);
|
|
$accountingaccount->fetch($line->fk_accounting_account);
|
|
print '<div class="clearboth"></div><br><span class="opacitymedium">'.$langs->trans('AccountingAffectation').' : </span>'.$accountingaccount->getNomUrl(0, 1, 1);
|
|
}
|
|
|
|
print '</td>';
|
|
if ($object->element == 'supplier_proposal' || $object->element == 'order_supplier' || $object->element == 'invoice_supplier') // We must have same test in printObjectLines
|
|
{
|
|
print '<td class="linecolrefsupplier">';
|
|
print ($line->ref_fourn ? $line->ref_fourn : $line->ref_supplier);
|
|
print '</td>';
|
|
}
|
|
// VAT Rate
|
|
print '<td class="linecolvat nowrap right">';
|
|
$coldisplay++;
|
|
$positiverates = '';
|
|
if (price2num($line->tva_tx)) $positiverates .= ($positiverates ? '/' : '').price2num($line->tva_tx);
|
|
if (price2num($line->total_localtax1)) $positiverates .= ($positiverates ? '/' : '').price2num($line->localtax1_tx);
|
|
if (price2num($line->total_localtax2)) $positiverates .= ($positiverates ? '/' : '').price2num($line->localtax2_tx);
|
|
if (empty($positiverates)) $positiverates = '0';
|
|
print vatrate($positiverates.($line->vat_src_code ? ' ('.$line->vat_src_code.')' : ''), '%', $line->info_bits);
|
|
//print vatrate($line->tva_tx.($line->vat_src_code?(' ('.$line->vat_src_code.')'):''), '%', $line->info_bits);
|
|
?></td>
|
|
|
|
<td class="linecoluht nowrap right"><?php $coldisplay++; ?><?php print price($line->subprice); ?></td>
|
|
|
|
<?php if (!empty($conf->multicurrency->enabled) && $this->multicurrency_code != $conf->currency) { ?>
|
|
<td class="linecoluht_currency nowrap right"><?php $coldisplay++; ?><?php print price($line->multicurrency_subprice); ?></td>
|
|
<?php }
|
|
|
|
if ($inputalsopricewithtax) { ?>
|
|
<td class="linecoluttc nowrap right"><?php $coldisplay++; ?><?php print (isset($line->pu_ttc) ?price($line->pu_ttc) : price($line->subprice)); ?></td>
|
|
<?php } ?>
|
|
|
|
<td class="linecolqty nowrap right"><?php $coldisplay++; ?>
|
|
<?php
|
|
if ((($line->info_bits & 2) != 2) && $line->special_code != 3) {
|
|
// I comment this because it shows info even when not required
|
|
// for example always visible on invoice but must be visible only if stock module on and stock decrease option is on invoice validation and status is not validated
|
|
// must also not be output for most entities (proposal, intervention, ...)
|
|
//if($line->qty > $line->stock) print img_picto($langs->trans("StockTooLow"),"warning", 'style="vertical-align: bottom;"')." ";
|
|
print price($line->qty, 0, '', 0, 0); // Yes, it is a quantity, not a price, but we just want the formating role of function price
|
|
} else print ' ';
|
|
print '</td>';
|
|
|
|
if ($conf->global->PRODUCT_USE_UNITS)
|
|
{
|
|
print '<td class="linecoluseunit nowrap left">';
|
|
$label = $line->getLabelOfUnit('short');
|
|
if ($label !== '') {
|
|
print $langs->trans($label);
|
|
}
|
|
print '</td>';
|
|
}
|
|
if (!empty($line->remise_percent) && $line->special_code != 3) {
|
|
print '<td class="linecoldiscount right">';
|
|
$coldisplay++;
|
|
include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
|
|
print dol_print_reduction($line->remise_percent, $langs);
|
|
print '</td>';
|
|
} else {
|
|
print '<td class="linecoldiscount"> </td>';
|
|
$coldisplay++;
|
|
}
|
|
|
|
// Fields for situation invoices
|
|
if ($this->situation_cycle_ref)
|
|
{
|
|
include_once DOL_DOCUMENT_ROOT.'/core/lib/price.lib.php';
|
|
$coldisplay++;
|
|
print '<td class="linecolcycleref nowrap right">'.$line->situation_percent.'%</td>';
|
|
$coldisplay++;
|
|
$locataxes_array = getLocalTaxesFromRate($line->tva.($line->vat_src_code ? ' ('.$line->vat_src_code.')' : ''), 0, ($senderissupplier ? $mysoc : $object->thirdparty), ($senderissupplier ? $object->thirdparty : $mysoc));
|
|
$tmp = calcul_price_total($line->qty, $line->pu, $line->remise_percent, $line->txtva, -1, -1, 0, 'HT', $line->info_bits, $line->type, ($senderissupplier ? $object->thirdparty : $mysoc), $locataxes_array, 100, $object->multicurrency_tx, $line->multicurrency_subprice);
|
|
print '<td align="right" class="linecolcycleref2 nowrap">'.price($tmp[0]).'</td>';
|
|
}
|
|
|
|
if ($usemargins && !empty($conf->margin->enabled) && empty($user->socid))
|
|
{
|
|
if (!empty($user->rights->margins->creer)) { ?>
|
|
<td class="linecolmargin1 nowrap margininfos right"><?php $coldisplay++; ?><?php print price($line->pa_ht); ?></td>
|
|
<?php }
|
|
if (!empty($conf->global->DISPLAY_MARGIN_RATES) && $user->rights->margins->liretous) { ?>
|
|
<td class="linecolmargin2 nowrap margininfos right"><?php $coldisplay++; ?><?php print (($line->pa_ht == 0) ? 'n/a' : price(price2num($line->marge_tx, 'MT')).'%'); ?></td>
|
|
<?php }
|
|
if (!empty($conf->global->DISPLAY_MARK_RATES) && $user->rights->margins->liretous) {?>
|
|
<td class="linecolmargin2 nowrap margininfos right"><?php $coldisplay++; ?><?php print price(price2num($line->marque_tx, 'MT')).'%'; ?></td>
|
|
<?php }
|
|
}
|
|
if ($line->special_code == 3) { ?>
|
|
<td class="linecoloption nowrap right"><?php $coldisplay++; ?><?php print $langs->trans('Option'); ?></td>
|
|
<?php } else {
|
|
print '<td class="linecolht nowrap right">';
|
|
$coldisplay++;
|
|
if (empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER))
|
|
{
|
|
$tooltiponprice = $langs->transcountry("TotalHT", $mysoc->country_code).'='.price($line->total_ht);
|
|
$tooltiponprice .= '<br>'.$langs->transcountry("TotalVAT", ($senderissupplier ? $object->thirdparty->country_code : $mysoc->country_code)).'='.price($line->total_tva);
|
|
if (!$senderissupplier && is_object($object->thirdparty)) {
|
|
if ($mysoc->useLocalTax(1)) {
|
|
if (($mysoc->country_code == $object->thirdparty->country_code) || $object->thirdparty->useLocalTax(1)) {
|
|
$tooltiponprice .= '<br>'.$langs->transcountry("TotalLT1", ($senderissupplier ? $object->thirdparty->country_code : $mysoc->country_code)).'='.price($line->total_localtax1);
|
|
} else {
|
|
$tooltiponprice .= '<br>'.$langs->transcountry("TotalLT1", ($senderissupplier ? $object->thirdparty->country_code : $mysoc->country_code)).'=<span class="opacitymedium">'.$langs->trans("NotUsedForThisCustomer").'</span>';
|
|
}
|
|
}
|
|
if ($mysoc->useLocalTax(2)) {
|
|
if (($mysoc->country_code == $object->thirdparty->country_code) || $object->thirdparty->useLocalTax(2)) {
|
|
$tooltiponprice .= '<br>'.$langs->transcountry("TotalLT2", ($senderissupplier ? $object->thirdparty->country_code : $mysoc->country_code)).'='.price($line->total_localtax2);
|
|
} else {
|
|
$tooltiponprice .= '<br>'.$langs->transcountry("TotalLT2", ($senderissupplier ? $object->thirdparty->country_code : $mysoc->country_code)).'=<span class="opacitymedium">'.$langs->trans("NotUsedForThisCustomer").'</span>';
|
|
}
|
|
}
|
|
}
|
|
$tooltiponprice .= '<br>'.$langs->transcountry("TotalTTC", $mysoc->country_code).'='.price($line->total_ttc);
|
|
|
|
print '<span class="classfortooltip" title="'.dol_escape_htmltag($tooltiponprice).'">';
|
|
}
|
|
print price($line->total_ht);
|
|
if (empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER))
|
|
{
|
|
print '</span>';
|
|
}
|
|
print '</td>';
|
|
if (!empty($conf->multicurrency->enabled) && $this->multicurrency_code != $conf->currency) {
|
|
print '<td class="linecolutotalht_currency nowrap right">'.price($line->multicurrency_total_ht).'</td>';
|
|
$coldisplay++;
|
|
}
|
|
}
|
|
if ($outputalsopricetotalwithtax) {
|
|
print '<td class="linecolht nowrap right">'.price($line->total_ttc).'</td>';
|
|
$coldisplay++;
|
|
}
|
|
|
|
if ($this->statut == 0 && ($object_rights->creer) && $action != 'selectlines') {
|
|
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 (($line->fk_prev_id == null) && empty($disableremove)) { //La suppression n'est autorisée que si il n'y a pas de ligne dans une précédente situation
|
|
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";
|
|
|
|
//Line extrafield
|
|
if (!empty($extrafields))
|
|
{
|
|
print $line->showOptionals($extrafields, 'view', array('style'=>'class="drag drop oddeven"', 'colspan'=>$coldisplay), '', '', 1);
|
|
}
|
|
|
|
print "<!-- END PHP TEMPLATE objectline_view.tpl.php -->\n";
|