Questions tagged [django-oscar]

Oscar is an e-commerce framework for Django designed for building domain-driven applications. It is structured so that the core business objects can be customised to suit the domain at hand. In this way, your application can accurately model its domain, making feature development and maintenance much easier

Oscar is an e-commerce framework for Django designed for building domain-driven sites. It is structured such that any part of the core functionality can be customised to suit the needs of your project. This allows a wide range of e-commerce requirements to be handled, from large-scale B2C sites to complex B2B sites rich in domain-specific business logic.

416 questions
0
votes
0 answers

Is it possible to modify a Product's ProductClass programmatically without duplicating the Product's ProductAttributeValues in django-oscar?

I have created a form that allows a user to modify a Product's ProductClass. However, after I save the product, its ProductAttributeValues are automatically duplicated and stored. Here is a simple example of the process: product =…
JAC
  • 591
  • 2
  • 6
  • 19
0
votes
1 answer

Django Oscar on Windows error

After forking app following django-oscar documentaion, It is giving this error: ImportError: No module named 'apps\promotions' Do not know what I did wrong What I have done: python manage.py oscar_fork_app promotions apps Creating package…
John
  • 31
  • 1
  • 4
0
votes
1 answer

unique values in django template

Hi I am working django oscar and working on a functions which selects values of attribute. I want {{product.examination_filter }} to be list of values without duplicates. HTML :
{% for product in products%} …
Kishan Mehta
  • 2,598
  • 5
  • 39
  • 61
0
votes
1 answer

Adding urls/views to a model - Django Oscar?

I want to add some urls/views to dashboard app. So I forked the app using oscar_fork_app. I have created an app.py file in forked dashboardapp folder. Also added an app.py inside catalogue sub-app inside dashboard app. Following this. My…
Coderaemon
  • 3,619
  • 6
  • 27
  • 50
0
votes
2 answers

Add extra context variables into django oscar emails

Trying to add extra context variables for all django oscar email templates. The only way I've got it to work is overriding specific views like ProfileUpdateView. This method seems very messy, I'd have to override a lot of files. Is there a better…
0
votes
1 answer

Best way to import Catalogue from Magento to Django Oscar?

I have an existing system in Magento and I'm moving to Django Oscar. Found this in the Oscar docs. This works for a certain structure of the csv file. The csv export that I get from Magento is totally different. What is the best way to migrate a…
Coderaemon
  • 3,619
  • 6
  • 27
  • 50
0
votes
1 answer

Override Oscar models using other Oscar models from the same app

I need achieve something like this: from oscar.apps.catalogue.abstract_models import AbstractProduct from oscar.apps.catalogue.models import ProductClass Product(AbstractProduct): @property display(self): if self.product_class =…
Jeremiah Rose
  • 3,865
  • 4
  • 27
  • 31
0
votes
0 answers

Changing 'DateField' to 'DateTimeField' for 'date' attribute

I'm trying to change the attribute date of my Product Attributes because it is a DateField and I need a DateTimeField (I want to implement a countdown on my website). I found out that the app responsible for it is oscar.apps.catalogue and the…
Alexandre Lara
  • 2,464
  • 1
  • 28
  • 35
0
votes
1 answer

Django Oscar Adaptive Paypal Payment

In my oscar application django needs adaptive parallel oscar payment procedure. Can anyone tell how to integrate with Adaptive Parallel Paypal method into Normal Paypal. I have integrated Paypal PayFlow and Express methods. Any tutorial references ?
Abin Abraham
  • 497
  • 2
  • 11
  • 26
0
votes
0 answers

REQUEST_URI not found in environ in django oscar

I am complete newbie in django and this is the first time I want to deploy a django project. I am trying to deploy django-oscar's sandbox project with gunicorn and nginx. I used oscar's deployment script for nginx and wsgi and i modified them to…
Ashkan Kazemi
  • 1,077
  • 8
  • 26
0
votes
1 answer

Django-oscar folder using virtualenv

I followed the tutorial of Django-oscar: Building your own shop. What I am trying to do is to find the original django-oscar folder; however, I don't know where it is located. I need to find this folder because I want to customize some files. I'm…
Alexandre Lara
  • 2,464
  • 1
  • 28
  • 35
0
votes
2 answers

django-oscar error ( A server error occurred. Please contact the administrator)?

Iam create project in django-oscar with the help of http://django-oscar.readthedocs.org/en/latest/internals/getting_started.html tutorial , i installed every packages which they mention in doc . after i run my project i getting (A server error…
django-renjith
  • 3,280
  • 2
  • 13
  • 16
0
votes
2 answers

import error No module named 'project\\order'

I'm using oscar and added from fork order app. After added that cant run syncdb or server. It is giving an error import error: No module named 'project\\order' from oscar import get_core_apps INSTALLED_APPS = [ 'django.contrib.admin', …
newbee
  • 136
  • 7
0
votes
1 answer

Add an New app to django-oscar

I am making a Bookshop using Django-Oscar and everything is going great. but I want to add an app (model/view/admin) to show some information about the author of the book. as i dont want to change any of the apps that exist. i just did a STARTAPP…
oskreyes
  • 67
  • 1
  • 5
0
votes
1 answer

How to remove unwanted languages from django oscar?

I just want a few languages, how can I hide or disable the ones I don't want?
SOF.E
  • 3
  • 3