File: /home/confeduphaar/backip-old-files/components/com_virtuemart/views/orders/tmpl/details_items.php
<?php
/**
*
* Order items view
*
* @package VirtueMart
* @subpackage Orders
* @author Oscar van Eijk, Valerie Isaksen
* @link https://virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: details_items.php 10033 2019-03-26 13:31:15Z Milbo $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
if($this->format == 'pdf'){
$widthTable = '100';
$widthTitle = '27';
} else {
$widthTable = '100';
$widthTitle = '30';
}
?>
<table width="<?php echo $widthTable ?>%" cellspacing="0" cellpadding="0" border="0">
<tr style="text-align: left;" class="sectiontableheader">
<th style="text-align: left;" width="10%"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_SKU') ?></th>
<th style="text-align: left;" colspan="2" width="<?php echo $widthTitle ?>%" ><?php echo vmText::_('COM_VIRTUEMART_PRODUCT_NAME_TITLE') ?></th>
<th style="text-align: center;" width="10%"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PRODUCT_STATUS') ?></th>
<th style="text-align: right;" width="10%" ><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PRICE') ?></th>
<th style="text-align: right;" width="6%"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_QTY') ?></th>
<?php if ( VmConfig::get('show_tax')) { ?>
<th style="text-align: right;" width="11%" ><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PRODUCT_TAX') ?></th>
<?php } ?>
<th style="text-align: right;" width="11%"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_SUBTOTAL_DISCOUNT_AMOUNT') ?></th>
<th style="text-align: right;" width="12%"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_TOTAL') ?></th>
</tr>
<?php
foreach($this->orderdetails['items'] as $item) {
$qtt = $item->product_quantity ;
$_link = JRoute::_('index.php?option=com_virtuemart&view=productdetails&virtuemart_category_id=' . $item->virtuemart_category_id . '&virtuemart_product_id=' . $item->virtuemart_product_id, FALSE);
?>
<tr style="vertical-align: top;">
<td style="text-align: left;">
<?php echo $item->order_item_sku; ?>
</td>
<td style="text-align: left;" colspan="2" >
<div><a href="<?php echo $_link; ?>"><?php echo $item->order_item_name; ?></a></div>
<?php
$product_attribute = VirtueMartModelCustomfields::CustomsFieldOrderDisplay($item,'FE');
echo $product_attribute;
?>
</td>
<td style="text-align: center;">
<?php echo $this->orderstatuses[$item->order_status]; ?>
</td>
<td style="text-align: right;" class="priceCol" >
<?php
$item->product_discountedPriceWithoutTax = (float) $item->product_discountedPriceWithoutTax;
if (!empty($item->product_priceWithoutTax) && $item->product_discountedPriceWithoutTax != $item->product_priceWithoutTax) {
echo '<span class="line-through">'.$this->currency->priceDisplay($item->product_item_price, $this->user_currency_id) .'</span><br />';
echo '<span >'.$this->currency->priceDisplay($item->product_discountedPriceWithoutTax, $this->user_currency_id) .'</span><br />';
} else {
echo '<span >'.$this->currency->priceDisplay($item->product_item_price, $this->user_currency_id) .'</span><br />';
}
?>
</td>
<td style="text-align: right;" >
<?php echo $qtt; ?>
</td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td style="text-align: right;" class="priceCol"><?php echo "<span class='priceColor2'>".$this->currency->priceDisplay($item->product_tax ,$this->user_currency_id, $qtt)."</span>" ?></td>
<?php } ?>
<td style="text-align: right;" class="priceCol" >
<?php echo $this->currency->priceDisplay( $item->product_subtotal_discount ,$this->user_currency_id); //No quantity is already stored with it ?>
</td>
<td style="text-align: right;" class="priceCol">
<?php
$item->product_basePriceWithTax = (float) $item->product_basePriceWithTax;
$class = '';
if(!empty($item->product_basePriceWithTax) && $item->product_basePriceWithTax != $item->product_final_price ) {
echo '<span class="line-through" >'.$this->currency->priceDisplay($item->product_basePriceWithTax,$this->user_currency_id,$qtt) .'</span><br />' ;
}
elseif (empty($item->product_basePriceWithTax) && $item->product_item_price != $item->product_final_price) {
echo '<span class="line-through">' . $this->currency->priceDisplay($item->product_item_price,$this->user_currency_id,$qtt) . '</span><br />';
}
echo $this->currency->priceDisplay( $item->product_subtotal_with_tax ,$this->user_currency_id); //No quantity or you must use product_final_price ?>
</td>
</tr>
<?php } ?>
<tr class="sectiontableentry1">
<td colspan="6" style="text-align: right;"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PRODUCT_PRICES_TOTAL'); ?></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td style="text-align: right;"><?php echo "<span class='priceColor2'>".$this->currency->priceDisplay($this->orderdetails['details']['BT']->order_tax,$this->user_currency_id)."</span>" ?></td>
<?php } ?>
<td style="text-align: right;"><?php echo "<span class='priceColor2'>".$this->currency->priceDisplay($this->orderdetails['details']['BT']->order_discountAmount,$this->user_currency_id)."</span>" ?></td>
<td style="text-align: right;"><?php echo $this->currency->priceDisplay($this->orderdetails['details']['BT']->order_salesPrice,$this->user_currency_id) ?></td>
</tr>
<?php
if ($this->orderdetails['details']['BT']->coupon_discount <> 0.00) {
$coupon_code=$this->orderdetails['details']['BT']->coupon_code?' ('.$this->orderdetails['details']['BT']->coupon_code.')':'';
?>
<tr>
<td style="text-align: right;" class="pricePad" colspan="6"><?php echo vmText::_('COM_VIRTUEMART_COUPON_DISCOUNT').$coupon_code ?></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td style="text-align: right;"> </td>
<?php } ?>
<td style="text-align: right;"> </td>
<td style="text-align: right;"><?php echo $this->currency->priceDisplay($this->orderdetails['details']['BT']->coupon_discount,$this->user_currency_id); ?></td>
</tr>
<?php } ?>
<?php
foreach($this->orderdetails['calc_rules'] as $rule){
if ($rule->calc_kind== 'DBTaxRulesBill') { ?>
<tr>
<td colspan="6" style="text-align: right;" class="pricePad"><?php echo $rule->calc_rule_name ?> </td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td style="text-align: right;"> </td>
<?php } ?>
<td style="text-align: right;"><?php echo $this->currency->priceDisplay($rule->calc_amount,$this->user_currency_id); ?> </td>
<td style="text-align: right;"><?php echo $this->currency->priceDisplay($rule->calc_amount,$this->user_currency_id); ?> </td>
</tr>
<?php
} elseif ($rule->calc_kind == 'taxRulesBill') { ?>
<tr>
<td colspan="6" style="text-align: right;" class="pricePad"><?php echo $rule->calc_rule_name ?> </td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td style="text-align: right;"><?php echo $this->currency->priceDisplay($rule->calc_amount,$this->user_currency_id); ?> </td>
<?php } ?>
<td style="text-align: right;"> </td>
<td style="text-align: right;"><?php echo $this->currency->priceDisplay($rule->calc_amount,$this->user_currency_id); ?> </td>
</tr>
<?php
} elseif ($rule->calc_kind == 'DATaxRulesBill') { ?>
<tr>
<td colspan="6" style="text-align: right;" class="pricePad"><?php echo $rule->calc_rule_name ?> </td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td style="text-align: right;"> </td>
<?php } ?>
<td style="text-align: right;"><?php echo $this->currency->priceDisplay($rule->calc_amount,$this->user_currency_id); ?> </td>
<td style="text-align: right;"><?php echo $this->currency->priceDisplay($rule->calc_amount,$this->user_currency_id); ?> </td>
</tr>
<?php
}
} ?>
<tr>
<td style="text-align: right;" class="pricePad" colspan="6"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_SHIPPING') ?></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td style="text-align: right;"><?php echo "<span class='priceColor2'>".$this->currency->priceDisplay($this->orderdetails['details']['BT']->order_shipment_tax, $this->user_currency_id)."</span>" ?></td>
<?php } ?>
<td style="text-align: right;"> </td>
<td style="text-align: right;"><?php echo $this->currency->priceDisplay($this->orderdetails['details']['BT']->order_shipment+ $this->orderdetails['details']['BT']->order_shipment_tax, $this->user_currency_id); ?></td>
</tr>
<tr>
<td style="text-align: right;" class="pricePad" colspan="6"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PAYMENT') ?></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td style="text-align: right;"><?php echo "<span class='priceColor2'>".$this->currency->priceDisplay($this->orderdetails['details']['BT']->order_payment_tax, $this->user_currency_id)."</span>" ?></td>
<?php } ?>
<td style="text-align: right;"> </td>
<td style="text-align: right;"><?php echo $this->currency->priceDisplay($this->orderdetails['details']['BT']->order_payment+ $this->orderdetails['details']['BT']->order_payment_tax, $this->user_currency_id); ?></td>
</tr>
<tr>
<td style="text-align: right;" class="pricePad" colspan="6"><strong><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_TOTAL') ?></strong></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td style="text-align: right;"><span class='priceColor2'><?php echo $this->currency->priceDisplay($this->orderdetails['details']['BT']->order_billTaxAmount, $this->user_currency_id); ?></span></td>
<?php } ?>
<td style="text-align: right;"><span class='priceColor2'><?php echo $this->currency->priceDisplay($this->orderdetails['details']['BT']->order_billDiscountAmount, $this->user_currency_id); ?></span></td>
<td style="text-align: right;"><strong><?php echo $this->currency->priceDisplay($this->orderdetails['details']['BT']->order_total, $this->user_currency_id); ?></strong></td>
</tr>
<tr style="border-top-style:double">
<td align="left" colspan="3" style="padding-right: 5px;"><strong><?php echo vmText::_('COM_VM_ORDER_BALANCE') ?></strong></td>
<?php
$this->orderbt = $this->orderdetails['details']['BT'];
$tp = '';
$detail=false;
if (empty($this->orderbt->paid) ) {
$t = vmText::_('COM_VM_ORDER_UNPAID');
} else if($this->orderbt->paid == $this->orderbt->toPay){
$t = vmText::_('COM_VM_ORDER_PAID');
} else if($this->orderbt->paid < $this->orderbt->toPay){
$t = vmText::sprintf('COM_VM_ORDER_PARTIAL_PAID',$this->orderbt->paid);
$detail=true;
} else {
$t = vmText::sprintf('COM_VM_ORDER_CREDIT_BALANCE',$this->orderbt->paid);
$detail=true;
}
$trOpen = true;
$colspan = '5';
if(empty($this->toRefund) and !$detail){
echo '<td align="left" colspan="3" style="padding-right: 5px;">'.$t.'</td>';
//echo '<td><input class="orderEdit" type="text" size="8" name="item_id[paid]" value="'.$this->orderbt->paid.'"/></td>';
echo '</tr>';
$trOpen = false;
}
if(!empty($this->toRefund)){
echo '<td colspan="5">'.vmText::_('COM_VM_ORDER_PRODUCTS_TO_REFUND').'</td>';
if($trOpen) {
echo '</tr>';
$trOpen = false;
}
foreach ($this->toRefund as $index => $item) {
$tmpl = "refund-tmpl-" . $index;
echo '<tr id="'.$tmpl.'" class="order-item">';
echo '<td colspan="3"></td>';
echo '<td colspan="2">'.$item->order_item_name.'</td>';
echo '<td colspan="1">'.$item->order_item_sku.'</td>';
echo '<td style="text-align: right;" colspan="1">'.$this->currency->priceDisplay($item->product_tax).'</td>';
echo '<td colspan="1"></td>';
echo '<td style="text-align: right;" colspan="1">'.$this->currency->priceDisplay($item->product_subtotal_with_tax).'</td>';
echo '</tr>';
$this->orderbt->order_total -= $item->product_subtotal_with_tax;
$colspan = '5';
}
} else {
$colspan = '2';
}
if(!empty($this->toRefund) or $detail){
if($this->orderbt->paid < $this->orderbt->toPay){
if (empty($this->orderbt->paid)){
$t = vmText::_('COM_VM_ORDER_UNPAID');
} else {
$t = vmText::_('COM_VM_ORDER_PARTIAL_PAID');
}
$l = vmText::_('COM_VM_ORDER_OUTSTANDING_AMOUNT');
} else {
$t = vmText::_('COM_VM_ORDER_PAID');
$l = vmText::_('COM_VM_ORDER_BALANCE');
}
$tp .= '';
if($this->orderbt->toPay!=$this->orderbt->order_total){
if(!$trOpen){
$tp .= '<tr>';
$trOpen= true;
}
$tp .= '<td colspan="'.$colspan.'"></td>';
$tp .= '<td style="text-align: right;" colspan="3" style="padding-right: 5px;">'.vmText::_('COM_VM_ORDER_NEW_TOTAL').'</td>';
$tp .= '<td style="text-align: right;">'.$this->currency->priceDisplay($this->orderbt->toPay).'</td>';
if($trOpen) {
$tp .= '</tr>';
$trOpen = false;
}
}
if(!$trOpen){
$tp .= '<tr>';
$trOpen= true;
}
$tp .= '<td colspan="'.$colspan.'"></td>';
$tp .= '<td style="text-align: right;" colspan="3" style="padding-right: 5px;">'.$t.'</td>';
$tp .= '<td style="text-align: right;" >'.$this->currency->priceDisplay($this->orderbt->paid).'</td>';
$tp .= '</tr>';
$tp .= '<tr>';
$tp .= '<td colspan="5"></td>';
$tp .= '<td style="text-align: right;" colspan="3" style="padding-right: 5px;">'.$l.'</td>';
$tp .= '<td style="text-align: right;" >'.$this->currency->priceDisplay(abs($this->orderbt->order_total - $this->orderbt->paid) ).'</td>';
echo $tp;
}
if($trOpen) {
echo '</tr>';
$trOpen = false;
}
?>
</table>