Re: Problem with the Product change page (Grappelli installed)

2014-12-03 Thread Olivier Lauret
Hi Marco, I don't know if we are talking about the same issue here, but I had an issue a few months ago when I upgraded to the latest on all packages. The issue was related to admin.TabularInline. Here is the solution I have implemented: diff --git a/satchmo/apps/product/admin.py b/satchmo/apps/p

Empty price fields required

2014-08-13 Thread Olivier Lauret
Hello all, I was wondering if anyone had see the following with Django 1.6? When saving any product via admin, I get the following error "This field is required" for the Prices extra lines which are empty. I can see in the code that we have indeed an "extra = 2" and this is OK. The problem is why

Registration verification not sending emails anymore

2013-05-23 Thread Olivier Lauret
Hello all, I don't know if one of you have already had this issue before, but the django-registration module doesn't send any verification email anymore on my website. I was wondering if any know how to debug this? - It used to work - The user gets created (not activated as expected) - T

Re: Serving cached images using uwsgi/nginx. How ?

2013-04-28 Thread Olivier Lauret
Hi Andrew, Two way I'm doing: - Complexe one: I'm usually using "python manage.py thumbnail cleanup", then "python manage.py thumbnail clear" and finally I restart the django. - Simple one (workaround): download a new image and delete the old one in the same manipulation. It's not th

Re: Failing to update product's image

2013-03-26 Thread Olivier Lauret
Hi David, I can confirm that I have the same problem. I didn't have time to go through the issue. At the moment, I'm just deleting the cache and do a clean up and clear thumbnail to work around the issue. This is obviously not the best. Sorry that I cannot help further. Regards, Olivier On 26

Re: satchmo & Django 1.5

2013-03-24 Thread Olivier Lauret
+1 for allauth :) if this helps! Regards, Olivier On 24 March 2013 21:35, Avraham Serour wrote: > would you consider replacing django-registration for some kind of social > login like allauth? > I like allauth because it handles social login as well login/password > > > On Sun, Mar 24, 2013 at

Re: template syntax error while accessing Admin. admin_static template tag not available

2013-03-10 Thread Olivier Lauret
Hello, Have you tried to search the solution on Google? It seems quite a common issue and I have seen plenty of possible solution for the problem you have, for instance: http://stackoverflow.com/questions/10555433/adding-django-directupload-to-django-project Hope it helps. Regards, Olivier On

Help on UK VAT

2013-03-03 Thread Olivier Lauret
Hello all, Could anyone help with setting up the VAT for UK (should be similar in any EU country)? Problem: Satchmo calculate the VAT amount from the price without tax (US way), while in Europe the main price is the price including tax. In satchmo, I need to set the price without tax for the prod

Re: COD & auto-payment issue

2013-02-13 Thread Olivier Lauret
Hi Stanislav, Is this change already in satchmo? I didn't see it in the change/commit log. Regards, Olivier [image: Equalitea_logo]

Re: Discounts based on an attribute of a Product

2012-11-07 Thread Olivier Lauret
Hi Paul, Have you tried tired prices? This allow to set specific prices by group. Only problem I found with this method is that I couldn't stop the users applying a discount code to it. Regards, Olivier On 7 November 2012 16:26, Paul Walsh wrote: > I have a Satchmo store, where the products a

Re: Restrict Shipping Module by Country?

2012-10-09 Thread Olivier Lauret
Hi Darren, If, I'm not wrong, you can do it with at least one ootb shipping module: tiered weighted module. I guess you would need to adapt this package to other ones. Regards, Olivier On 5 October 2012 22:10, Darren Hollenbeck wrote: > Is there a way to do this? > > For example, if I wanted o

Re: Bug with balance result?

2012-10-05 Thread Olivier Lauret
Hi Darren, The way I have worked around this issue on my website (www.equalitea.co.uk) is as follow: The problem with taxes is that it has to round up the value (this is by law in the UK and I think it should be the same in many countries) and this exactly what the payment module is doing. This i

Re: Cannot upload an image file from my Admin Interface

2012-09-14 Thread Olivier Lauret
Hi Anurag, The problem is probably not related to PIL as, if I'm not wrong, uploading the image just change its name (by default) and put it in the relevant folder. PIL is used when you use the thumbnail functionality. I'm using Linux as well and I don't have any issue. Have you check the permissi

Re: automatic discounts

2012-09-04 Thread Olivier Lauret
Hi, Yes you will see the reduced prices automatically on your website and the discount code will appear automatically in the form at checkout. Regards, Olivier On Sep 4, 2012 8:34 PM, "Tomas Neme" wrote: > Raphael: > > sorry, but I didn't understand your answer XD > > does this mean these disco

SagePay with server integration (not direct integration)

2012-08-28 Thread Olivier Lauret
Hello, Just wondering if anyone have already done the integration between SagePay Server Integration and Satchmo. I googled it but couldn't find anything. I cannot use the direct integration because, as a very small business, the PCI constraints are too important for me. Regards, Olivier -- Yo

Paypal issue with taxes

2012-08-14 Thread Olivier Lauret
Hello, I have a problem with the Paypal payment and the taxes. I have an item which cost £4.16 without tax. The tax is at 20% equivalent to an amount of £0.832, which I expect it to be at £0.83. However, PayPal show me £0.84! I'm sure plenty of people are using PayPal, so would you have any idea

Re: cart does not clear after paypal purchase (but works with sandbox)

