se agrega subtotal
This commit is contained in:
parent
3b46ae9c78
commit
c9e50bb844
4
sale.py
4
sale.py
@ -80,8 +80,7 @@ class Sale(metaclass=PoolMeta):
|
|||||||
if (sale.state in cls._states_cached
|
if (sale.state in cls._states_cached
|
||||||
and sale.untaxed_amount_cache is not None
|
and sale.untaxed_amount_cache is not None
|
||||||
and sale.tax_amount_cache is not None
|
and sale.tax_amount_cache is not None
|
||||||
and sale.total_amount_cache is not None
|
and sale.total_amount_cache is not None):
|
||||||
and sale.total_discount is not None):
|
|
||||||
untaxed_amount[sale.id] = sale.untaxed_amount_cache
|
untaxed_amount[sale.id] = sale.untaxed_amount_cache
|
||||||
total_discount[sale.id] = sale.total_discount_cache
|
total_discount[sale.id] = sale.total_discount_cache
|
||||||
if compute_taxes:
|
if compute_taxes:
|
||||||
@ -174,6 +173,7 @@ class Sale(metaclass=PoolMeta):
|
|||||||
data["untaxed_amount"] = str(record.untaxed_amount)
|
data["untaxed_amount"] = str(record.untaxed_amount)
|
||||||
data["tax_amount"] = str(record.tax_amount)
|
data["tax_amount"] = str(record.tax_amount)
|
||||||
data["total"] = str(record.total_amount)
|
data["total"] = str(record.total_amount)
|
||||||
|
data["state"] = "SUBTOTAL" if record.state == "draft" else "CUENTA FINAL"
|
||||||
|
|
||||||
if record.payments:
|
if record.payments:
|
||||||
data['payments'] = [{
|
data['payments'] = [{
|
||||||
|
Loading…
Reference in New Issue
Block a user