WIP Coupon

Implementation Comparable Parameters
This commit is contained in:
gmorel
2013-08-20 19:05:41 +02:00
parent 2113e7a457
commit df08158cff
16 changed files with 1784 additions and 35 deletions

View File

@@ -84,4 +84,25 @@ class CouponBaseAdapter implements CouponAdapterInterface
// TODO: Implement getCheckoutPostagePrice() method.
}
/**
* Return Products total price
*
* @return float
*/
public function getCheckoutTotalPriceWithoutDiscountAndPostagePrice()
{
// TODO: Implement getCheckoutTotalPriceWithoutDiscountAndPostagePrice() method.
}
/**
* Return the number of Products in the Cart
*
* @return int
*/
public function getNbArticlesInTheCart()
{
// TODO: Implement getNbArticlesInTheCart() method.
}
}