Merge branch 'master' of https://github.com/thelia/thelia
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user