close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Promotions system

Thread began 6/01/2016 6:43 am by Christopher West | Last modified 6/02/2016 10:55 am by Christopher West | 456 views | 3 replies

CraigRBeta Tester

Too late ?

Hi Chris

Just noticed this post. If you are interested, here is a table structure I created to allow the client to manage their coupons in a database

CREATE TABLE IF NOT EXISTS `tblcoupon` (
`CouponID` int(11) NOT NULL AUTO_INCREMENT,
`CouponTypeID` smallint(6) NOT NULL,
`CategoryID` int(11) NOT NULL,
`CouponDescription` varchar(100) NOT NULL,
`CouponCode` varchar(50) CHARACTER SET latin1 NOT NULL,
`CouponAmount` double NOT NULL,
`Threshold` decimal(6,2) NOT NULL,
`ValidFrom` date NOT NULL,
`ValidTo` date NOT NULL,
`Active` tinyint(4) NOT NULL,
PRIMARY KEY (`CouponID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;

--
-- Dumping data for table `tblcoupon`
--

INSERT INTO `tblcoupon` (`CouponID`, `CouponTypeID`, `CategoryID`, `CouponDescription`, `CouponCode`, `CouponAmount`, `Threshold`, `ValidFrom`, `ValidTo`, `Active`) VALUES
(1, 1, 0, '10% Discount', 'bananas', 0.1, 0.00, '2014-05-03', '2014-06-30', 1),
(2, 1, 0, '20% Discount', 'cheese', 0.2, 66.00, '2014-05-01', '2014-06-30', 1),
(3, 2, 0, '£5 Flat Rate Discount', 'flat', 5, 75.00, '2014-05-01', '2014-06-30', 1),
(4, 4, 1, '11% off Joy Line', 'joy', 0.11, 0.00, '2014-05-01', '2014-06-30', 1),
(5, 3, 0, 'Whole order for a pound', 'itsapound', 1, 0.00, '2014-05-02', '2014-09-04', 1);



To get it working, I just had a recordset on the cart page (or the one with the voucher form) and used the coupon code (and date parameters) as the recordset filter.
If I got a row returned, then i had a valid voucher code, so then I stored the relevant field values in session variables.
these session variables were used in the ecart object

Its a few years old now, but the concept is good

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...