trytonpsk-dash_sale/dash.py

25 lines
691 B
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
__all__ = ['DashApp']
class DashApp(metaclass=PoolMeta):
__name__ = 'dash.app'
@classmethod
def _get_origin(cls):
origins = super(DashApp, cls)._get_origin()
origins.extend(['dash.app.delivery', 'dash.app.sale_order'])
return origins
@classmethod
def get_selection(cls):
options = super(DashApp, cls).get_selection()
options.extend([
('delivery', 'Delivery'),
('sale_order', 'Sale Order'),
])
return options