trytond-sale_secondary_unit/account.py
Cédric Krier ca17c6d6bf Add secondary unit
issue8239
review271131003
2019-07-28 14:34:20 +02:00

36 lines
1.2 KiB
Python

# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.pool import PoolMeta, Pool
class InvoiceLine(metaclass=PoolMeta):
__name__ = 'account.invoice.line'
def get_product_secondary_uom_category(self, name):
pool = Pool()
SaleLine = pool.get('sale.line')
category = super().get_product_secondary_uom_category(name)
if isinstance(self.origin, SaleLine):
if self.origin.secondary_unit:
category = self.origin.secondary_unit.category.id
return category
@property
def secondary_uom_factor(self):
pool = Pool()
SaleLine = pool.get('sale.line')
factor = super().secondary_uom_factor
if isinstance(self.origin, SaleLine):
factor = self.origin.secondary_uom_factor
return factor
@property
def secondary_uom_rate(self):
pool = Pool()
SaleLine = pool.get('sale.line')
factor = super().secondary_uom_rate
if isinstance(self.origin, SaleLine):
factor = self.origin.secondary_uom_rate
return factor