create admin customer view and add output info in customer loop

This commit is contained in:
Manuel Raynaud
2013-09-09 11:07:51 +02:00
parent 54dd496f52
commit 8e77e4b530
3 changed files with 134 additions and 0 deletions

View File

@@ -6,4 +6,15 @@ use Thelia\Model\Base\Order as BaseOrder;
class Order extends BaseOrder {
/**
* calculate the total amount
*
* @TODO create body method
*
* @return int
*/
public function getTotalAmount()
{
return 0;
}
}