thenewguy

Results 137 comments of thenewguy

I am still interested in this project as well

Did you try something like: ``` urlpatterns = [ # ... path('store/', include(longclaw_urls)), path('cms/', include(wagtail_urls)), ] ```

Just a thought (untested but I've seen similar constructs applied to unrelated things)... but couldn't you write a middleware that listens for an order save signal and have access to...

Another approach example: https://github.com/etianen/django-reversion/blob/master/reversion/middleware.py

Without a more specific example I am not sure how to help. Signals is kind of the way to add pluggable processing in Django.

I've been reading through more. Not seeing how I could hook in for cart and address dependent rates. Minimally Need: - items - item specifics would be nice so it...

I was able to spend some time to layout an initial implementation path that should work with the current approach but also offer enough flexibility to handle advanced cases where...

@JamesRamm Please take a look at PR #228. It allows tagging a ShippingRate to a particular basket, destination address, or both. Let me know you like this direction when you...

I think the concepts of the `AbstractShippingQuote` model I wrote above are correct. But it makes sense to separate them into the "rate" and the "rate calculator". PR #228 currently...

@JamesRamm [Here is what would be required for a site specific implementation](https://github.com/thenewguy/longclaw/blob/issue-204-calculated-rates/longclaw/tests/trivialrates/models.py#L8). It is a good starting point I think. Once packaging options are settled then #219 becomes straightforward. [Here...