File: /home/confeduphaar/backip-old-files/components/com_virtuemart/views/invoice/tmpl/invoice.php
<?php
/**
*
* Order detail view
* //index.php?option=com_virtuemart&view=invoice&layout=invoice&format=pdf&tmpl=component&order_number=xx&order_pass=p_yy
* @package VirtueMart
* @subpackage Orders
* @author Max Milbers, 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.php 5412 2012-02-09 19:27:55Z alatak $
*/
defined('_JEXEC') or die('Restricted access');
vmJsApi::css('vmpanels');
if ($this->_layout == "invoice") {
$document = JFactory::getDocument();
$document->setTitle(vmText::_('COM_VIRTUEMART_ORDER_PRINT_PO_NUMBER') . ' ' . $this->orderDetails['details']['BT']->order_number . ' ' . $this->vendor->vendor_store_name);
}
$vendorCompanyName = (!empty($this->vendor->vendorFields["fields"]["company"]["value"])) ? $this->vendor->vendorFields["fields"]["company"]["value"] : $this->vendor->vendor_store_name;
if(!empty($this->vendor->vendor_letter_css)) { ?>
<style type="text/css">
<?php echo $this->vendor->vendor_letter_css; ?>
</style>
<?php }
if ($this->headFooter) {
?>
<div class="vendor-details-view">
<?php echo $this->replaceVendorFields($this->vendor->vendor_letter_header_html, $this->vendor); ?>
</div>
<div class="vendor-description">
<?php //echo $this->vendor->vendor_store_desc.'<br>';
?></div> <?php
}
if ($this->print) {
?>
<body onload="javascript:print();">
<?php }
?>
<div class='spaceStyle'>
<?php
echo $this->loadTemplate('order');
?>
</div>
<div class='spaceStyle'>
<?php
if ($this->print) {
echo $this->loadTemplate('items');
} else {
$tabarray = array('items'=>'COM_VIRTUEMART_ORDER_ITEM', 'history'=>'COM_VIRTUEMART_ORDER_HISTORY');
shopFunctionsF::buildTabs( $this, $tabarray);
}
?>
</div>
<br clear="all"/><br/>
<?php
if ($this->headFooter) {
echo $this->replaceVendorFields($this->vendor->vendor_letter_footer_html, $this->vendor);
}
if ($this->vendor->vendor_letter_add_tos) {?>
<div class="invoice_tos" <?php if ($this->vendor->vendor_letter_add_tos_newpage) { ?> style="page-break-before: always"<?php } ?>>
<?php echo $this->vendor->vendor_terms_of_service; ?>
</div>
<?php }
if ($this->print) { ?>
</body>
<?php
} ?>