dfirst
f42e5d1d30
Added ability to manage Catalogue.Option from the dashboard
7 лет назад
Samir Shah
72f52acff7
Update inputmask to version 4.0.2 (#2852)
7 лет назад
Samir Shah
620cf1c143
Merge pull request #2851 from solarissmoke/feature/tinymce-483
Update TinyMCE to version 4.8.3
7 лет назад
Samir Shah
caa8595635
Update TinyMCE to version 4.8.3
7 лет назад
Samir Shah
97f32d4a5c
Add release notes for #2825.
7 лет назад
Samir Shah
ad0d81dbbc
Merge pull request #2825 from SrdjanCosicPrica/Enh-Track-order-status-change
Enhancement #2737 Track order status changes
7 лет назад
Samir Shah
423342b466
Merge pull request #2850 from solarissmoke/feature/update-npm-deps
Update several development dependencies
7 лет назад
Samir Shah
133aed33be
Merge pull request #2804 from specialunderwear/discounts-incl-tax
Added setting for calculating offer discounts over the price including tax.
7 лет назад
Lars van de Kerkhof
0baf2f2455
Added setting for calculating offer discounts over the price including tax.
7 лет назад
Samir Shah
e88714b276
Update several development dependencies.
7 лет назад
Samir Shah
52c293b9cf
Merge pull request #2832 from django-oscar/pyup-update-ipython-6.5.0-to-7.0.1
Update ipython to 7.0.1
7 лет назад
Samir Shah
2a5736b1bb
Merge pull request #2841 from django-oscar/pyup-update-django-extensions-2.1.2-to-2.1.3
Update django-extensions to 2.1.3
7 лет назад
Samir Shah
93ba887409
Merge pull request #2842 from django-oscar/pyup-update-pillow-5.2.0-to-5.3.0
Update pillow to 5.3.0
7 лет назад
pyup-bot
5153599d2b
Update pillow from 5.2.0 to 5.3.0
7 лет назад
pyup-bot
f192898c73
Update django-extensions from 2.1.2 to 2.1.3
7 лет назад
pyup-bot
8d3ee47446
Update ipython from 6.5.0 to 7.0.1
7 лет назад
Srdjan Cosic
fe747744c3
Add prefetch on status changes in dashboard order detail view
7 лет назад
Srdjan Cosic
a68c994dc8
Add order_create_status_change method
7 лет назад
Srdjan Cosic
b974b69ecd
Remove order receivers
7 лет назад
Samir Shah
f19545e320
Merge pull request #2826 from django-oscar/pyup-update-whitenoise-4.0-to-4.1
Update whitenoise to 4.1
7 лет назад
Samir Shah
344b4fb98a
Merge pull request #2823 from django-oscar/pyup-update-django-debug-toolbar-1.10-to-1.10.1
Update django-debug-toolbar to 1.10.1
7 лет назад
pyup-bot
52d7348a7b
Update whitenoise from 4.0 to 4.1
7 лет назад
Srdjan Cosic
179835a254
Add noqa on import of receiver in order.config.py
7 лет назад
Srdjan Cosic
542f9d1cd0
Add test receiver creates order status change object
7 лет назад
Srdjan Cosic
c15700a488
Add order status change table to order detail template
7 лет назад
Srdjan Cosic
f22fad19bd
Add receiver on order_status_change signal
7 лет назад
Srdjan Cosic
c66d83b88f
Add model for tracking order status changes
7 лет назад
pyup-bot
223d3c3260
Update django-debug-toolbar from 1.10 to 1.10.1
7 лет назад
SrdjanCosicPrica
21c10c87a0
Improve explanation for why you cannot add a variant, when a product hasn't been saved (#2822)
7 лет назад
SrdjanCosicPrica
82e605c841
Fix form errors when going back to first step in dashboard OfferWizard (#2819)
7 лет назад
Selim
ae048a3176
Add missing Decimal import to code block in documentation (#2820)
7 лет назад
Samir Shah
d206113347
Merge pull request #2817 from django-oscar/pyup-update-django-debug-toolbar-1.9.1-to-1.10
Update django-debug-toolbar to 1.10
7 лет назад
pyup-bot
e5f9231cb1
Update django-debug-toolbar from 1.9.1 to 1.10
7 лет назад
Samir Shah
870bfd808c
Fix psycopg2 dependency in requirements.txt
7 лет назад
Samir Shah
35603c6f48
Merge pull request #2815 from sasha0/feature/dependencies
Update Psycopg2 dependency.
7 лет назад
Alexander Gaevsky
602374e5ee
Force install Psycopg2 from source.
7 лет назад
Samir Shah
c581759b9e
Add release notes for #2813 and tweak grammar of release notes for #2616.
7 лет назад
Samir Shah
3f754dcb91
Merge pull request #2813 from edoburu/fix/range-inclusion-checks
Optimize Range checks, and fix missing excluded_products in range.all_products()
7 лет назад
Diederik van der Boor
da4f0e4dc4
Fix Range.all_products() inconsistency with contains_product()
This change fixes the inconsistency with range.all_products() which
didn't check for exclusions when includes_all_products is set
Every other bit of oscar expected range.includes_all_products means
that all products are included, no questions asked. The dashboard
interface even hides the option to edit/remove individual products.
The short circuiting in ConditionalOffer.products() is removed so
the range.all_products() logic is applied consistently.
7 лет назад
Alexander Gaevsky
7244e7b4cd
Update tests.
8 лет назад
Alexander Gaevsky
08cbdbbbcf
Do not allow to put child product to the basket, but rather navigate to the child detail page instead.
7 лет назад
Alexander Gaevsky
fae34a3fad
Disable redirection to parent product detail page for variant products.
7 лет назад
Diederik van der Boor
141bdf6eb7
Optimize category retrieval for ranges: limit selected fields
When packages like oscar-wagtail redefine the Category model,
it can include a lot of extra CMS field data. These affect the
performance of the range lookups, while only a few fields are needed.
7 лет назад
Diederik van der Boor
67611b5d08
Optimize Range queries for contains_product() and all_products()
Cache the categories, so a range can be tested against a set of products
without refetching the categories all the time.
Also avoid querying product.get_product_class() as the Range.classes is
typically empty (it's not exposed in the Oscar dashboard interface).
It could even avoid another query if there was an API like
product.get_product_class_id() but this could cause compatibility problems for
projects that override product.get_product_class()
The range.all_products() uses range._category_ids() which performed 2 queries
where it only needs one, and can now reuse cached data.
Calling range.is_reorderable also fetched unneeded children, but this was
hidden in the RangeProductListView due to the reuse of cached data.
7 лет назад
Samir Shah
f1c1e288ed
Merge pull request #2802 from davisnando/success_url
7 лет назад
Nando Davis
b2b76fb4c7
Use success_url consistently in checkout views.
7 лет назад
Samir Shah
6bbfc6a137
Merge pull request #2809 from django-oscar/pyup-update-django-extensions-2.1.1-to-2.1.2
Update django-extensions to 2.1.2
7 лет назад
pyup-bot
bc43bf04a8
Update django-extensions from 2.1.1 to 2.1.2
7 лет назад
Samir Shah
802415d366
Add docs and release notes for datetime_filters tag library.
7 лет назад
Samir Shah
7f8df357de
Add utils for formatting time deltas, for use in basket.time_since_creation report values
7 лет назад