Re: [mezzanine-users] Cartrige custom shipping by country

2016-11-13 Thread akos1234
Hello Danny, I am trying to work on the codes you have hear against what I have. I wanted to see how the shipping by country is implemented checking out your code. I have some errors trying to incorporate it into my project not going so well for me I hope to learn from what you have hear. If

Re: [mezzanine-users] Cartrige custom shipping by country

2016-11-13 Thread akos1234
Hi Akhlaq, The only closest one I came across was this - http://mezzanine-users.narkive.com/AOk7Y6Kl/cartrige-custom-shipping-by-country-and-product-category even that it seems he was not quiet heading for the right direction. Regards On Saturday, 5 November 2016 02:03:34 UTC, Akhlaq Rao

Re: [mezzanine-users] Cartrige custom shipping by country

2016-11-04 Thread Akhlaq Rao
Thanks a lot Danny, is there a good example about how to set the shipping rules based on country? On Fri, Nov 4, 2016 at 7:12 PM, Danny wrote: > On 5/11/2016 4:18 AM, Akhlaq Rao wrote: > > Hello Danny, > > I am not seeing these options when creating a variation, all I see the

Re: [mezzanine-users] Cartrige custom shipping by country

2016-11-04 Thread Danny
On 5/11/2016 4:18 AM, Akhlaq Rao wrote: Hello Danny, I am not seeing these options when creating a variation, all I see the colour and size, do you now how do I enable these variations? - Product Variations now have weight, and boolean "pickup available"/"shipping available" options

Re: [mezzanine-users] Cartrige custom shipping by country

2016-11-04 Thread Akhlaq Rao
Hello Danny, I am not seeing these options when creating a variation, all I see the colour and size, do you now how do I enable these variations? - Product Variations now have weight, and boolean "pickup available"/"shipping available" options Thanks,Akhlaq On Thu, Nov 3, 2016 7:31 PM,

Re: [mezzanine-users] Cartrige custom shipping by country

2016-11-04 Thread akos1234
Hello Danny, Thank you so much for your prompt reply. I will have a look and update here. Regards Akos On Thursday, 3 November 2016 23:31:58 UTC, Danny S wrote: > > On 4/11/2016 5:31 AM, akos1234 wrote: > > Hello everyone, > > I am trying to attempt to create the shipping for my site. > > I

Re: [mezzanine-users] Cartrige custom shipping by country

2016-11-03 Thread Danny
On 4/11/2016 5:31 AM, akos1234 wrote: Hello everyone, I am trying to attempt to create the shipping for my site. I was looking at this post - http://mezzanine-users.narkive.com/AOk7Y6Kl/cartrige-custom-shipping-by-country-and-product-category which I thought was at the right track. I need to

[mezzanine-users] Cartrige custom shipping by country

2016-11-03 Thread akos1234
Hello everyone, I am trying to attempt to create the shipping for my site. I was looking at this post - http://mezzanine-users.narkive.com/AOk7Y6Kl/cartrige-custom-shipping-by-country-and-product-category which I thought was at the right track. I need to set shipping cost for countries as

Re: [mezzanine-users] Cartrige custom shipping by country and product category

2014-10-02 Thread Josh Cartmell
Hey Mat, could you go into more detail about what you mean by location + category. I'm not sure what you are trying to do so it's hard to make a recommendation =) On Wed, Oct 1, 2014 at 12:11 PM, Mat Caissy matsi...@gmail.com wrote: Hey everyone, After browsing on the forum, I successfully

Re: [mezzanine-users] Cartrige custom shipping by country and product category

2014-10-02 Thread Mat Caissy
Hi Josh, thx for your reply! Sorry for the confusion. What (and how) I'm trying to do is to calculate the shipping by location with the shipping_detail_country (works good) from the order_form AND the product custom shipping class and fields that I injected in the product model and the admin.

Re: [mezzanine-users] Cartrige custom shipping by country and product category

2014-10-02 Thread Melvyn Sopacua
Hi Mat, On Thursday 02 October 2014 10:28:17 Mat Caissy wrote: Now the *problem*: How can I have access to the product instance and this new shipping class in my custom *checkout.py* custom_billship_handler from the cart? That way if I have a user buying a product and selecting Canada in

Re: [mezzanine-users] Cartrige custom shipping by country and product category

2014-10-02 Thread Josh Cartmell
I think I understand now, I've done something like this in the past skus = cart.items.values_list('sku', flat=True)variations = ProductVariation.objects.filter(sku__in=skus).select_related('product') Then for each variation you could access .product and look up the associated shipping class.