trytond-stock_product_locat.../location.py

15 lines
414 B
Python

# 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:
__metaclass__ = PoolMeta
__name__ = 'stock.product.location'
@staticmethod
def default_sequence():
return 1