Dino Perovic

Results 6 comments of Dino Perovic

Hi @bwrm, @jrief. I've had this happen to me recently, it was due to the location of *modifers/providers/workflows*. If for a custom payment you put all the code in `payment.py`...

@IncreaseComputers could you perhaps use Django's `post_save` and `post_delete` signals on the `BaksetItem` model to sync with your stock management? The basket item validator is used just for validating the...

I see what you're saying. I suppose you could swap the basket models and add the additional field that keeps track of the "previous quantity" on the basket item. You...

@IncreaseComputers I believe you would still avoid overselling in my example by raising `ValidationError` in `validate_basket` method on the payment if any one of the items is not available. Either...

Adding `SALESMAN_CHECKOUT_SERIALIZER` seems like a good idea to me. I will look to add it as part of #29. For the addresses, I did not include them to keep it...

I will look into adding such a feature, as soon as I get some free time :)