coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 plugins => Topic started by: JohannM on January 06, 2008, 02:13:47 PM

Title: Photo Shop - My Orders: Calculation problems
Post by: JohannM on January 06, 2008, 02:13:47 PM
Hi

The "Admin" and "My Orders" in the photo shop system does not calculate the correct amounts.

Any help ?

Title: Re: Photo Shop - My Orders: Calculation problems
Post by: Stramm on January 06, 2008, 02:40:57 PM
plugins/photo_shop/photo_shop_checkout.php

find
$results2 = cpg_db_query ("INSERT INTO `{$CONFIG['TABLE_SHOP']}` (`oid`, `uid`, `cd`, `quantity`, `price`, `otime`) VALUES ('$order_id', '".USER_ID."', '1', '".($cd_counter['cd']+$cd_counter['photo'])."', '".(number_format(($picture_total+$cd_price[1]+$shipping_price-$discount),2))."', '$otime')");

replace with
$results2 = cpg_db_query ("INSERT INTO `{$CONFIG['TABLE_SHOP']}` (`oid`, `uid`, `cd`, `quantity`, `price`, `otime`) VALUES ('$order_id', '".USER_ID."', '1', '".($cd_counter['cd']+$cd_counter['photo'])."', '".($picture_total+$cd_price[1]+$shipping_price_calc-$discount_calc)."', '$otime')");


find
function photoshop_add_data($shop_data, $order_id){
global $CONFIG, $SHOP_CONFIG, $cd_price, $cd_counter, $discount, $shipping_price;

replace with
function photoshop_add_data($shop_data, $order_id){
global $CONFIG, $SHOP_CONFIG, $cd_price, $cd_counter, $discount_calc, $shipping_price_calc;


Title: Re: Photo Shop - My Orders: Calculation problems
Post by: JohannM on January 06, 2008, 03:58:56 PM
Yet again, you are a star. Working nice.

Thanx a mil Stramm

Ho can I include the discount amount on the "My order" Page ?
Title: Re: Photo Shop - My Orders: Calculation problems
Post by: Stramm on January 06, 2008, 05:26:57 PM
it doesn't save the discount... it saves the price of each item and the total
-> total - sum prices = discount + shipping
Title: Re: Photo Shop - My Orders: Calculation problems
Post by: mfaizalar on March 20, 2008, 01:19:27 PM
Quote from: Stramm on January 06, 2008, 05:26:57 PM
it doesn't save the discount... it saves the price of each item and the total
-> total - sum prices = discount + shipping

I'm having quite similar prob. Setting up 2 diff shipping cost for 2 diff places. But when it comes to total cost, the sum will pick up the highest cost between these 2 shipping costs. Any suggestion to fix this? Appreciate your help! ;)
Title: Re: Photo Shop - My Orders: Calculation problems
Post by: Stramm on March 24, 2008, 09:10:26 PM
it's coded that way... despite changing code there's mo way
Title: Re: Photo Shop - My Orders: Calculation problems
Post by: JohannM on July 27, 2008, 02:45:19 PM
Hi Stramm

I just realized that the "My Orders" and "Admin" pages does not show the correct amounts.  The totals is wrong and the number format also.

What u think can be wring ? Please help !!!   Thanx in advance
Title: Re: Photo Shop - My Orders: Calculation problems
Post by: Stramm on July 28, 2008, 10:17:56 AM
examples? Again with numbers > 1000 ??
Title: Re: Photo Shop - My Orders: Calculation problems
Post by: JohannM on July 28, 2008, 11:02:14 AM
Yes Stramm, numbers greater than 1000. I just can't figure it out, tried everything within my php knowledge.

Title: Re: Photo Shop - My Orders: Calculation problems
Post by: JohannM on July 28, 2008, 11:03:25 AM
Yes Stramm, numbers greater than 1000. I just can't figure it out with my php knowledge. Tried everything !