WIP Coupon

RemoveXPercent and RemoveXAmount implementation
This commit is contained in:
gmorel
2013-08-19 20:02:53 +02:00
parent 4e40555313
commit 2113e7a457
8 changed files with 533 additions and 9 deletions

View File

@@ -57,4 +57,26 @@ interface CouponAdapterInterface
* @return \Thelia\Model\Customer
*/
public function getCustomer();
/**
* Return Checkout total price
*
* @return float
*/
public function getCheckoutTotalPrice();
/**
* Return Products total price
*
* @return float
*/
public function getCheckoutTotalPriceWithoutDiscountAndPostagePrice();
/**
* Return Checkout total postage (only) price
*
* @return float
*/
public function getCheckoutPostagePrice();
}