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!