mirror of
https://github.com/nanoy42/coope
synced 2024-12-25 08:23:46 +00:00
Merge branch 'hotfix-3.0.2' into dev
This commit is contained in:
commit
aa897d833c
2 changed files with 7 additions and 4 deletions
|
@ -231,6 +231,7 @@ def cancel_consumption(request, pk):
|
||||||
"""
|
"""
|
||||||
consumption = get_object_or_404(ConsumptionHistory, pk=pk)
|
consumption = get_object_or_404(ConsumptionHistory, pk=pk)
|
||||||
user = consumption.customer
|
user = consumption.customer
|
||||||
|
if consumption.paymentMethod.affect_balance:
|
||||||
user.profile.debit -= consumption.amount
|
user.profile.debit -= consumption.amount
|
||||||
user.save()
|
user.save()
|
||||||
consumptionT = Consumption.objects.get(customer=user, product=consumption.product)
|
consumptionT = Consumption.objects.get(customer=user, product=consumption.product)
|
||||||
|
@ -252,6 +253,7 @@ def cancel_menu(request, pk):
|
||||||
"""
|
"""
|
||||||
menu_history = get_object_or_404(MenuHistory, pk=pk)
|
menu_history = get_object_or_404(MenuHistory, pk=pk)
|
||||||
user = menu_history.customer
|
user = menu_history.customer
|
||||||
|
if menu_history.paymentMethod.affect_balance:
|
||||||
user.profile.debit -= menu_history.amount
|
user.profile.debit -= menu_history.amount
|
||||||
user.save()
|
user.save()
|
||||||
for product in manu_history.menu.articles:
|
for product in manu_history.menu.articles:
|
||||||
|
|
|
@ -41,3 +41,4 @@
|
||||||
</section>
|
</section>
|
||||||
<p class="copyright">coope.rez v3.1.0 (version dev) © 2018 Yoann Pietri.</p>
|
<p class="copyright">coope.rez v3.1.0 (version dev) © 2018 Yoann Pietri.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue