trytond_stock_product_location-5.0.1/0000755000175000017500000000000013433070713017364 5ustar cedced00000000000000trytond_stock_product_location-5.0.1/CHANGELOG0000644000175000017500000000321013433070712020571 0ustar cedced00000000000000Version 5.0.1 - 2019-02-19 * Bug fixes (see mercurial logs for details) Version 5.0.0 - 2018-10-01 * Bug fixes (see mercurial logs for details) * Remove support for Python 2.7 Version 4.8.0 - 2018-04-23 * Bug fixes (see mercurial logs for details) Version 4.6.0 - 2017-10-30 * Bug fixes (see mercurial logs for details) Version 4.4.0 - 2017-05-01 * Bug fixes (see mercurial logs for details) * Use MatchMixin for ProductLocation Version 4.2.0 - 2016-11-28 * Bug fixes (see mercurial logs for details) * Use product default location for production outputs Version 4.0.0 - 2016-05-02 * Bug fixes (see mercurial logs for details) * Add Python3 support Version 3.8.0 - 2015-11-02 * Bug fixes (see mercurial logs for details) Version 3.6.0 - 2015-04-20 * Bug fixes (see mercurial logs for details) * Add support for PyPy Version 3.4.0 - 2014-10-20 * Bug fixes (see mercurial logs for details) Version 3.2.0 - 2014-04-21 * Bug fixes (see mercurial logs for details) Version 3.0.0 - 2013-10-21 * Bug fixes (see mercurial logs for details) Version 2.8.0 - 2013-04-22 * Bug fixes (see mercurial logs for details) Version 2.6.0 - 2012-10-22 * Bug fixes (see mercurial logs for details) Version 2.4.0 - 2012-04-24 * Bug fixes (see mercurial logs for details) Version 2.2.0 - 2011-10-25 * Bug fixes (see mercurial logs for details) Version 2.0.0 - 2011-04-27 * Bug fixes (see mercurial logs for details) Version 1.8.0 - 2010-11-01 * Bug fixes (see mercurial logs for details) Version 1.6.0 - 2010-05-12 * Bug fixes (see mercurial logs for details) Version 1.4.0 - 2009-10-19 * Bug fixes (see mercurial logs for details) Version 1.2.0 - 2009-07-31 * Initial release trytond_stock_product_location-5.0.1/COPYRIGHT0000644000175000017500000000133013433070712020653 0ustar cedced00000000000000Copyright (C) 2008-2019 Cédric Krier. Copyright (C) 2008-2012 Bertrand Chenal. Copyright (C) 2008-2019 B2CK SPRL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . trytond_stock_product_location-5.0.1/product.py0000644000175000017500000000104413354423126021417 0ustar cedced00000000000000# 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.model import fields from trytond.pyson import Eval from trytond.pool import PoolMeta __all__ = ['Product'] class Product(metaclass=PoolMeta): __name__ = 'product.product' locations = fields.One2Many('stock.product.location', 'product', 'Default Locations', states={ 'invisible': ~Eval('type').in_(['goods', 'assets']), }, depends=['type']) trytond_stock_product_location-5.0.1/location.py0000644000175000017500000000457213354423126021560 0ustar cedced00000000000000# 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.model import (ModelView, ModelSQL, MatchMixin, fields, sequence_ordered) from trytond.pyson import If, Eval, Bool from trytond.pool import PoolMeta __all__ = ['ProductLocation', 'Move', 'ShipmentIn', 'ShipmentOutReturn'] class ProductLocation(sequence_ordered(), ModelSQL, ModelView, MatchMixin): ''' Product Location It defines the default storage location by warehouse for a product. ''' __name__ = 'stock.product.location' product = fields.Many2One('product.product', 'Product', required=True, select=True, ondelete='CASCADE') warehouse = fields.Many2One('stock.location', 'Warehouse', required=True, domain=[('type', '=', 'warehouse')], ondelete='CASCADE') location = fields.Many2One('stock.location', 'Storage Location', required=True, ondelete='CASCADE', domain=[ ('type', '=', 'storage'), ('parent', 'child_of', If(Bool(Eval('warehouse')), [Eval('warehouse')], [])), ], depends=['warehouse']) class Move(metaclass=PoolMeta): __name__ = 'stock.move' def set_product_location(self, field='to_location', **pattern): assert field in {'from_location', 'to_location'} if getattr(self, 'shipment', None): pattern.setdefault('warehouse', self.shipment.warehouse.id) for product_location in self.product.locations: if product_location.match(pattern): setattr(self, field, product_location.location) break class ShipmentIn(metaclass=PoolMeta): __name__ = 'stock.shipment.in' @classmethod def _get_inventory_moves(cls, incoming_move): move = super(ShipmentIn, cls)._get_inventory_moves(incoming_move) if move: move.set_product_location( warehouse=incoming_move.shipment.warehouse.id) return move class ShipmentOutReturn(metaclass=PoolMeta): __name__ = 'stock.shipment.out.return' @classmethod def _get_inventory_moves(cls, incoming_move): move = super(ShipmentOutReturn, cls)._get_inventory_moves( incoming_move) if move: move.set_product_location( warehouse=incoming_move.shipment.warehouse.id) return move trytond_stock_product_location-5.0.1/setup.cfg0000644000175000017500000000004613433070713021205 0ustar cedced00000000000000[egg_info] tag_build = tag_date = 0 trytond_stock_product_location-5.0.1/PKG-INFO0000644000175000017500000000520313433070713020461 0ustar cedced00000000000000Metadata-Version: 1.2 Name: trytond_stock_product_location Version: 5.0.1 Summary: Tryton module to add default location on product Home-page: http://www.tryton.org/ Author: Tryton Author-email: issue_tracker@tryton.org License: GPL-3 Download-URL: http://downloads.tryton.org/5.0/ Description: trytond_stock_product_location ============================== The stock_product_location module of the Tryton application platform. Installing ---------- See INSTALL Support ------- If you encounter any problems with Tryton, please don't hesitate to ask questions on the Tryton bug tracker, mailing list, wiki or IRC channel: http://bugs.tryton.org/ http://groups.tryton.org/ http://wiki.tryton.org/ irc://irc.freenode.net/tryton License ------- See LICENSE Copyright --------- See COPYRIGHT For more information please visit the Tryton web site: http://www.tryton.org/ Keywords: tryton stock product location Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Plugins Classifier: Framework :: Tryton Classifier: Intended Audience :: Developers Classifier: Intended Audience :: Legal Industry Classifier: Intended Audience :: Manufacturing Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) Classifier: Natural Language :: Bulgarian Classifier: Natural Language :: Catalan Classifier: Natural Language :: Chinese (Simplified) Classifier: Natural Language :: Czech Classifier: Natural Language :: Dutch Classifier: Natural Language :: English Classifier: Natural Language :: French Classifier: Natural Language :: German Classifier: Natural Language :: Hungarian Classifier: Natural Language :: Italian Classifier: Natural Language :: Persian Classifier: Natural Language :: Polish Classifier: Natural Language :: Portuguese (Brazilian) Classifier: Natural Language :: Russian Classifier: Natural Language :: Slovenian Classifier: Natural Language :: Spanish Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Topic :: Office/Business Requires-Python: >=3.4 trytond_stock_product_location-5.0.1/README0000644000175000017500000000112113354423126020241 0ustar cedced00000000000000trytond_stock_product_location ============================== The stock_product_location module of the Tryton application platform. Installing ---------- See INSTALL Support ------- If you encounter any problems with Tryton, please don't hesitate to ask questions on the Tryton bug tracker, mailing list, wiki or IRC channel: http://bugs.tryton.org/ http://groups.tryton.org/ http://wiki.tryton.org/ irc://irc.freenode.net/tryton License ------- See LICENSE Copyright --------- See COPYRIGHT For more information please visit the Tryton web site: http://www.tryton.org/ trytond_stock_product_location-5.0.1/locale/0000755000175000017500000000000013433070713020623 5ustar cedced00000000000000trytond_stock_product_location-5.0.1/locale/es.po0000644000175000017500000000256713354423126021606 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "Ubicaciones por defecto" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "Fecha de creación" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "Usuario de creación" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "ID" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "Ubicación interna" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "Producto" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "Nombre del registro" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "Secuencia" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "Almacén" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "Fecha de modificación" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "Usuario de modificación" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "Ubicación de producto" msgctxt "view:stock.product.location:" msgid "Product Location" msgstr "Ubicación de producto" msgctxt "view:stock.product.location:" msgid "Product Locations" msgstr "Ubicaciones de producto" trytond_stock_product_location-5.0.1/locale/cs.po0000644000175000017500000000176213354423126021600 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "" trytond_stock_product_location-5.0.1/locale/de.po0000644000175000017500000000252113354423126021555 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "Standardlagerorte" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "Erstellungsdatum" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "Erstellt durch" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "ID" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "Lagerort" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "Artikel" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "Bezeichnung des Datensatzes" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "Reihenfolge" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "Warenlager" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "Zuletzt geändert" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "Letzte Änderung durch" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "Artikel Lagerort" msgctxt "view:stock.product.location:" msgid "Product Location" msgstr "Artikel Lagerort" msgctxt "view:stock.product.location:" msgid "Product Locations" msgstr "Artikel Lagerorte" trytond_stock_product_location-5.0.1/locale/sl.po0000644000175000017500000000242113354423126021602 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "Privzete lokacije" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "Izdelano" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "Izdelal" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "ID" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "Shramba" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "Izdelek" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "Ime" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "Zap.št." msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "Skladišče" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "Zapisano" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "Zapisal" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "Lokacija izdelkov" msgctxt "view:stock.product.location:" msgid "Product Location" msgstr "Lokacija izdelkov" msgctxt "view:stock.product.location:" msgid "Product Locations" msgstr "Lokacije izdelkov" trytond_stock_product_location-5.0.1/locale/lt.po0000644000175000017500000000176213354423126021612 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "" trytond_stock_product_location-5.0.1/locale/it_IT.po0000644000175000017500000000222213354423126022173 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "" #, fuzzy msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "Data di creazione" #, fuzzy msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "Utente creazione" #, fuzzy msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "Movimento contabile" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "" #, fuzzy msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "Prodotto" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "" #, fuzzy msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "Sequenza" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "" #, fuzzy msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "Utente scrittura" #, fuzzy msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "modificato da" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "" trytond_stock_product_location-5.0.1/locale/ja_JP.po0000644000175000017500000000176213354423126022156 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "" trytond_stock_product_location-5.0.1/locale/fa.po0000644000175000017500000000231413354423126021553 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "مکان های پیشفرض" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "تاریخ ایجاد" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "کاربر ایجاد کننده" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "شناسه" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "محل انبار" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "محصول" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "نام پرونده" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "ادامه" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "انبار" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "تاریخ نوشته" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "نوشته کاربر" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "مکان محصول" trytond_stock_product_location-5.0.1/locale/bg.po0000644000175000017500000000305113354423126021554 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "Местонахождения по подразбиране" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "Създадено на" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "Създадено от" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "ID" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "Местонахождение на съхранение" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "Продукт" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "Последователност" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "Склад" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "Променено на" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "Променено от" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "Местонахождение на продукт" msgctxt "view:stock.product.location:" msgid "Product Location" msgstr "Местонахождение на продукт" msgctxt "view:stock.product.location:" msgid "Product Locations" msgstr "Местонахождения на продукт" trytond_stock_product_location-5.0.1/locale/hu_HU.po0000644000175000017500000000253213354423126022177 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "Alapértelmezett raktár hely" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "Létrehozás dátuma" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "Által létrehozva" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "ID" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "Raktár helye" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "Termék" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "Sorrend" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "Raktár" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "Utolsó módosítás dátuma" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "Által módosítva" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "Termék raktárhelye" msgctxt "view:stock.product.location:" msgid "Product Location" msgstr "Termék raktárhelye" msgctxt "view:stock.product.location:" msgid "Product Locations" msgstr "Termék raktárhelye" trytond_stock_product_location-5.0.1/locale/es_419.po0000644000175000017500000000202413354423126022167 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "Ubicación de almacenamiento" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "Bodega" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "" trytond_stock_product_location-5.0.1/locale/nl.po0000644000175000017500000000216513354423126021602 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "" #, fuzzy msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "Datum" #, fuzzy msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "Gebruiker" #, fuzzy msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "ID" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "" #, fuzzy msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "Producten" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "" #, fuzzy msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "Reeks" #, fuzzy msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "Magazijn" #, fuzzy msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "Schrijfdatum" #, fuzzy msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "Gebruiker" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "" trytond_stock_product_location-5.0.1/locale/pt_BR.po0000644000175000017500000000255513354423126022202 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "Localizações padrão" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "Data de criação" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "Criado por" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "ID" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "Localização de armazenamento" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "Produto" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "Nome do Registro" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "Sequência" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "Almoxarifado" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "Data de gravação" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "Editado por" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "Localização do produto" msgctxt "view:stock.product.location:" msgid "Product Location" msgstr "Localização do produto" msgctxt "view:stock.product.location:" msgid "Product Locations" msgstr "Localizações do Produto" trytond_stock_product_location-5.0.1/locale/zh_CN.po0000644000175000017500000000214513354423126022170 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "" #, fuzzy msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "创建日期:" #, fuzzy msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "添加用户" #, fuzzy msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "编号" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "" #, fuzzy msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "序列" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "" #, fuzzy msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "写入日期" #, fuzzy msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "写入帐号" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "" trytond_stock_product_location-5.0.1/locale/fr.po0000644000175000017500000000255013354423126021576 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "Emplacements par défaut" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "Date de création" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "Créé par" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "ID" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "Emplacement de stockage" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "Produit" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "Nom de l'enregistrement" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "Séquence" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "Entrepôt" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "Date de mise à jour" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "Mis à jour par" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "Emplacement produit" msgctxt "view:stock.product.location:" msgid "Product Location" msgstr "Emplacement de produit" msgctxt "view:stock.product.location:" msgid "Product Locations" msgstr "Emplacements de produit" trytond_stock_product_location-5.0.1/locale/pl.po0000644000175000017500000000215413354423126021602 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "Domyślne lokalizacje" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "Data utworzenia" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "Utworzył" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "ID" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "Produkt" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "Nazwa rekordu" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "Sekwencja" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "Magazyn" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "Data zapisu" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "Zapisał" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "Lokalizacja produktu" trytond_stock_product_location-5.0.1/locale/lo.po0000644000175000017500000000252113354423126021577 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "ບ່ອນເກັບມ້ຽນເດີມ" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "ວັນທີສ້າງ" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "ຜູ້ສ້າງ" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "ເລກລຳດັບ" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "ບ່ອນເກັບມ້ຽນ" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "ຜະລິດຕະພັນ" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "ລໍາດັບ" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "ສາງໃຫຍ່" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "ວັນທີບັນທຶກ" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "ຜູ້ບັນທຶກ" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "ບ່ອນເກັບມ້ຽນຜະລິດຕະພັນ" trytond_stock_product_location-5.0.1/locale/ca.po0000644000175000017500000000255513354423126021557 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "Ubicacions predeterminades" msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "Data de creació" msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "Usuari de creació" msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "ID" msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "Ubicació interna" msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "Producte" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "Nom del registre" msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "Seqüència" msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "Magatzem" msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "Data de modificació" msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "Usuari de modificació" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "Ubicació de producte" msgctxt "view:stock.product.location:" msgid "Product Location" msgstr "Ubicació de producte" msgctxt "view:stock.product.location:" msgid "Product Locations" msgstr "Ubicacions de producte" trytond_stock_product_location-5.0.1/locale/ru.po0000644000175000017500000000257213354423126021621 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:product.product,locations:" msgid "Default Locations" msgstr "" #, fuzzy msgctxt "field:stock.product.location,create_date:" msgid "Create Date" msgstr "Дата создания" #, fuzzy msgctxt "field:stock.product.location,create_uid:" msgid "Create User" msgstr "Создано пользователем" #, fuzzy msgctxt "field:stock.product.location,id:" msgid "ID" msgstr "ID" #, fuzzy msgctxt "field:stock.product.location,location:" msgid "Storage Location" msgstr "Хранение Местоположение" #, fuzzy msgctxt "field:stock.product.location,product:" msgid "Product" msgstr "Товарно материальные ценности (ТМЦ)" msgctxt "field:stock.product.location,rec_name:" msgid "Record Name" msgstr "" #, fuzzy msgctxt "field:stock.product.location,sequence:" msgid "Sequence" msgstr "Последовательность" #, fuzzy msgctxt "field:stock.product.location,warehouse:" msgid "Warehouse" msgstr "Товарный склад" #, fuzzy msgctxt "field:stock.product.location,write_date:" msgid "Write Date" msgstr "Дата изменения" #, fuzzy msgctxt "field:stock.product.location,write_uid:" msgid "Write User" msgstr "Изменено пользователем" msgctxt "model:stock.product.location,name:" msgid "Product Location" msgstr "" trytond_stock_product_location-5.0.1/view/0000755000175000017500000000000013433070713020336 5ustar cedced00000000000000trytond_stock_product_location-5.0.1/view/product_location_form.xml0000644000175000017500000000066313354423126025462 0ustar cedced00000000000000