* @copyright 2007-2013 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class AdminSlipControllerCore extends AdminController { public function __construct() { $this->table = 'order_slip'; $this->className = 'OrderSlip'; $this->fields_list = array( 'id_order_slip' => array( 'title' => $this->l('ID'), 'align' => 'center', 'width' => 25 ), 'id_order' => array( 'title' => $this->l('ID Order'), 'align' => 'left' ), 'date_add' => array( 'title' => $this->l('Date issued'), 'width' => 150, 'type' => 'date', 'align' => 'right' ), 'id_pdf' => array( 'title' => $this->l('PDF'), 'width' => 35, 'align' => 'center', 'callback' => 'printPDFIcons', 'orderby' => false, 'search' => false, 'remove_onclick' => true) ); $this->_select = 'a.id_order_slip AS id_pdf'; $this->optionTitle = $this->l('Slip'); $this->fields_options = array( 'general' => array( 'title' => $this->l('Credit slip options'), 'fields' => array( 'PS_CREDIT_SLIP_PREFIX' => array( 'title' => $this->l('Credit slip prefix:'), 'desc' => $this->l('Prefix used for credit slips'), 'size' => 6, 'type' => 'textLang' ) ), 'submit' => array() ) ); parent::__construct(); } public function renderForm() { $this->fields_form = array( 'legend' => array( 'title' => $this->l('Print a PDF'), 'image' => '../img/admin/pdf.gif' ), 'input' => array( array( 'type' => 'date', 'label' => $this->l('From:'), 'name' => 'date_from', 'size' => 20, 'maxlength' => 10, 'required' => true, 'desc' => $this->l('Format: 2011-12-31 (inclusive)') ), array( 'type' => 'date', 'label' => $this->l('To:'), 'name' => 'date_to', 'size' => 20, 'maxlength' => 10, 'required' => true, 'desc' => $this->l('Format: 2012-12-31 (inclusive)') ) ), 'submit' => array( 'title' => $this->l('Generate PDF file'), 'class' => 'button', 'id' => 'submitPrint' ) ); $this->fields_value = array( 'date_from' => date('Y-m-d'), 'date_to' => date('Y-m-d') ); $this->show_toolbar = false; return parent::renderForm(); } public function postProcess() { if (Tools::getValue('submitAddorder_slip')) { if (!Validate::isDate(Tools::getValue('date_from'))) $this->errors[] = $this->l('Invalid "From" date'); if (!Validate::isDate(Tools::getValue('date_to'))) $this->errors[] = $this->l('Invalid "To" date'); if (!count($this->errors)) { $order_slips = OrderSlip::getSlipsIdByDate(Tools::getValue('date_from'), Tools::getValue('date_to')); if (count($order_slips)) Tools::redirectAdmin($this->context->link->getAdminLink('AdminPdf').'&submitAction=generateOrderSlipsPDF&date_from='.urlencode(Tools::getValue('date_from')).'&date_to='.urlencode(Tools::getValue('date_to'))); $this->errors[] = $this->l('No order slips were found for this period.'); } } else return parent::postProcess(); } public function initContent() { $this->initToolbar(); $this->content .= $this->renderList(); $this->content .= $this->renderForm(); $this->content .= '
'.$this->renderOptions(); $this->context->smarty->assign(array( 'content' => $this->content, 'url_post' => self::$currentIndex.'&token='.$this->token, )); } public function initToolbar() { $this->toolbar_btn['save-date'] = array( 'href' => '#', 'desc' => $this->l('Generate PDF file') ); } public function printPDFIcons($id_order_slip, $tr) { $order_slip = new OrderSlip((int)$id_order_slip); if (!Validate::isLoadedObject($order_slip)) return ''; $this->context->smarty->assign(array( 'order_slip' => $order_slip, 'tr' => $tr )); return $this->createTemplate('_print_pdf_icon.tpl')->fetch(); } }