Products     Magento Extension     PCI-Shopping-Carts     Templates       CRELoaded     WordPress Modules     osCommerce Modules       osCommerce Addons       osCommerce Features       osCommerce Management       Payment Modules     CRELoaded Modules       CRE Loaded Addons       CRE Loaded Features       CRE Loaded Management       Payment Modules       CRELoaded Services
Free Stuff
Customization
Templates
Compare Products
You have no items to compare.
Affiliate Info
Affiliate Program FAQ
Affiliate Log In
Recent Orders
Hot Keywords: Order Notification, Order Search, Coupon, Flash Board, Compare, Floating Message, Tracking, Moneris, RSS, Visitor Filter

  Discount Coupon Codes

The following osCommerce contribution is a free Opensource code originated from official osCommerce website and provided for your reference only, you may download the original contribution file(s) and install it on your own; or you may request a Paid Installation Service from Agents Of Power; Agents Of Power does the "AS IS" installation on your website, we do not guarantee it will work properly on your website. Extra Paid service is available for repairing the problem from the original contribution or from your website.
The price calculation is different in newer versions OsCommerce.

This was very helpfull for me as I couldn't find the solution in the forum.

Not complete file, just calculation section included.

Credit goes to Author.
This version is based off of 21 Mar 2009 by rajonbh.

Includes a fix for a problem with exclusions in shipping's discounts, spanish manual and problem with min order min order type: price total.

This is a full package

After installation instructions were added for PayPal IPN


Autoinstaller 2.14 for Discount Coupon Codes 3.32 by dynamoeffects (30 Jan 2009)

The Auto Installer script requires PHP 5.2.0 !

The "Edit Manually" button fixed

Autoinstaller 2.14 for Discount Coupon Codes 3.32 by dynamoeffects (30 Jan 2009)

The Auto Installer script requires PHP 5.2.0 !

Few lines of code were added to list all the files that should have 777 permissions.

Autoinstaller 2.13 for Discount Coupon Codes 3.32 by dynamoeffects (30 Jan 2009)

The Auto Installer script requires PHP5 !

Autoinstaller 2.7 for Discount Coupon Codes 3.32 by dynamoeffects (30 Jan 2009)

The script automatically install the contribution: copy files, edit files, alter database tables.
It saves a backup before any action.

The aim of the script is to speed up the contribution installation.
And to make possible to uninstall it.

You will need to do manually only what the script cannot.


The Auto Installer script requires PHP5 !
problem with Min Order Min Order Type: Price Total

if you use: DISPLAY_PRICE_WITH_TAX == true

Example:
- if you have in shopping cart one item: that has a price without tax: 10$ and a tax 50% that is added to the initial price and the min order is 13 it won't let use the discount coupon because it compare the initial price of the product with the min order




catalog/includes/classes/discount_coupon.php

to add the tax to the product search for function:

function total_valid_products( $products = array() )


there u will find this line:

$price = ( $products[$i]['price'] + $cart->attributes_price( $products[$i]['id'] ) ) * $products[$i]['quantity'];


replace with

if (DISPLAY_PRICE_WITH_TAX == "true"){
$product_tax = tep_get_tax_rate($products[$i]['tax_class_id'], $tax_address['entry_country_id'], $tax_address['entry_zone_id']);
$price = ( tep_add_tax($products[$i]['price'], $product_tax) + $cart->attributes_price( $products[$i]['id'] ) ) * $products[$i]['quantity'];

}else{
$price = ( $products[$i]['price'] + $cart->attributes_price( $products[$i]['id'] ) ) * $products[$i]['quantity'];
}


That's all. Thanks to this great contribution. All credit to kgt .


The file attached contains only the explanation.


Se ha traducido al español el manual de uso en HTML

No es una traduccion literal como hacen muchos, que usan un traductor y apañatelas como puedas, se le ha dado coherencia a la traducicion y ahora tiene sentido todas las frases

Solo hay que sustituir el que esta en admin/includes/languages/espanol por este

NO es el paquete completo, solo el archivo HTML

************************************

NO is the complete package, just the HTML file

Spanish ONLY
The following fix corrects the javascript error when editing Discount Coupons. The javascript function affected is the SetFocus() function used to set focus on the first form field when the page is loaded.

in admin/includes/general.js
around line 11 find:

(field.elements[i].type != "submit") ) {

replace with:

(field.elements[i].type != "submit") &&
(field.elements[i].disabled != true) ) {

This will ignore disabled fields. The error is caused by trying to set focus on the first form field which is disabled.
Bonjour,
Voila ma première contribution
Bonsoir les Oso c'est Djemai :roll:
Je passe la contribution:
faite attention j'ai suis pas super Man verifier avant la mise en place "Faite des teste en Local!"
All fixes below is included.

This also includes a fix for the problem with subtotals showing with the discount applied, even though "Display subtotal with applied discount?" is set to false.
For this solution only please check http://forums.oscommerce.com/index.php?showtopic=213019&st=2320&gopid=1382552&#entry1382552
admin/includes/boxes/catalog.php & reports.php have little error.

Updated now.
Hi,
this is the bug fix for anybody who want to use the free shipping module AND the discount coupon.
NOT the full package, instructions included!
Greetings!
define('BOX_CONFIGURATION_ADMINISTRATORS','Administrator');

in the dynamoeffects files this error is exist which is fix in this file. If any user who is getting this error in the osc bank end then overwrite the attach include of admin



Regards
Saju
This file is the same discount coupon 3.2 but some few fix has been done and for those user who are facing issues in relate to tables, we also have included the tables for that.

if you can have any issues contact http://www.wontonetech.com
Languages included are:

English, French, German, Espanol, Italian.
Just paste into your languages directory.
Or modify on your own.

Enjoy!
Small update incorporates 3.31 bug fix.
   Posted on: 12/09/2008     See contribution details Request Installation with Paid service