Community Add-Ons
Discount Groups
for osCommerce Online Merchant v2.2
this contribution allows admins to create and manage customers groups and discount associated to those groups. all discount are percentage (positive integer). A group has a default discount and can be associated to specific category discounts. All discounts are applied to the customer's pages automatically. the customers will not know the group in wich they're in nor the discount percentage.
I changed something to make it easier to install
All credits go to Enrico Drusiani and jbaakko
In admin/customers.php
Find
$sql_data_array = array('customers_firstname' => $customers_firstname,
'customers_lastname' => $customers_lastname,
'customers_email_address' => $customers_email_address,
'customers_telephone' => $customers_telephone,
'customers_fax' => $customers_fax,
'customers_newsletter' => $customers_newsletter);
Replace
$sql_data_array = array('customers_firstname' => $customers_firstname,
'customers_lastname' => $customers_lastname,
'customers_email_address' => $customers_email_address,
'customers_telephone' => $customers_telephone,
'customers_fax' => $customers_fax,
'customers_newsletter' => $customers_newsletter,
'customers_groups_id' => $customers_groups_id);
