Prestashop loyality module - include tax to voucher value

Today i want to say something about default prestashop loyality module. In addon settings you can set up voucher code for your shop guests. They have got an ability to collect points in your loyality program, then they can change it into voucher codes. By default, loyality addon creates voucher codes without tax. In this article I want to show you how to create voucher codex with tax included to the voucher value.

 

1) Default controller code change

Unfortunately you have to edit module code. But it is very easy. For the first you need to open  default controller for this module located in /modules/loyality/controllers/front/default.php file. Searcj for code containing $cart_rule variables, exactly as below:

   $cart_rule = new CartRule();
   $cart_rule->code = $voucher_code;
   $cart_rule->id_customer = (int)$this->context->customer->id;
   $cart_rule->reduction_currency = (int)$this->context->currency->id;
   $cart_rule->reduction_amount = LoyaltyModule::getVoucherValue((int)$customer_points);
   $cart_rule->quantity = 1;
   $cart_rule->quantity_per_user = 1;

 

Right behind the $cart_rule->quantity_per_user =1; paste this: $cart_rule->reduction_tax = 1; So this piece of code should looks like: 

   $cart_rule = new CartRule();
   $cart_rule->code = $voucher_code;
   $cart_rule->id_customer = (int)$this->context->customer->id;
   $cart_rule->reduction_currency = (int)$this->context->currency->id;
   $cart_rule->reduction_amount = LoyaltyModule::getVoucherValue((int)$customer_points);
   $cart_rule->quantity = 1;
   $cart_rule->quantity_per_user = 1;
   $cart_rule->reduction_tax=1; 

As you can see, it is very easy. But what exactly $cart_rule->reduction_tax=1; variable means? This is indicator of tax included / excluded from the reduction / voucher code value. If you set this parameter to 1 - then reduction will be with tax, if you set it to 0 - then the value will be without tax.

 

It's easy, didn't it?

author milos myszczuk
Article by Milosz Myszczuk PrestaShop expert, official PrestaShop community moderator. PHP developer, specialist in relative and spatial databases management, GIS Analyst, CEO & founder of VEKIA interactive agency. Read more about VEKIA company
If you like my articles and want much more valuable tips, feel free to send me donation
1.4 version 1.4.11 1.6 404 addon admin advertise ahref ajax alpha animation api app application authentication back office backup badge banner basics block bootstrap button cache carrier cart catalog category certificate changelog chat class clear client clip cms code colors columns comments configuration contact container content controller cookie counter country coupon css csv currency customer dashboard database debug default delete delivery desktop developer device disable discount displayNav displayTop download dynamic editor effect empty encrypt engine error exchange exclude export facebook faceshop fade fancoupon fancybox fanpage fatal feature feed field file fix fixed font footer free friendly url front ftp full gallery generate gift global godaddy google google+ gray grid groupon header help hide highlight homefeatured homepage hook hosting hover howto htaccess html html5 ID image import include input instagram installation integration iPhone issue javascript jquery kgb knowhow languages law left likebox link list livingsocial loading log login logo loyality mail mailing maintenance manufacturer marketing marquee mcrypt menu meta mobile modification module movie moving multilanguage multiupload must have mysql news newsletter notification number open graph order override page password performance PHP phpmyadmin picture pinterest plugin popup post prestashop prestashop 1.0 prestashop 1.1 prestashop 1.2 prestashop 1.3 prestashop 1.4 prestashop 1.5 price rules problem product profile promotion proslider purifier quantity query quick tip random rates register reinsurance release reporting reset responsive restore results ribbon rich text right sales search security seo service shadow share shipping shop shopmania slider smarty social networks SQL SSL statistics stock store style subcategory superuser support switcher tab tablet tag tax template text theme tinyMCE tips and tricks tpl tracking translations tree trends trigger tumblr tutorial twitter update upgrade upload variables video visits voucher vulnerability web2print wide widget width window wishlist wysiwyg youtube zip zopim