// AdminOutstanding is now bootstraped

This commit is contained in:
Damien Metzger
2013-11-29 17:10:22 +01:00
parent 68ed6fac82
commit e0b28dd57b
@@ -28,6 +28,7 @@ class AdminOutstandingControllerCore extends AdminController
{
public function __construct()
{
$this->bootstrap = true;
$this->table = 'order_invoice';
$this->className = 'OrderInvoice';
$this->addRowAction('view');
@@ -51,13 +52,10 @@ class AdminOutstandingControllerCore extends AdminController
$this->fields_list = array(
'number' => array(
'title' => $this->l('Invoice Number'),
'align' => 'center',
'width' => 20
'title' => $this->l('Invoice')
),
'date_add' => array(
'title' => $this->l('Date'),
'width' => 150,
'type' => 'date',
'align' => 'right',
'filter_key' => 'a!date_add'
@@ -69,13 +67,11 @@ class AdminOutstandingControllerCore extends AdminController
),
'company' => array(
'title' => $this->l('Company'),
'align' => 'center',
'width' => 20
'align' => 'center'
),
'risk' => array(
'title' => $this->l('Risk'),
'align' => 'center',
'width' => 100,
'orderby' => false,
'type' => 'select',
'color' => 'color',
@@ -86,7 +82,6 @@ class AdminOutstandingControllerCore extends AdminController
'outstanding_allow_amount' => array(
'title' => $this->l('Outstanding Allow'),
'align' => 'center',
'width' => 50,
'prefix' => '<b>',
'suffix' => '</b>',
'type' => 'price'
@@ -94,14 +89,12 @@ class AdminOutstandingControllerCore extends AdminController
'outstanding' => array(
'title' => $this->l('Current Outstanding'),
'align' => 'center',
'width' => 50,
'callback' => 'printOutstandingCalculation',
'orderby' => false,
'search' => false
),
'id_invoice' => array(
'title' => $this->l('PDF'),
'width' => 35,
'title' => $this->l('Invoice'),
'align' => 'center',
'callback' => 'printPDFIcons',
'orderby' => false,
@@ -148,7 +141,7 @@ class AdminOutstandingControllerCore extends AdminController
if (!Validate::isLoadedObject($order_invoice))
throw new PrestaShopException('object Customer can\'t be loaded');
return '<b>'.$customer->getOutstanding().'</b>';
return '<b>'.Tools::displayPrice($customer->getOutstanding(), Context::getContext()->currency).'</b>';
}
/**