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

@@ -64,4 +64,24 @@ class CouponBaseAdapter implements CouponAdapterInterface
// TODO: Implement getCustomer() method.
}
/**
* Return Checkout total price
*
* @return float
*/
public function getCheckoutTotalPrice()
{
// TODO: Implement getCheckoutTotalPrice() method.
}
/**
* Return Checkout total postage (only) price
*
* @return float
*/
public function getCheckoutPostagePrice()
{
// TODO: Implement getCheckoutPostagePrice() method.
}
}