close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Rounging problem in php

Thread began 3/14/2009 12:53 am by info4753 | Last modified 3/14/2009 8:10 am by info4753 | 2221 views | 3 replies |

info4753

Rounding problem in php

I addressed this problem as a ticket but didn't get it solved there. The Webassist supporter didn't give any more answers nor informed me if he's working on it.

Our shop runs in swiss francs, means I have to round the cents in 0.05 steps. The round problem appears when a discount for wine is applied. I have the solution in ASP but need help to change it to php:

The discount (WeineMengenrabatt) for wines (PRODKATID=7) is 3% for orders of more than 24 up to 47 bottles:

<%
function WAEC_WeineMengenrabatt()
totalDiscount = 0
if ((WA_eCart_ConditionalTotal(Ullrich_eCart, "Quantity", "PRODKATID", "7") >= 24) AND (WA_eCart_ConditionalTotal(Ullrich_eCart, "Quantity", "PRODKATID", "7") <= 47)) then
totalDiscount = totalDiscount + (Round((WA_eCart_ConditionalTotal(Ullrich_eCart, "TotalPrice", "PRODKATID", "7") * cDbl(0.03))* 20))/20'Result
end if
WAEC_WeineMengenrabatt = WA_eCart_FormatNumber(totalDiscount, Ullrich_eCart.ForceDecimalsC, Ullrich_eCart.DecimalPlacesC)
end function
%>

The current php code is:

function WAEC_eCartUllrich_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);
}

The code for showing up the discount is in ASP

<%= FormatNumber(WAEC_WeineMengenrabatt(), 2, -2, -2, -2) %>

The current php code is:

<?php echo WA_eCart_DisplayMoney($eCartUllrich, $eCartUllrich->RuleLooperValue("Discounts")); ?>

Sign in to reply to this post

Ray BorduinWebAssist

I'm not exactly sure, but I think this might work:


return WA_eCart_FormatNumber($totalDiscount, round(($this->ForceDecimalsC, $this->DecimalPlacesC,1)*2)/2);

I think that would round the result to the nearest 0.05

Sign in to reply to this post
Did this help? Tips are appreciated...

Ray BorduinWebAssist

or actually I think it would be:


return WA_eCart_FormatNumber($totalDiscount, round(($this->ForceDecimalsC, $this->DecimalPlacesC*2,1))/2);

Sign in to reply to this post
Did this help? Tips are appreciated...

info4753

Thanks for your help Ray.

It looks like

return round(WA_eCart_FormatNumber($totalDiscount, $this->ForceDecimalsC, $this->DecimalPlacesC)*2,1)/2;

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