order_package.php

Go to the documentation of this file.
00001 <?php
00002 
00008 class Order_Package extends oxAdminDetails
00009 {
00010 
00018     public function render()
00019     {
00020         $myConfig = $this->getConfig();
00021         parent::render();
00022 
00023         $aOrders = oxNew('oxlist');
00024         $aOrders->init('oxorder');
00025         $sSql = "select * from oxorder where oxorder.oxsenddate = '0000-00-00 00:00:00' and oxorder.oxshopid = '" .
00026                 $myConfig->getShopId() . "' order by oxorder.oxorderdate asc limit 5000";
00027         $aOrders->selectString($sSql);
00028 
00029         $this->_aViewData['resultset'] = $aOrders;
00030 
00031         return "order_package.tpl";
00032     }
00033 }