Page 236 of 248 FirstFirst ... 136186226234235236237238246 ... LastLast
Results 2,351 to 2,360 of 2475
  1. #2351
    Join Date
    Mar 2005
    Posts
    229
    Plugin Contributions
    0

    Default Re: Rounding problem when converting from points to $ in Total Order

    Quote Originally Posted by izar74 View Post
    Hi, I'm posting the solution to the problems addressed with Edit Order plugin.

    Eg. If You Edit and order when you hit the update button you get a blank page and an error log reporting a Call to undefined function GetRewardPoints()

    If You have installed both You need to add some function in the \admin\includes\functions\extra_functions\reward_points_functions.php
    Just before the /* at the end add:

    PHP Code:
    function GetRewardPoints($products)
    {
        
    $reward_points=0;
        if(
    REWARD_POINT_MODE=='0')
        {
            foreach(
    $products as $product)
             if(isset(
    $product['qty']))
              
    $reward_points+=GetProductRewardPoints($product['id'],$product['attributes'])*$product['qty'];
             else
              if(isset(
    $product['quantity']))
               
    $reward_points+=GetProductRewardPoints($product['id'],$product['attributes'])*$product['quantity'];
              else
               if(isset(
    $product['quantityField']))
                
    $reward_points+=GetProductRewardPoints($product['id'],$product['attributes'])*$product['quantityField'];
              else
               
    $reward_points="RP Error";
        }
        else
        {
            global 
    $order;
            
            
    $GlobalRewardPointRatio=GetGlobalRewardPointRatio();
            if(isset(
    $_SESSION['cart']))
             
    $reward_points=zen_round($_SESSION['cart']->show_total()*$GlobalRewardPointRatio-REWARD_POINTS_ROUNDING,0);
             
            if(isset(
    $order) && isset($order->info))
             if(
    REWARD_POINTS_ALLOW_TOTAL=='0' && isset($order->info['subtotal']))
              
    $reward_points=zen_round($order->info['subtotal']*$GlobalRewardPointRatio-REWARD_POINTS_ROUNDING,0);
             else
              if(isset(
    $order->info['total']))
               
    $reward_points=zen_round($order->info['total']*$GlobalRewardPointRatio-REWARD_POINTS_ROUNDING,0);
        }
        return 
    $reward_points;
    }

    function 
    GetProductRewardPoints($products_id,$attributes=null)
    {
        global 
    $db;
        
    $reward_price=0;
        
        if(
    zen_get_products_price_is_free($products_id)==false || REWARD_POINTS_ALLOW_ON_FREE=='1'// Allow RP on free items (Admin settable)
        
    {
            
    $sql "SELECT prp.point_ratio*p.products_price AS reward_points, prp.point_ratio, p.products_price, p.products_priced_by_attribute 
                    FROM "
    .TABLE_REWARD_MASTER." prp, ".TABLE_PRODUCTS." p, ".TABLE_PRODUCTS_TO_CATEGORIES." p2c 
                    WHERE p.products_id='" 
    $products_id "'
                    AND p2c.products_id='" 
    $products_id "'
                    AND ((prp.scope_id=p.products_id AND prp.scope='"
    .SCOPE_PRODUCT."') 
                    OR (p.products_id=p2c.products_id AND prp.scope_id=p2c.categories_id AND prp.scope='"
    .SCOPE_CATEGORY."')
                    OR (prp.scope='"
    .SCOPE_GLOBAL."'))
                    ORDER BY prp.scope DESC LIMIT 1;"
    ;
        
            
    $result=$db->Execute($sql);
        
            if(
    $result)
            {
                if(
    zen_has_product_attributes($products_id,'false') && !$attributes)
                 
    $reward_price=zen_get_products_base_price($products_id);
                else
                 
    $reward_price=$result->fields['products_price'];
                 
                
    //echo '['.$reward_price.'=';
                //print_r($attributes);
                //echo ']';
                
                
    $special_price=zen_get_products_special_price($products_id);
                
                if(
    REWARD_POINTS_SPECIAL_ADJUST=='1' && $special_price && !$attributes)
                 
    $reward_price=$special_price;
            
                
    // Calculate attribute pricing
                //if($result->fields['products_priced_by_attribute']=='1' && $attributes!=null)
                
    if($attributes!=null)
                 if(isset(
    $attributes[0]['option_id']))
                  foreach(
    $attributes as $attribute)
                   
    $reward_price+=CalculateRewardPointsOnAttribute($products_id,$attribute['option_id'],$attribute['value_id']);
                 else
                  foreach(
    $attributes as $option_id => $value_id)
                   
    $reward_price+=CalculateRewardPointsOnAttribute($products_id,$option_id,$value_id);
            }
        }

        
    //echo '::'.$reward_price.', '.$result->fields['point_ratio'].', '.REWARD_POINTS_ROUNDING.'::';
        
    $reward_points=($reward_price*$result->fields['point_ratio'])-REWARD_POINTS_ROUNDING;
        if(
    $reward_points<0)
         
    $reward_points=0;
         
        return 
    zen_round($reward_points,0);
    }

    function 
    CalculateRewardPointsOnAttribute($products_id,$option_id,$value_id)
    {
        global 
    $db;
        
        if(
    $attribute=$db->Execute("SELECT products_attributes_id, attributes_discounted, options_values_price, price_prefix FROM ".TABLE_PRODUCTS_ATTRIBUTES." WHERE products_id='".$products_id."' AND options_id='".$option_id."' AND options_values_id='".$value_id."';"))
         if(
    REWARD_POINTS_SPECIAL_ADJUST=='1' && $attribute->fields['attributes_discounted']=='1')
          
    $new_attributes_price=zen_get_discount_calc($products_id,$attribute->fields['products_attributes_id'],$attribute->fields['options_values_price'],1);
         else 
          
    $new_attributes_price=$attribute->fields['options_values_price'];
          
        return (
    $attribute->fields['price_prefix']=='-'?-$new_attributes_price:$new_attributes_price);
    }

    function 
    GetRedeemRatio($customers_id)
    {
        global 
    $db;
        
        
    $sql "SELECT redeem_ratio 
                FROM "
    .TABLE_REWARD_MASTER." prp, ".TABLE_CUSTOMERS." as c
                LEFT JOIN("
    .TABLE_GROUP_PRICING." as gp) ON (gp.group_id=c.customers_group_pricing)
                WHERE c.customers_id='"
    .(int)$customers_id."'
                AND ((prp.scope_id='"
    .$customers_id."' AND prp.scope='".SCOPE_CUSTOMER."')
                OR (gp.group_id=c.customers_group_pricing AND prp.scope_id=gp.group_id AND scope='"
    .SCOPE_GROUP."')
                OR (prp.scope='"
    .SCOPE_GLOBAL."'))
                ORDER BY prp.scope DESC LIMIT 1;"


        
    $result=$db->Execute($sql);

        if(
    $result)
         return 
    $result->fields['redeem_ratio'];
        else
         return 
    0;
    }

    function 
    GetRewardPointsRedeemMaximum($order_total)
    {
        
    $redeem_ratio=GetRedeemRatio($_SESSION['customer_id']);
        
    $order_total_points=zen_round($order_total/$redeem_ratio,0);

        if((double)
    REWARD_POINTS_REDEEM_MAXIMUM>0)
         if(
    strpos(REWARD_POINTS_REDEEM_MAXIMUM,"%")!==false)
          return 
    zen_round($order_total_points*((double)REWARD_POINTS_REDEEM_MAXIMUM/100),0);
         else
          if(
    $order_total_points>REWARD_POINTS_REDEEM_MAXIMUM)
           return 
    zen_round(REWARD_POINTS_REDEEM_MAXIMUM,0);

        return 
    zen_round($order_total_points,0);
    }

    function 
    GetCustomersRewardPoints($customers_id)
    {
        
    $result=GetCustomerRewardPointsRecord($customers_id);
        if(
    $result)
         return (int)
    $result->fields['reward_points'];
        else
         return 
    0;
    }

    function 
    GetCustomersPendingPoints($customers_id)
    {
        
    $result=GetCustomerRewardPointsRecord($customers_id);
        if(
    $result)
         return (int)
    $result->fields['pending_points'];
        else
         return 
    0;
    }

    function 
    GetCustomersLastOrderID($customers_id)
    {
        global 
    $db;
        
        
    $orders_lookup_query="SELECT orders_id FROM ".TABLE_ORDERS." WHERE customers_id = '".(int)$customers_id."' ORDER BY orders_id DESC LIMIT 1";
        
    $orders_lookup $db->Execute($orders_lookup_query);
        if(isset(
    $orders_lookup->fields))
         return 
    $orders_lookup->fields['orders_id'];
        else
         return 
    0;
    }

    function 
    ExtractNumber($str)
    {
        if(
    preg_match("/^[0-9]*[\.]{1}[0-9-]+$/",$str,$match))
         return 
    floatval($match[0]);
        else
         return 
    floatval($str);    
    }

    function 
    GetOrderTotalsArray($called_by)
    {
        global 
    $order_total_modules;
        
        
    $order_total_array = array();
        
    $modules=$order_total_modules->modules;
        if(
    is_array($modules))
        {
            
    reset($modules);
            while (list(,
    $value)=each($modules)) 
            {
                
    $class=substr($value0strrpos($value'.'));
                if(
    $class!=$called_by && isset($GLOBALS[$class]))
                {
                    
    $output_backup=$GLOBALS[$class]->output;
                    if(
    sizeof($GLOBALS[$class]->output)==0)
                     
    $GLOBALS[$class]->process();
                    for (
    $i=0$n=sizeof($GLOBALS[$class]->output); $i<$n$i++)
                     if(
    zen_not_null($GLOBALS[$class]->output[$i]['title']) && zen_not_null($GLOBALS[$class]->output[$i]['text']))
                      
    $order_total_array[]=array('code' => $GLOBALS[$class]->code,'title' => $GLOBALS[$class]->output[$i]['title'],'text' => $GLOBALS[$class]->output[$i]['text'],'value' => $GLOBALS[$class]->output[$i]['value'],'sort_order' => $GLOBALS[$class]->sort_order);
                      
                    
    $GLOBALS[$class]->output=$output_backup;
                }
            }
        }
        return 
    $order_total_array;
    }

    function 
    GetRewardPointAdvancedCalculateValue()
    {
        
    $value=0;
        
        
    $module_list=GetRewardPointAdvancedCalculateTable();
        
        foreach(
    $module_list as $module)
         if(
    $module['action']=="Subtract")
          
    $value-=GetOrderTotalValue($module['module']);
         else
          
    $value+=GetOrderTotalValue($module['module']);
          
        return 
    $value;
    }

    function 
    GetOrderTotalValue($module)
    {
        global 
    $order;
        
    $value=0;
        
        if(isset(
    $GLOBALS[$module]) && isset($order->info))
        {
            
    //print_r($GLOBALS[$module]->output);
            //$output_backup=$GLOBALS[$module]->output;
            //$order_info_backup=$order->info;
            //if(sizeof($GLOBALS[$module]->output)==0)
             //$GLOBALS[$module]->process();
            
    for($loop=0;$loop<sizeof($GLOBALS[$module]->output);$loop++)
             if(
    zen_not_null($GLOBALS[$module]->output[$loop]['value']))
              
    $value+=$GLOBALS[$module]->output[$loop]['value'];
                      
            
    //$GLOBALS[$module]->output=$output_backup;
            //$order->info=$order_info_backup;
        
    }
        return 
    $value;

    It should work now
    Hi,

    I was in the same situation as you, and I was thinking about your solution, which in some words is copy/paste the content /includes/functions/extra_functions/reward_points_functions.php into /admin//includes/funtions/extra_functions/reward_points_functions.php.

    But I'm wondering...
    1) This duplicates code, and that would be kind if an expert (as Ajeh or DrByte) could tell us if the admin side is not supposed to be aware of the /includes functions side ?

    2) If so (which I suppose), where in this module do we miss the line that make the admin side know the other side functions ?
    I think correcting this would be more elegant than duplicating code. :-)

    3) If we get no answer, your solution could be a lot more shorter :
    as function GetRewardPoints only calls function GetProductRewardPoints;
    and function GetProductRewardPoints only calls function CalculateRewardPointsOnAttribute;

    we only need to paste these 3 functions (I assume).

    So pasting
    PHP Code:
    <?php      function GetRewardPoints($products)
            {
                
    $reward_points=0;
                if(
    REWARD_POINT_MODE=='0')
                {
                    foreach(
    $products as $product)
                     if(isset(
    $product['qty']))
                      
    $reward_points+=GetProductRewardPoints($product['id'],$product['attributes'])*$product['qty'];
                     else
                      if(isset(
    $product['quantity']))
                       
    $reward_points+=GetProductRewardPoints($product['id'],$product['attributes'])*$product['quantity'];
                      else
                       if(isset(
    $product['quantityField']))
                        
    $reward_points+=GetProductRewardPoints($product['id'],$product['attributes'])*$product['quantityField'];
                      else
                       
    $reward_points="RP Error";
                }
                else
                {
                    global 
    $order;
                    
                    
    $GlobalRewardPointRatio=GetGlobalRewardPointRatio();
                    if(isset(
    $_SESSION['cart']))
                     
    $reward_points=zen_round($_SESSION['cart']->show_total()*$GlobalRewardPointRatio-REWARD_POINTS_ROUNDING,0);
                     
                    if(isset(
    $order) && isset($order->info))
                     if(
    REWARD_POINTS_ALLOW_TOTAL=='0' && isset($order->info['subtotal']))
                      
    $reward_points=zen_round($order->info['subtotal']*$GlobalRewardPointRatio-REWARD_POINTS_ROUNDING,0);
                     else
                      if(isset(
    $order->info['total']))
                       
    $reward_points=zen_round($order->info['total']*$GlobalRewardPointRatio-REWARD_POINTS_ROUNDING,0);
                }
                return 
    $reward_points;
            }

            function 
    GetProductRewardPoints($products_id,$attributes=null)
            {
                global 
    $db;
                
    $reward_price=0;
                
                if(
    zen_get_products_price_is_free($products_id)==false || REWARD_POINTS_ALLOW_ON_FREE=='1'// Allow RP on free items (Admin settable)
                
    {
                    
    $sql "SELECT prp.point_ratio*p.products_price AS reward_points, prp.point_ratio, p.products_price, p.products_priced_by_attribute 
                            FROM "
    .TABLE_REWARD_MASTER." prp, ".TABLE_PRODUCTS." p, ".TABLE_PRODUCTS_TO_CATEGORIES." p2c 
                            WHERE p.products_id='" 
    $products_id "'
                            AND p2c.products_id='" 
    $products_id "'
                            AND ((prp.scope_id=p.products_id AND prp.scope='"
    .SCOPE_PRODUCT."') 
                            OR (p.products_id=p2c.products_id AND prp.scope_id=p2c.categories_id AND prp.scope='"
    .SCOPE_CATEGORY."')
                            OR (prp.scope='"
    .SCOPE_GLOBAL."'))
                            ORDER BY prp.scope DESC LIMIT 1;"
    ;
                
                    
    $result=$db->Execute($sql);
                
                    if(
    $result)
                    {
                        if(
    zen_has_product_attributes($products_id,'false') && !$attributes)
                         
    $reward_price=zen_get_products_base_price($products_id);
                        else
                         
    $reward_price=$result->fields['products_price'];
                         
                        
    //echo '['.$reward_price.'=';
                        //print_r($attributes);
                        //echo ']';
                        
                        
    $special_price=zen_get_products_special_price($products_id);
                        
                        if(
    REWARD_POINTS_SPECIAL_ADJUST=='1' && $special_price && !$attributes)
                         
    $reward_price=$special_price;
                    
                        
    // Calculate attribute pricing
                        //if($result->fields['products_priced_by_attribute']=='1' && $attributes!=null)
                        
    if($attributes!=null)
                         if(isset(
    $attributes[0]['option_id']))
                          foreach(
    $attributes as $attribute)
                           
    $reward_price+=CalculateRewardPointsOnAttribute($products_id,$attribute['option_id'],$attribute['value_id']);
                         else
                          foreach(
    $attributes as $option_id => $value_id)
                           
    $reward_price+=CalculateRewardPointsOnAttribute($products_id,$option_id,$value_id);
                    }
                }

                
    //echo '::'.$reward_price.', '.$result->fields['point_ratio'].', '.REWARD_POINTS_ROUNDING.'::';
                
    $reward_points=($reward_price*$result->fields['point_ratio'])-REWARD_POINTS_ROUNDING;
                if(
    $reward_points<0)
                 
    $reward_points=0;
                 
                return 
    zen_round($reward_points,0);
            }

            function 
    CalculateRewardPointsOnAttribute($products_id,$option_id,$value_id)
            {
                global 
    $db;
                
                if(
    $attribute=$db->Execute("SELECT products_attributes_id, attributes_discounted, options_values_price, price_prefix FROM ".TABLE_PRODUCTS_ATTRIBUTES." WHERE products_id='".$products_id."' AND options_id='".$option_id."' AND options_values_id='".$value_id."';"))
                 if(
    REWARD_POINTS_SPECIAL_ADJUST=='1' && $attribute->fields['attributes_discounted']=='1')
                  
    $new_attributes_price=zen_get_discount_calc($products_id,$attribute->fields['products_attributes_id'],$attribute->fields['options_values_price'],1);
                 else 
                  
    $new_attributes_price=$attribute->fields['options_values_price'];
                  
                return (
    $attribute->fields['price_prefix']=='-'?-$new_attributes_price:$new_attributes_price);
            }
    must be enough.

    Thanks for reading

  2. #2352
    Join Date
    Mar 2005
    Posts
    229
    Plugin Contributions
    0

    Default Re: Rounding problem when converting from points to $ in Total Order

    ...Oops I just missed two functions

    PHP Code:
            function GetRewardPointAdvancedCalculateValue()
    {
        
    $value=0;
        
        
    $module_list=GetRewardPointAdvancedCalculateTable();
        
        foreach(
    $module_list as $module)
         if(
    $module['action']=="Subtract")
          
    $value-=GetOrderTotalValue($module['module']);
         else
          
    $value+=GetOrderTotalValue($module['module']);
          
        return 
    $value;
    }

      function 
    GetOrderTotalValue($module)
    {
        global 
    $order;
        
    $value=0;
        
        if(isset(
    $GLOBALS[$module]) && isset($order->info))
        {
            
    //print_r($GLOBALS[$module]->output);
            //$output_backup=$GLOBALS[$module]->output;
            //$order_info_backup=$order->info;
            //if(sizeof($GLOBALS[$module]->output)==0)
             //$GLOBALS[$module]->process();
            
    for($loop=0;$loop<sizeof($GLOBALS[$module]->output);$loop++)
             if(
    zen_not_null($GLOBALS[$module]->output[$loop]['value']))
              
    $value+=$GLOBALS[$module]->output[$loop]['value'];
                      
            
    //$GLOBALS[$module]->output=$output_backup;
            //$order->info=$order_info_backup;
        
    }
        return 
    $value;

    But I'm still wondering if an include or an include_once would work and would not be more elegant ?

    Hubert

  3. #2353
    Join Date
    Sep 2012
    Posts
    253
    Plugin Contributions
    0

    Default Re: Rounding problem when converting from points to $ in Total Order

    I am generating the following error log:
    [26-Nov-2013 11:18:06] PHP Fatal error: 1064:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND status=0 ORDER BY date DESC LIMIT 12' at line 1 :: SELECT rewards_id, orders_id, date, reward_points, status FROM zen_reward_status_track WHERE customers_id= AND status=0 ORDER BY date DESC LIMIT 12; in /home4/w57dsjmm/public_html/order/includes/classes/db/mysql/query_factory.php on line 120

    How do I fix this?

    Thank you for your help

  4. #2354
    Join Date
    May 2008
    Posts
    182
    Plugin Contributions
    0

    Default Re: Rounding problem when converting from points to $ in Total Order

    Quote Originally Posted by countrycharm View Post
    You can create any status name you like, It doesn't matter when you change the status the points should transfer. Look under admin/Reward Points Configuration/ Reward Point Status Track and choose the advance settings. Set the order status items that will trigger a transfer of the reward points.
    I have done this and it still doesnt work.
    I wonder if it is something to do with the Nochex callback?
    Paypal works no problem and Nochex paid orders show the points on the invoice.

    Im using version 1.5.1, database patch 1.5.1, PHP Version 5.3.27

  5. #2355
    Join Date
    Mar 2011
    Posts
    52
    Plugin Contributions
    0

    Default Re: Rounding problem when converting from points to $ in Total Order

    Where in the code does it control the order in which it is applied to an order? I have recently been required to have reward point resumptions calculated before tax so the redemption is deducted from the subtotal and then tax is calculated.

  6. #2356
    Join Date
    Sep 2012
    Posts
    253
    Plugin Contributions
    0

    Default Re: Rounding problem when converting from points to $ in Total Order

    Does anyone know how to fix this? I have asked a couple times. Not sure if it's been missed or nobody has an answer.

    I am generating the following error log:
    [26-Nov-2013 11:18:06] PHP Fatal error: 1064:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND status=0 ORDER BY date DESC LIMIT 12' at line 1 :: SELECT rewards_id, orders_id, date, reward_points, status FROM zen_reward_status_track WHERE customers_id= AND status=0 ORDER BY date DESC LIMIT 12; in /home4/w57dsjmm/public_html/order/includes/classes/db/mysql/query_factory.php on line 120

    How do I fix this?

    Thank you for your help

  7. #2357
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Rounding problem when converting from points to $ in Total Order

    Quote Originally Posted by southshorepizza View Post
    Does anyone know how to fix this? I have asked a couple times. Not sure if it's been missed or nobody has an answer.

    I am generating the following error log:
    [26-Nov-2013 11:18:06] PHP Fatal error: 1064:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND status=0 ORDER BY date DESC LIMIT 12' at line 1 :: SELECT rewards_id, orders_id, date, reward_points, status FROM zen_reward_status_track WHERE customers_id= AND status=0 ORDER BY date DESC LIMIT 12; in /home4/w57dsjmm/public_html/order/includes/classes/db/mysql/query_factory.php on line 120

    How do I fix this?

    Thank you for your help
    Don't have the answer, but I can SEE the issue..
    A SQL query seems to be missing the customers_id value:
    Code:
    SELECT rewards_id, orders_id, date, reward_points, status FROM  zen_reward_status_track WHERE customers_id= AND status=0 ORDER BY date  DESC LIMIT 12;
    Hopefully someone knows where/how to correct the errant SQL query..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  8. #2358
    Join Date
    Jun 2010
    Posts
    3
    Plugin Contributions
    0

    Default Reward Point Configuration Page is blank after installation - Zen Cart 1.5.1

    Hello,
    I've searched the forum and can't find an answer to this problem, but I hope someone can help out.

    Here are my server details:
    Server OS: Linux 2.6.32-458.18.1.lve1.2.39.el6.x86_64 , Database: MySQL 5.5.34-cll, HTTP Server: Apache, PHP Version: 5.3.28 (Zend: 2.3.0)
    I am running Zen Cart 1.5.1

    I installed the reward points module as a new installation. However, I got some errors when trying to run the sql from admin, so I ran it from PHPMyadmin instead. Afterwards, nearly everything seems to work OK - The Catalogue->Reward Points page works fine, the Customer->Reward Points page works fine, and when I make a purchase, I collect reward points - all good.

    However, the Configuration->Reward Point Configuration page just creates a nearly blank page. I am assuming this is a database problem, but I'm not sure what might have gone wrong with the SQL.

    Can anyone help please? Thank you.

  9. #2359
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Rounding problem when converting from points to $ in Total Order

    Quote Originally Posted by hubert View Post
    ... But I'm wondering...
    1) This duplicates code, and that would be kind if an expert (as Ajeh or DrByte) could tell us if the admin side is not supposed to be aware of the /includes functions side ?
    ...
    No the admin is not supposed to automatically load all functions from the catalog. There are cases where the same exact functions operate differently or use different settings on the admin versus the catalog.

    Quote Originally Posted by hubert View Post
    ...
    2) If so (which I suppose), where in this module do we miss the line that make the admin side know the other side functions ?
    I think correcting this would be more elegant than duplicating code. :-)

    3) If we get no answer, your solution could be a lot more shorter :
    as function GetRewardPoints only calls function GetProductRewardPoints;
    and function GetProductRewardPoints only calls function CalculateRewardPointsOnAttribute;
    ...
    There are at least three approaches to solving this issue which avoid duplicate code (pick one):
    1. Create an auto_load file on the admin which loads the functions file from the catalog.
    2. Move all functions required by the order total class - inside the order total class.
    3. In the order total class do a check (IS_ADMIN / function_exists). If needed use include_once to load the functions file.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  10. #2360
    Join Date
    Jan 2014
    Location
    England
    Posts
    1
    Plugin Contributions
    0

    Default Re: Rounding problem when converting from points to $ in Total Order

    Hey everyone, working on a ZenCart install for a client but this extension has me stumped. The description of it says it allows the admins to add points manually to certain users. Where do I go in the admin panel to do this? I have checked the reward points settings and the customer settings but I can't find anything. Thanks.

 

 

Similar Threads

  1. v139h Reward Points module display order totals including reward points
    By irsarahbean in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 23 Jun 2013, 01:19 AM
  2. Reward points module : 0 points earned
    By jonnyboy22 in forum Addon Payment Modules
    Replies: 5
    Last Post: 5 Jun 2012, 09:52 AM
  3. Reward Points module- points not calculated correctly
    By cpoet in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 9 Sep 2010, 05:02 PM
  4. Reward Points Module - Hide message when 0 points offered
    By expresso in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 11 Dec 2008, 06:58 PM
  5. Experimental Reward Points Module
    By precursor999 in forum Addon Payment Modules
    Replies: 7
    Last Post: 2 Apr 2007, 09:32 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR