9 lines
301 B
Python
9 lines
301 B
Python
#This file is part of Tryton. The COPYRIGHT file at the top level of
|
|
#txhis repository contains the full copyright notices and license terms
|
|
from trytond.model import ModelView, ModelSQL
|
|
|
|
|
|
class PurchaseLine(ModelSQL, ModelView, metaclass=PoolMeta):
|
|
'PurchaseLine'
|
|
__name__ = 'purchase.line'
|