| 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 detail 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_order.php 7499 2013-12-18 15:11:51Z Milbo $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
?>
<table class="table" width="100%">
<tr>
<td class="orders-key bold"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PO_NUMBER') ?></td>
<td align="left"><?php echo $this->orderdetails['details']['BT']->order_number; ?></td>
</tr>
<tr>
<td class="bold"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PO_DATE') ?></td>
<td align="left"><?php echo vmJsApi::date($this->orderdetails['details']['BT']->order_created, 'LC4', true); ?></td>
</tr>
<tr>
<td class="bold"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PO_STATUS') ?></td>
<td align="left"><?php echo $this->orderstatuses[$this->orderdetails['details']['BT']->order_status]; ?></td>
</tr>
<tr>
<td class="bold"><?php echo vmText::_('COM_VIRTUEMART_LAST_UPDATED') ?></td>
<td align="left"><?php echo vmJsApi::date($this->orderdetails['details']['BT']->order_modified, 'LC4', true); ?></td>
</tr>
<tr>
<td class="bold"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_SHIPMENT_LBL') ?></td>
<td align="left">
<?php
echo $this->shipment_name;
?>
</td>
</tr>
<tr>
<td class="bold"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PAYMENT_LBL') ?></td>
<td align="left"><?php echo $this->payment_name; ?></td>
</tr>
<tr>
<td class="bold"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_CUSTOMER_NOTE') ?></td>
<td valign="top" align="left" width="50%"><?php echo $this->orderdetails['details']['BT']->customer_note; ?></td>
</tr>
<tr>
<td class="orders-key bold"><?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_TOTAL') ?></td>
<td align="left"><?php echo $this->currency->priceDisplay($this->orderdetails['details']['BT']->order_total, $this->user_currency_id); ?></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td valign="top">
<table class="table table bordered table-striped">
<tr>
<th colspan="2">
<?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_BILL_TO_LBL') ?>
</th>
</tr>
<?php
foreach ($this->userfields['fields'] as $field) {
if (!empty($field['value'])) {
echo '<tr>';
echo '<td class="key">' . $field['title'] . '</td>';
echo '<td>' . $field['value'] . '</td>';
echo '</tr>';
}
}
?>
</table>
</td>
<td valign="top" >
<table class="table table bordered table-striped">
<tr>
<th colspan="2">
<?php echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_SHIP_TO_LBL') ?>
</th>
</tr>
<?php
if(!empty($this->orderdetails['details']['has_ST'])){
foreach ($this->shipmentfields['fields'] as $field) {
if (!empty($field['value'])) {
echo '<tr>';
echo '<td class="key">' . $field['title'] . '</td>';
echo '<td>' . $field['value'] . '</td>';
echo '</tr>';
}
}
}
?>
</table>
</td>
</tr>
</table>