How do I calculate the subtotal and the total per column?
views.py
def soma_tuplas(a, b):
return (a[0] + b[0], a[1] + b[1], a[2] + b[2], a[3], a[4])
def quotation_list(request):
stores = Store.objects.all()
products = Product....
asked by
07.12.2015 / 22:40