| Server IP : 87.98.231.4 / Your IP : 216.73.217.178 [ Web Server : Apache System : Linux webm007.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : grupmartgn ( 667608) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/grupmartgn/elanartcrafts/components/com_virtuemart/views/orders/tmpl/ |
Upload File : |
<?php
/**
*
* Order items view
*
* @package VirtueMart
* @subpackage Orders
* @author Oscar van Eijk, Valerie Isaksen
* @link http://www.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 8310 2014-09-21 17:51:47Z 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 = '49';
}
?>
<table class="table table-bordered" width="<?php echo $widthTable ?>%">
<tr align="left" class="sectiontableheader">
<th align="left"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_SKU') ?></th>
<th align="left" colspan="2" width="<?php echo $widthTitle ?>%" ><?php echo vmText::_('COM_VIRTUEMART_PRODUCT_NAME_TITLE') ?></th>
<th align="center"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PRODUCT_STATUS') ?></th>
<th align="right"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PRICE') ?></th>
<th align="left"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_QTY') ?></th>
<?php if ( VmConfig::get('show_tax')) { ?>
<th align="right"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PRODUCT_TAX') ?></th>
<?php } ?>
<th align="right"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_SUBTOTAL_DISCOUNT_AMOUNT') ?></th>
<th align="right"><?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 valign="top">
<td align="left">
<?php echo $item->order_item_sku; ?>
</td>
<td 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 align="center">
<?php echo $this->orderstatuses[$item->order_status]; ?>
</td>
<td 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 align="right">
<?php echo $qtt; ?>
</td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td align="right" class="priceCol"><?php echo "<span class='priceColor2'>".$this->currency->priceDisplay($item->product_tax ,$this->user_currency_id, $qtt)."</span>" ?></td>
<?php } ?>
<td 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 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" align="right"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PRODUCT_PRICES_TOTAL'); ?></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td align="right" class="priceCol"><?php echo "<span class='priceColor2'>".$this->currency->priceDisplay($this->orderdetails['details']['BT']->order_tax,$this->user_currency_id)."</span>" ?></td>
<?php } ?>
<td align="right" class="priceCol"><?php echo "<span class='priceColor2'>".$this->currency->priceDisplay($this->orderdetails['details']['BT']->order_discountAmount,$this->user_currency_id)."</span>" ?></td>
<td align="right" class="priceCol"><?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 align="right" class="pricePad" colspan="6"><?php echo vmText::_('COM_VIRTUEMART_COUPON_DISCOUNT').$coupon_code ?></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td align="right"> </td>
<?php } ?>
<td align="right"> </td>
<td align="right" class="priceCol"><?php echo $this->currency->priceDisplay($this->orderdetails['details']['BT']->coupon_discount,$this->user_currency_id); ?></td>
</tr>
<?php }
foreach($this->orderdetails['calc_rules'] as $rule){
if ($rule->calc_kind== 'DBTaxRulesBill') {
?>
<tr>
<td colspan="6" align="right" class="pricePad"><?php echo $rule->calc_rule_name ?></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td align="right"></td>
<?php } ?>
<td align="right" class="priceCol"> <?php echo $this->currency->priceDisplay($rule->calc_amount,$this->user_currency_id); ?></td>
<td align="right" class="priceCol"><?php echo $this->currency->priceDisplay($rule->calc_amount,$this->user_currency_id); ?></td>
</tr>
<?php
} elseif ($rule->calc_kind == 'taxRulesBill') { ?>
<tr>
<td colspan="6" align="right" class="pricePad"><?php echo $rule->calc_rule_name ?></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td align="right" class="priceCol"><?php echo $this->currency->priceDisplay($rule->calc_amount,$this->user_currency_id); ?></td>
<?php } ?>
<td align="right"></td>
<td align="right" class="priceCol"><?php echo $this->currency->priceDisplay($rule->calc_amount,$this->user_currency_id); ?></td>
</tr>
<?php
} elseif ($rule->calc_kind == 'DATaxRulesBill') { ?>
<tr>
<td colspan="6" align="right" class="pricePad"><?php echo $rule->calc_rule_name ?></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td align="right"></td>
<?php } ?>
<td align="right" class="priceCol"><?php echo $this->currency->priceDisplay($rule->calc_amount,$this->user_currency_id); ?></td>
<td align="right" class="priceCol"><?php echo $this->currency->priceDisplay($rule->calc_amount,$this->user_currency_id); ?></td>
</tr>
<?php
}
}
?>
<tr>
<td align="right" class="pricePad" colspan="6"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_SHIPPING') ?></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td align="right" class="priceCol"><?php echo "<span class='priceColor2'>".$this->currency->priceDisplay($this->orderdetails['details']['BT']->order_shipment_tax, $this->user_currency_id)."</span>" ?></td>
<?php } ?>
<td align="right"> </td>
<td align="right" class="priceCol"><?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 align="right" class="pricePad" colspan="6"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PAYMENT') ?></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td align="right" class="priceCol"><?php echo "<span class='priceColor2'>".$this->currency->priceDisplay($this->orderdetails['details']['BT']->order_payment_tax, $this->user_currency_id)."</span>" ?></td>
<?php } ?>
<td align="right"> </td>
<td align="right" class="priceCol"><?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 align="right" class="pricePad" colspan="6"><strong><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_TOTAL') ?></strong></td>
<?php if ( VmConfig::get('show_tax')) { ?>
<td align="right" class="priceCol"><span class='priceColor'><?php echo $this->currency->priceDisplay($this->orderdetails['details']['BT']->order_billTaxAmount, $this->user_currency_id); ?></span></td>
<?php } ?>
<td align="right" class="priceCol"><span class='priceColor'><?php echo $this->currency->priceDisplay($this->orderdetails['details']['BT']->order_billDiscountAmount, $this->user_currency_id); ?></span></td>
<td align="right" class="priceCol"><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>