3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-10-05 19:12:09 +00:00

Merge branch 'hotfix-3.0.2'

This commit is contained in:
Yoann Pétri 2018-12-18 11:38:51 +01:00
commit f314308e08
2 changed files with 7 additions and 5 deletions

View file

@ -231,8 +231,9 @@ def cancel_consumption(request, pk):
"""
consumption = get_object_or_404(ConsumptionHistory, pk=pk)
user = consumption.customer
user.profile.debit -= consumption.amount
user.save()
if consumption.paymentMethod.affect_balance:
user.profile.debit -= consumption.amount
user.save()
consumptionT = Consumption.objects.get(customer=user, product=consumption.product)
consumptionT.quantity -= consumption.quantity
consumptionT.save()
@ -252,8 +253,9 @@ def cancel_menu(request, pk):
"""
menu_history = get_object_or_404(MenuHistory, pk=pk)
user = menu_history.customer
user.profile.debit -= menu_history.amount
user.save()
if menu_history.paymentMethod.affect_balance:
user.profile.debit -= menu_history.amount
user.save()
for product in manu_history.menu.articles:
consumptionT = Consumption.objects.get(customer=user, product=product)
consumptionT -= menu_history.quantity

View file

@ -39,5 +39,5 @@
<li><a href="https://www.facebook.com/coopesmetz/" class="icon fa-facebook alt"><span class="label">Facebook</span></a></li>
</ul>
</section>
<p class="copyright">coope.rez v3.0.1 (release stable) &copy; 2018 Yoann Pietri.</p>
<p class="copyright">coope.rez v3.0.2 (release stable) &copy; 2018 Yoann Pietri.</p>