trytond-stock_origin_sale/shipment.py
2013-11-19 10:31:39 +01:00

16 lines
425 B
Python
Executable file

#This file is part stock_origin_sale module for 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__ = ['ShipmentOut']
__metaclass__ = PoolMeta
class ShipmentOut:
__name__ = 'stock.shipment.out'
@classmethod
def _get_origin(cls):
return super(ShipmentOut, cls)._get_origin() + ['sale.sale']