%PDF- %PDF-
Direktori : /home/lightco1/www/administrator/components/com_virtuemart/views/report/tmpl/ |
Current File : /home/lightco1/www/administrator/components/com_virtuemart/views/report/tmpl/default.php |
<?php if( !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' ); /** * * @version $Id: default.php 8953 2015-08-19 10:30:52Z Milbo $ * @package VirtueMart * @subpackage Report * @copyright Copyright (C) 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. * See /administrator/components/com_virtuemart/COPYRIGHT.php for copyright notices and details. * * http://virtuemart.org */ AdminUIHelper::startAdminArea($this); /* Load some variables */ $rows = count( $this->report ); $intervalTitle = vRequest::getVar('intervals','day'); if ( ($intervalTitle =='week') or ($intervalTitle =='month') ) $addDateInfo = true ; else $addDateInfo = false; //JHtml::_('behavior.framework', true); ?> <form action="index.php" method="post" name="adminForm" id="adminForm"> <div id="header"> <h2><?php echo vmText::sprintf('COM_VIRTUEMART_REPORT_TITLE', vmJsApi::date( $this->from_period, 'LC',true) , vmJsApi::date( $this->until_period, 'LC',true) ); ?></h2> <div id="filterbox"> <table> <tr> <td align="left" width="100%"> <?php echo vmText::_('COM_VIRTUEMART_ORDERSTATUS') . $this->lists['state_list']; ?> <?php echo vmText::_('COM_VIRTUEMART_REPORT_INTERVAL') . $this->lists['intervals']; ?> <?php echo vmText::_('COM_VIRTUEMART_REPORT_SET_PERIOD') . $this->lists['select_date']; echo vmText::_('COM_VIRTUEMART_REPORT_FROM_PERIOD') . vmJsApi::jDate($this->from_period, 'from_period'); echo vmText::_('COM_VIRTUEMART_REPORT_UNTIL_PERIOD') . vmJsApi::jDate($this->until_period, 'until_period'); if(VmConfig::get('multix','none')!='none'){ $vendorId = vmConfig::isSuperVendor(); if(vmAccess::manager('managevendors')){ $vendorId = vRequest::getInt('virtuemart_vendor_id',$vendorId); } echo ShopFunctions::renderVendorList($vendorId); } ?> <button class="btn btn-small" onclick="this.form.period.value='';this.form.submit();"><?php echo vmText::_('COM_VIRTUEMART_GO'); ?> </button> </td> </tr> </table> </div> <div id="resultscounter"> <?php echo $this->pagination->getResultsCounter();?> </div> </div> <div id="editcell"> <table class="adminlist table table-striped" cellspacing="0" cellpadding="0"> <thead> <tr> <th> <?php echo $this->sort('created_on', 'COM_VIRTUEMART_'.$intervalTitle); ?> </th> <th> <?php echo $this->sort('o.virtuemart_order_id', 'COM_VIRTUEMART_REPORT_BASIC_ORDERS') ; ?> </th> <th> <?php echo $this->sort('product_quantity', 'COM_VIRTUEMART_REPORT_BASIC_TOTAL_ITEMS') ; ?> </th> <th> <?php echo $this->sort('order_subtotal_netto', 'COM_VIRTUEMART_REPORT_BASIC_REVENUE_NETTO') ; ?> </th> <th> <?php echo $this->sort('order_subtotal_brutto', 'COM_VIRTUEMART_REPORT_BASIC_REVENUE_BRUTTO') ; ?> </th> <?php $intervals = vRequest::getCmd ('intervals', 'day'); if($intervals=='product_s'){ ?> <th> <?php echo $this->sort('order_item_name', 'COM_VIRTUEMART_PRODUCT_NAME') ; ?> </th> <th> <?php echo $this->sort('virtuemart_product_id', 'COM_VIRTUEMART_PRODUCT_ID') ; ?> </th> <?php } ?> </tr> </thead> <tbody> <?php $i = 0; for ($j =0; $j < $rows; ++$j ){ $r = $this->report[$j]; //$is = $this->itemsSold[$j]; $s = 0; ?> <tr class="row<?php echo $i;?>"> <td align="center"> <?php echo $r['intervals'] ; if ( $addDateInfo ) { echo ' ('.substr ( $r['created_on'],0,4 ).')'; } ?> </td> <td align="center"> <?php echo $r['count_order_id'];?> </td> <td align="center"> <?php echo $r['product_quantity'];?> </td> <td align="right"> <?php echo $r['order_subtotal_netto'];?> </td> <td align="right"> <?php echo $r['order_subtotal_brutto'];?> </td> <?php if($intervals=='product_s'){ ?> <td align="center"> <?php echo $r['order_item_name'];?> </td> <td align="center"> <?php echo $r['virtuemart_product_id'];?> </td> <?php } ?> </tr> <?php $i = 1-$i; } ?> </tbody> <thead> <tr> <th class="right"><?php echo vmText::_('COM_VIRTUEMART_TOTAL').' : '; ?></th> <th><?php echo $this->totalReport['number_of_ordersTotal']?></th> <th><?php echo $this->totalReport['itemsSoldTotal'];?></th> <th class="right"><?php echo $this->totalReport['revenueTotal_netto'];?></th> <th class="right"><?php echo $this->totalReport['revenueTotal_brutto'];?></th> </tr> </thead> <tfoot> <tr> <td colspan="10"> <?php echo $this->pagination->getListFooter(); ?> </td> </tr> </tfoot> </table> </div> <?php echo $this->addStandardHiddenToForm(); ?> </form> <?php AdminUIHelper::endAdminArea(); ?>