Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Exlude payment method


koie

Recommended Posts

In my shop people have the option to pay using the invoice that is shipped with the product. We find this a user friendly way to pay and easy for the customers. No need to sign-up with PayPal, Way2Pay or any other payment method.

Unfortunately the downsite is that there are always people that DON'T pay.

Bummer...now we have to take the nessecary steps to get our money.

We would like to reduce the risk of loosing big amounts of money by not having the payment method available if the items in the shopping cart exceed say more than 50 euro's.

The problem is....I have no clue how :D

 

I have been looking at the payment module and the are all sorts of checks that look if the module is enabled, zone is right, etc, etc. I guess it must not be so difficult to get this extra check, but like I said...if have no clue how.

 

Would someone know how?

 

Thanks in advance.

 

Remko

 

This is the code of the invoice.php module.

<?php
/*
 $Id: invoice.php,v 1.28 2003/02/14 05:51:31 hpdl Exp $

 osCommerce, Open Source E-Commerce Solutions
 http://www.oscommerce.com

 Copyright (c) 2003 osCommerce

 Released under the GNU General Public License
*/

 class invoice {
   var $code, $title, $description, $enabled;

// class constructor
   function invoice() {
     global $order;

     $this->code = 'invoice';
     $this->title = MODULE_PAYMENT_INVOICE_TEXT_TITLE;
     $this->description = MODULE_PAYMENT_INVOICE_TEXT_DESCRIPTION;
     $this->sort_order = MODULE_PAYMENT_INVOICE_SORT_ORDER;
     $this->enabled = ((MODULE_PAYMENT_INVOICE_STATUS == 'True') ? true : false);

     if ((int)MODULE_PAYMENT_INVOICE_ORDER_STATUS_ID > 0) {
       $this->order_status = MODULE_PAYMENT_INVOICE_ORDER_STATUS_ID;
     }

     if (is_object($order)) $this->update_status();
   }

// class methods
   function update_status() {
     global $order;

     if ( ($this->enabled == true) && ((int)MODULE_PAYMENT_INVOICE_ZONE > 0) ) {
       $check_flag = false;
       $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_INVOICE_ZONE . "' and zone_country_id = '" . $order->delivery['country']['id'] . "' order by zone_id");
       while ($check = tep_db_fetch_array($check_query)) {
         if ($check['zone_id'] < 1) {
           $check_flag = true;
           break;
         } elseif ($check['zone_id'] == $order->delivery['zone_id']) {
           $check_flag = true;
           break;
         }
       }

       if ($check_flag == false) {
         $this->enabled = false;
       }
     }

// disable the module if the order only contains virtual products
     if ($this->enabled == true) {
       if ($order->content_type == 'virtual') {
         $this->enabled = false;
       }
     }
   }

   function javascript_validation() {
     return false;
   }

   function selection() {
     return array('id' => $this->code,
                  'module' => $this->title);
   }

   function pre_confirmation_check() {
     return false;
   }

   function confirmation() {
     return false;
   }

   function process_button() {
     return false;
   }

   function before_process() {
     return false;
   }

   function after_process() {
     return false;
   }

   function get_error() {
     return false;
   }

   function check() {
     if (!isset($this->_check)) {
       $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_INVOICE_STATUS'");
       $this->_check = tep_db_num_rows($check_query);
     }
     return $this->_check;
   }

   function install() {
     tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Invoice Module', 'MODULE_PAYMENT_INVOICE_STATUS', 'True', 'Do you want sent invoices?', '6', '1', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now())");
     tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Payment Zone', 'MODULE_PAYMENT_INVOICE_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', '6', '2', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes(', now())");
     tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort order of display.', 'MODULE_PAYMENT_INVOICE_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', '6', '0', now())");
     tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, use_function, date_added) values ('Set Order Status', 'MODULE_PAYMENT_INVOICE_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', '6', '0', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now())");
  }

   function remove() {
     tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')");
   }

   function keys() {
     return array('MODULE_PAYMENT_INVOICE_STATUS', 'MODULE_PAYMENT_INVOICE_ZONE', 'MODULE_PAYMENT_INVOICE_ORDER_STATUS_ID', 'MODULE_PAYMENT_INVOICE_SORT_ORDER');
   }
 }
?>

Link to comment
Share on other sites

// disable the module if the order only contains virtual products
    if ($this->enabled == true) {
      if ($order->content_type == 'virtual') {
        $this->enabled = false;
      }
    }

 

I imagine you would want to add something like...

 

// disable the module if the order's dollar value is over $50.00
    if ($this->enabled == true) {
      if ($order_totals > '50.00') {
        $this->enabled = false;
      }
    }

 

Of course, this is just a quick one off, but I imagine it would work something like that with a little troubleshooting...

 

ThomasK

 

ps. no warranties are given with the above code .... use at your discreation ;)

A signature is something that reflects its user. - The dictionary

 

The question is not, 'to code, or not to code'

the question is, 'if we do not code, are we really alive?'

-- anonymous

Link to comment
Share on other sites

// disable the module if the order only contains virtual products
    if ($this->enabled == true) {
      if ($order->content_type == 'virtual') {
        $this->enabled = false;
      }
    }

 

I imagine you would want to add something like...

 

// disable the module if the order's dollar value is over $50.00
    if ($this->enabled == true) {
      if ($order_totals > '50.00') {
        $this->enabled = false;
      }
    }

 

Of course, this is just a quick one off, but I imagine it would work something like that with a little troubleshooting...

 

ThomasK

 

ps. no warranties are given with the above code .... use at your discreation ;)

// disable the module if the order's dollar value is over $250.00
   if ($this->enabled == true) {
     if ($order->info['total'] > '250') {
       $this->enabled = false;
     }
   }

 

Found it, tested it, and now using it for my stormpay module.... ;)

 

ThomasK

A signature is something that reflects its user. - The dictionary

 

The question is not, 'to code, or not to code'

the question is, 'if we do not code, are we really alive?'

-- anonymous

Link to comment
Share on other sites

:D :D :D

Great !!!

I appriciate it. Thanks for your time.

This will reduce our risk a lot and force people to pay in advance when larger amounts of money are involved.

 

Thanks!

 

Remko

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...