Page 2 of 4

Re: Report bugs for Version 1.2.7 here

Posted: Tue Nov 22, 2011 7:52 am
by Brent
Sorry. When the changes where made to secure some files, I missed the rss.php and gbase_rss.php.
In both above the code:

Code: Select all

define('APP','CATALOG');
add:

Code: Select all

define('VALID_ACCESS', TRUE);
This line prevents unauthorized access to common.php

Re: Report bugs for Version 1.2.7 here

Posted: Tue Nov 22, 2011 8:45 am
by Oistacus
Brent wrote:Sorry. When the changes where made to secure some files, I missed the rss.php and gbase_rss.php.
In both above the code:

Code: Select all

define('APP','CATALOG');
add:

Code: Select all

define('VALID_ACCESS', TRUE);
This line prevents unauthorized access to common.php
Ok, now works !

Re: Report bugs for Version 1.2.7 here

Posted: Thu Feb 09, 2012 8:09 am
by skau
hi to all, running 1.2.7

I was going in production whith shop but I recognized something is not working ok....
I've posted images on www.megaskau.com as usual for better understanding

I have a product, price 38.00, with applied even quantity discount (50% = 19.00) and dated specials (10%). Final price should be 17.10 = (38.00 * .5 * .9)

On screen the product is show with normal price = 38,00 and special price 34,20 (instead of 17.10), but on the same screen the mini-chart reports correctly 17.10 !!! (see first image)

After purchasing it, I have other errors on order review page (see second image):
a) under regular price I find 38,00 and 20,00 (should be 38,00 and 19,00), under special price I find 34,00 instead of 17,10, under total column I find 17,00 instead of 17,10

b) something is wrong even with an other product (price 38,00, dated special of 10% = 34,20): under special price I find 34,00 instead of 34,20, and under total column I find 34,00 instead of 34,20

After purchasing it, I have other errors on mail sent to customer (see third image):

a) under regular price I find 38,00 and 20,90 (should be 38,00 and 19,00)

Then I can't understand why I have a column titled "Discout amount" which is blank... what is it used for if all data are under "Regular Price" and "Special Price" ?


Thank you so much in advance for helping me coming out in production...

Michele from Rome

Re: Report bugs for Version 1.2.7 here

Posted: Thu Feb 09, 2012 5:40 pm
by Brent
That issue was addressed in revision r143.
This is a screen print using your regular price, special, and quantity discount. The email mirrors this as well.
The discount amount is for order discount. If you have a discount for orders over a certain value of say 5%, then the 5% discount is shown in this column.
R143 Checkout.jpg
R143 Checkout.jpg (71.6 KiB) Viewed 12304 times

Re: Report bugs for Version 1.2.7 here

Posted: Fri Feb 10, 2012 2:05 am
by skau
Graet.. but where can i get 143 fix??
Hi... in rome is snowing!!!!

Re: Report bugs for Version 1.2.7 here

Posted: Fri Feb 10, 2012 2:29 am
by leo
Check out the SVN.

Code: Select all

http://code.google.com/p/alegrocart/updates/list
You can find help in our FAQ.

Re: Report bugs for Version 1.2.7 here

Posted: Fri Feb 10, 2012 1:10 pm
by skau
hi... thanks,

downloaded SVN version up to 147 but errors are still there (with some more, as for exempe mini-chart which with your suggestions works well, but on 147 not)

I think i'll wait until 1.2.8. will released with all corrections

How can I help development of Alegro..??

can i do something in testing or even in translation to italian from version 1.2.6 ??

let me konw

thank you so much in advance

Michele

Re: Report bugs for Version 1.2.7 here

Posted: Fri Feb 10, 2012 1:42 pm
by Brent
If you have downloaded r147, what errors are you getting on the checkout page?
The sample I posted is based on the r143 revision and no changes have been made since then.

Re: Report bugs for Version 1.2.7 here

Posted: Sat Feb 11, 2012 1:41 am
by skau
hi, running 1.2.7, svn 147

I've posted images on www.megaskau.com as usual for better understanding

I have a product, price 30.00, with applied even quantity discount (50% = 15.00) and dated specials (10%). Final price should be 13.50 = (30.00 * .5 * .9)

ERROR 1: On screen the product is show with normal price = 30,00 and special price 27,00 (.. non sense) and quantity discount detail non correct (13,50 50%)

ERROR 2: On the same screen the mini-chart still is the simple witout description (you sended me code to correct it, and it works, but on last SVN is still non ok)

After this I confirm is correct: the chart module, the checkout module and mail to customer

ERROR 3:
instead it is not correct when I review order in my account


Thank you so much in advance for helping me ...

Michele from Rome

Re: Report bugs for Version 1.2.7 here

Posted: Sat Feb 11, 2012 4:18 am
by Brent
That is the way is was intended to wok.
On your sample, the regular price is 30.00. the special is 27.00(10%).
The quantity discount is based on regular price if no quantity discount is available.
If special price is available, the quantity discount is based on the special price.
So what you actually have is 27.00, the special less 50%, leaving net of 13.50.
This is not a chained multiplication.
The special price is a fixed amount set in admin of 27.00. It is not a percentage. The 10% shown in admin or that you can enter in admin to arrive at the 27.00 is for ease of creating the special price. You can either enter a price or discount and the other field is updated accordingly, but the actual price is what we use.
The quantity discount is a percent. That is what is used so we can create the discount based on the lower price, regular or special.
If the quantity discount was based on the regular price of 30.00, it would be 15.00, which would leave you with 27.00(special price) - 15.00(discount) = 12.00. That would not be correct.
On the content screens like category or anywhere you have single column display as per your sample, the quantity discount is not applied to the regular price or the sale price. It is shown for reference. Quantity discounts are never applied until an item is selected because the intention is to increase a discount as quantity of purchase is increased.
E.G. buy 2 - 5%, buy 4 - 10%, buy 10 - 15%
In you sample, if you are selling based on a purchase on 1, could you not have the regular price at 30.00 and the special price at 15.00?