Merge branch 'customers'

This commit is contained in:
Manuel Raynaud
2013-09-09 16:09:18 +02:00
7 changed files with 231 additions and 4 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 2;
}
}