2012-08-09 Thread Olivier Lauret
Hello, Any chance you can share what you did to solve your problem? This could be useful if one of us do the same mistake. Regards, Olivier On 7 August 2012 20:29, Cody Goodman wrote: > On Tuesday, May 22, 2012 8:39:16 AM UTC-5, evigmostad wrote: > > Got this working. My bad. I am now taking

"Only authenticated users can check out" not working?

2012-08-04 Thread Olivier Lauret
Hello, I have noticed that the "Only authenticated users can check out" feature doesn't work anymore on satchmo. I have tested on my shop and with a newly created store, using the latest satchmo code from https://bitbucket.org/chris1610/satchmo on Mac and Linux Ubuntu 12.04 (server and desktop).

Bug with balance result?

2012-08-02 Thread Olivier Lauret
Hi all, I have the following problem: order.sub_total = £4.16 TAX = 0.83 order.shopping_cost = £2.75 order.total = £7.74 But: order.balance = £7.75 The problem comes from the utils.numbers.trunc_decimal function which rounds up the order.total of 7.742. Is this a normal behaviour for the balanc

Re: Help serving static files

2012-07-14 Thread Olivier Lauret
tting something in urls.py, I checked it about 10 times > already, I'm thinking maybe it has to do with the order of > the INSTALLED_APPS, does it make any difference? > > for now I'm on my dev machine using virtualenv, once this works locally > I'll try to put it on the

Re: Help serving static files

2012-07-14 Thread Olivier Lauret
Hi Avraham, Did you get your django sorted? I'm also new with satchmo and django but I have never seen this situation. I've used satchmo with python 2.7.3 and django 1.3.1 and 1.4, without any issue. If you can see the images, I don't understand how you could not see the js as they are both called

Tiered shipping with zones

2012-05-31 Thread Olivier Lauret
Hello, Before trying to re-invent the wheel, I was wondering if someone has already done a shipping module similar to Tiered but with Zones as we can see in TieredWeight module. If so, would you be ready to share it? :) Regards, Olivier -- You received this message because you are subscribed to

Re: Adding products while checking out

2012-05-17 Thread Olivier Lauret
Hi Tom, Did you managed to find an answer for your question. I'm also interested at the solution. Regards, Olivier On 14 May 2012 19:10, Tom Longson (nym) wrote: > Hi Satchmo-lovers! > > I'm trying to figure out how to allow a user to add a product in the > final stages of the checkout. We run

Re: How Can I Override These Templates?

2012-05-09 Thread Olivier Lauret
Hi, In Satchmo, it is very easy to change a default template. Just move these templates in your site using the same directory structure under templates and the job is done (well, almost, now you have to do the changes in the files). For instance, in the payment example you gave, just copy the html

Re: Satchmo checkout workflow

2012-03-31 Thread Olivier Lauret
> can easy remap urls. You can also replace e.g one step by two or > viceversa two by one. > > Some views should be later rewritten by us to use classes (which are > easier customizable) instead of functions for views. > > --Hy > > On 31 bře, 00:30, Olivier Lauret > wr

Satchmo checkout workflow

2012-03-30 Thread Olivier Lauret
Hi all, This is my first satchmo implementation, sorry if the question is too obvious. Is there a way to change the satchmo checkout workflow without rewriting the payment module? I'd like to have the shipping information and a summary as different steps and then show the payment module. I have

Re: Wishlist context

2012-03-29 Thread Olivier Lauret
Thank you everyone, I will have a look at it. Olivier Le 29 mars 2012 15:34, lacrymol...@gmail.com a écrit : > > Look for "context processor" in the django docs > > -Mensaje original- > De: Olivier Lauret > Enviados: 29/03/2012 06:08:26 > Asun

Wishlist context

2012-03-29 Thread Olivier Lauret
Hello, Apologies for the beginner's question. I'm trying to show the number of items in the wishlist everywhere on my website, the same way I would have the number of items in the shopping cart. I have created a custom tag for it. The problem is that the wishlist context isn't everywhere and I do

Re: why does {{ product|discount_price:sale|currency }} return an error?

2012-03-29 Thread Olivier Lauret
: You have two products A B with autodiscounts. > A, $1000, 10% > B, $10, 75% > Is really 75% the best you want for both?? > find_best_auto_discount([A, B]) yes you see big fat printed 75% > today, but really? > > The most interesting proposals to discounts are in "discounts > brainstormin

Re: why does {{ product|discount_price:sale|currency }} return an error?

2012-03-28 Thread Olivier Lauret
Hi, I had this problem as well. It is related, as you probably realised, to the sale key which is not part of your Request Context. I found a solution but it is at the moment very inefficient. Maybe, someone else can help with something better. Here is what I have done: *

Re: why does {{ product|discount_price:sale|currency }} return an error?

2012-03-27 Thread Olivier Lauret
Can you share with us the error message? This might give us a hint. On Mar 27, 2012 9:27 PM, "easypie" wrote: > Why does {{ product|discount_price:sale|currency }} return an error in > shop/index.html template? I wanted the product thumbnail to also include > the price listed below it. But there

Re: Translation issues

2012-01-31 Thread Olivier Lauret
merged. If you need more help on forking > and merging, let us know. > > Thanks, > Chris > > On Mon, Jan 30, 2012 at 4:09 PM, Olivier Lauret < > olivier.lau...@googlemail.com> wrote: > >> Hello, >> >> Very sorry if the question has been asked before,

Translation issues

2012-01-31 Thread Olivier Lauret
Hello, Very sorry if the question has been asked before, I'm a complete newbie with Satchmo. While trying to understand how Satchmo works, I'd like to help the project. And because I'm a beginner, I guess the translation side is the best way I could help with. I have noticed that there is some tra