trytond-stock_product_locat.../location.py

15 lines
414 B
Python
Raw Normal View History

2015-04-23 13:04:03 +02:00
# This file is part of the stock_product_location_sequence 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__ = ['ProductLocation']
class ProductLocation:
2016-03-29 12:00:47 +02:00
__metaclass__ = PoolMeta
2015-04-23 13:04:03 +02:00
__name__ = 'stock.product.location'
@staticmethod
def default_sequence():
return 1