Override in Prestashop

0

I want to edit the AdminOutstandingController.php driver so that instead of showing the column "Outstanding balance allowed" ("outstanding_allow_amount") it shows the value of what PS calls "invoices" (which is "total_paid_tax_incl").

Try with:

'total_paid_tax_incl' => array(
'title' => $this->l('Total Remito X'),
'align' => 'text-right',
'type' => 'price',
'currency' => true,
'callback' => 'setOrderCurrency',
'badge_success' => true
),

But does it return "-" as a result, any ideas?

This is the complete code: link

Thanks in advance!

    
asked by Diego Reyes 14.03.2018 в 16:44
source

0 answers