KonaKart Community Forum

Installation / Configuration => Programming of KonaKart => Topic started by: asimmons on February 25, 2008, 03:26:44 pm

Title: OrderTotalIf[] ...but wheres the order total?
Post by: asimmons on February 25, 2008, 03:26:44 pm
I assume this is an array that hold various order total info (i.e. tax, subTotal, total....) but I can figure out which index of the array the order total is. Or am I in the wrong place, I'm just trying to get the orderTotal with tax. I searched everywhere here for info on this, where and how do I get this? ???
Title: Re: OrderTotalIf[] ...but wheres the order total?
Post by: pete on February 25, 2008, 03:37:26 pm
To figure out which OrderTotal you are looking at, you use the method getClassName(). If you take a look at the source of all of the order total modules in konakart.bl.modules.ordertotal.* , you'll see that each module sets the className to a unique value. The value for Total.java is "ot_total", and the value for Tax.java is "ot_tax".

Hope this helps.

Pete
Title: Re: OrderTotalIf[] ...but wheres the order total?
Post by: asimmons on February 25, 2008, 03:51:22 pm
Ohhhh I see I was looking for this ord.getTotalIncTax(). nevermind

thanks for the fast response.