* @copyright PrestaShop * @license http://www.opensource.org/licenses/osl-3.0.php Open-source licence 3.0 * @version 1.3 * */ include_once(PS_ADMIN_DIR.'/../classes/AdminTab.php'); class AdminSlip extends AdminTab { public function __construct() { $this->table = 'order_slip'; $this->className = 'OrderSlip'; $this->edit = true; $this->delete = true; $this->noAdd = true; $this->fieldsDisplay = array( 'id_order_slip' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25), 'id_order' => array('title' => $this->l('ID Order'), 'width' => 75, 'align' => 'center'), 'date_add' => array('title' => $this->l('Date issued'), 'width' => 60, 'type' => 'date')); $this->optionTitle = $this->l('Slip'); parent::__construct(); } public function display() { global $cookie; $this->getList(intval($cookie->id_lang), !Tools::getValue($this->table.'Orderby') ? 'date_add' : NULL, !Tools::getValue($this->table.'Orderway') ? 'DESC' : NULL); $this->displayList(); } public function displayListContent($token = NULL) { global $currentIndex, $cookie; $irow = 0; if ($this->_list) foreach ($this->_list AS $tr) { $tr['id_order'] = $this->l('#').sprintf('%06d', $tr['id_order']); echo '
';
echo '
';
echo '