This commit is contained in:
Franck Allimant
2014-01-17 14:43:27 +01:00
3 changed files with 3 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
#2.0.0-beta4 #2.0.0-beta4
- Tinymce is now a dedicated module. You need to activate it. - Tinymce is now a dedicated module. You need to activate it.
- Fix PDF creation. Bug #180
#2.0.0-beta3 #2.0.0-beta3
- Coupon effect inputs are now more customisable (input text, select, ajax, etc.. are usable) and unlimited amount of input for coupon effect are now possible too - Coupon effect inputs are now more customisable (input text, select, ajax, etc.. are usable) and unlimited amount of input for coupon effect are now possible too

View File

@@ -155,7 +155,7 @@ class CouponController extends BaseAdminController
$args['dateFormat'] = $this->getSession()->getLang()->getDateFormat(); $args['dateFormat'] = $this->getSession()->getLang()->getDateFormat();
$args['availableCoupons'] = $this->getAvailableCoupons(); $args['availableCoupons'] = $this->getAvailableCoupons();
$args['urlAjaxAdminCouponDrawInputs'] = $this->getRoute( $args['urlAjaxAdminCouponDrawInputs'] = $this->getRoute(
'admin.coupon.draw.inputs', 'admin.coupon.draw.inputs.ajax',
array('couponServiceId' => 'couponServiceId'), array('couponServiceId' => 'couponServiceId'),
Router::ABSOLUTE_URL Router::ABSOLUTE_URL
); );

View File

@@ -233,7 +233,7 @@ abstract class BaseController extends ContainerAware
array( array(
'order_id' => $order_id 'order_id' => $order_id
), ),
TemplateHelper::getInstance()->getActivePdfTemplate()->getPath() TemplateHelper::getInstance()->getActivePdfTemplate()
); );
$order = OrderQuery::create()->findPk($order_id); $order = OrderQuery::create()->findPk($order_id);