close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Discount question

Thread began 5/26/2011 6:04 am by info4753 | Last modified 6/02/2011 6:52 am by Jason Byrnes | 1759 views | 8 replies |

info4753

Discount question

I have the following discount rule for wines (PRODKATID = 7) in our shop:

10% discount if more than 95 bottles of wines are in the cart:

Number of items with PRODKATID of 7 >= 96

Now I need to exclude all wines with a special field value of 1. Means no discount on wines with Field "Primeur" = 1

I've already added another Column "Primeur" in the cart and add the field value from the recordset when adding to the cart.

Now how do I extend the rule to:

Number of items with PRODKATID of 7 AND Primeur of 0 >= 96

Thanks for any help.

Sign in to reply to this post

Jason ByrnesWebAssist

in the discount, select to use a custom trigger, for the custom trigger use the following code:

php:
$this->ConditionalTotal("Quantity", "PRODKATID", "7") - $this->ConditionalTotal("Quantity", "Primeur", "1") >= 96





this will return the total number of items where PRODKATID = 7 Minus the total number of items where Primeur = 1

Sign in to reply to this post

info4753

The total discount is still wrong. Here is the rule:

//eCart Rule
function WAEC_eCart_Weinrabatt10() {
$totalDiscount = 0;
if (true && ((( $this->ConditionalTotal("Quantity", "PRODKATID", "7") - $this->ConditionalTotal("Quantity", "Primeur", "1") >= 96 )))) {
$totalDiscount += ($this->ConditionalTotal("TotalPrice", "PRODKATID", "7") * 0.1);//Result
}
return WA_eCart_FormatNumber($totalDiscount, $this->ForceDecimalsC, $this->DecimalPlacesC);
}
//eCart Rule

What happens is that if there are >= 96 bottles of non primeru wines in the cart, the total discount (10%) is counted on the non-primeur AND the primeur wines in the cart.



Furthermore I tried to extend the other discount(s) but received a parse error:

(Discount of 3% for 24 - 47 bottles of wines):

Current rule without primeur wines:

//eCart Rule
function WAEC_eCart_Weinrabatt3() {
$totalDiscount = 0;
if (true && (($this->ConditionalTotal("Quantity", "PRODKATID", "7") >= 24) && ($this->ConditionalTotal("Quantity", "PRODKATID", "7") <= 47))) {
$totalDiscount += ($this->ConditionalTotal("TotalPrice", "PRODKATID", "7") * 0.03);//Result
}
return WA_eCart_FormatNumber($totalDiscount, $this->ForceDecimalsC, $this->DecimalPlacesC);
}
//eCart Rule


New rule with primeur wines, causing parse error:

//eCart Rule
function WAEC_eCart_Weinrabatt3() {
$totalDiscount = 0;
if (true && ((( $this->ConditionalTotal("Quantity", "PRODKATID", "7") - $this->ConditionalTotal("Quantity", "Primeur", "1") >= 24 )) && (( $this->ConditionalTotal("Quantity", "PRODKATID", "7") - $this->ConditionalTotal("Quantity", "Primeur", "1") <= 47 )))) {
$totalDiscount += ($this->ConditionalTotal("TotalPrice", "PRODKATID", "7") * 0.03);//Result
}
return WA_eCart_FormatNumber($totalDiscount, $this->ForceDecimalsC, $this->DecimalPlacesC);
}
//eCart Rule

thanks for any additional help in advance :-)

Sign in to reply to this post

info4753

May I push this thread up again? I do need some support in this issue. Thanks in advance :-)

Sign in to reply to this post

Jason ByrnesWebAssist

instead of changing this in the code, you should do it in the discount portion of the eCart object

for the first rule, set the trigger to a custom condition:

php:
$this->ConditionalTotal("Quantity", "PRODKATID", "7") - $this->ConditionalTotal("Quantity", "Primeur", "1") >= 96



then set the calculation to a flat rate and enter this code:

php:
($this->ConditionalTotal("TotalPrice", "PRODKATID", "7") - $this->ConditionalTotal("TotalPrice", "Primeur", "1")) * 0.1




for the 3% off on 24 - 47, enter the following for the custom trigger:

php:
($this->ConditionalTotal("Quantity", "PRODKATID", "7") - $this->ConditionalTotal("Quantity", "Primeur", "1") >= 24) && ($this->ConditionalTotal("Quantity", "PRODKATID", "7") - $this->ConditionalTotal("Quantity", "Primeur", "1") >= 47)



then set the calculation to a flat rate and enter this code:

php:
($this->ConditionalTotal("TotalPrice", "PRODKATID", "7") - $this->ConditionalTotal("TotalPrice", "Primeur", "1")) * 0.03
Sign in to reply to this post

info4753

Thanks a lot Jason, I'll give try on this and give you a feedback.

Sign in to reply to this post

Jason ByrnesWebAssist

you're welcome.

Sign in to reply to this post

info4753

Works like a charm :-)

Sign in to reply to this post

Jason ByrnesWebAssist

glad to hear it is working.

Sign in to reply to this post

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...