Dear all - I'm doing SalesTableListPage form customization and I wants to know why Total Amount is changed to zero when status become invoiced. I created display method on SalesTable as below to show TotalAmount in SalesTableListPage form..
display AmountCur totalAmountSales()
{
SalesTotals SalesTotals;
;
SalesTotals = SalesTotals::construct(this,SalesUpdate::All);
SalesTotals.calc();
return SalesTotals.totalAmount();
}

*This post is locked for comments
I have the same question (0)