From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/stock_account/__init__.py | 61 + addons/stock_account/__manifest__.py | 44 + addons/stock_account/data/product_data.xml | 17 + addons/stock_account/data/stock_account_data.xml | 19 + addons/stock_account/i18n/af.po | 735 ++++ addons/stock_account/i18n/am.po | 735 ++++ addons/stock_account/i18n/ar.po | 947 +++++ addons/stock_account/i18n/az.po | 678 ++++ addons/stock_account/i18n/bg.po | 926 +++++ addons/stock_account/i18n/bn.po | 905 +++++ addons/stock_account/i18n/bs.po | 718 ++++ addons/stock_account/i18n/ca.po | 950 +++++ addons/stock_account/i18n/ckb.po | 900 +++++ addons/stock_account/i18n/cs.po | 947 +++++ addons/stock_account/i18n/da.po | 985 +++++ addons/stock_account/i18n/de.po | 943 +++++ addons/stock_account/i18n/el.po | 915 +++++ addons/stock_account/i18n/en_GB.po | 745 ++++ addons/stock_account/i18n/eo.po | 896 +++++ addons/stock_account/i18n/es.po | 985 +++++ addons/stock_account/i18n/es_BO.po | 735 ++++ addons/stock_account/i18n/es_CL.po | 747 ++++ addons/stock_account/i18n/es_CO.po | 842 +++++ addons/stock_account/i18n/es_CR.po | 764 ++++ addons/stock_account/i18n/es_DO.po | 844 +++++ addons/stock_account/i18n/es_EC.po | 844 +++++ addons/stock_account/i18n/es_MX.po | 988 ++++++ addons/stock_account/i18n/es_PE.po | 748 ++++ addons/stock_account/i18n/es_PY.po | 736 ++++ addons/stock_account/i18n/es_VE.po | 736 ++++ addons/stock_account/i18n/et.po | 972 +++++ addons/stock_account/i18n/eu.po | 909 +++++ addons/stock_account/i18n/fa.po | 905 +++++ addons/stock_account/i18n/fi.po | 913 +++++ addons/stock_account/i18n/fo.po | 734 ++++ addons/stock_account/i18n/fr.po | 1012 ++++++ addons/stock_account/i18n/fr_BE.po | 735 ++++ addons/stock_account/i18n/fr_CA.po | 736 ++++ addons/stock_account/i18n/gl.po | 735 ++++ addons/stock_account/i18n/gu.po | 684 ++++ addons/stock_account/i18n/he.po | 946 +++++ addons/stock_account/i18n/hi.po | 900 +++++ addons/stock_account/i18n/hr.po | 910 +++++ addons/stock_account/i18n/hu.po | 951 +++++ addons/stock_account/i18n/id.po | 921 +++++ addons/stock_account/i18n/is.po | 692 ++++ addons/stock_account/i18n/it.po | 962 +++++ addons/stock_account/i18n/ja.po | 910 +++++ addons/stock_account/i18n/ka.po | 906 +++++ addons/stock_account/i18n/kab.po | 741 ++++ addons/stock_account/i18n/km.po | 904 +++++ addons/stock_account/i18n/ko.po | 916 +++++ addons/stock_account/i18n/lb.po | 711 ++++ addons/stock_account/i18n/lt.po | 946 +++++ addons/stock_account/i18n/lv.po | 905 +++++ addons/stock_account/i18n/mk.po | 800 +++++ addons/stock_account/i18n/mn.po | 946 +++++ addons/stock_account/i18n/nb.po | 912 +++++ addons/stock_account/i18n/nl.po | 991 ++++++ addons/stock_account/i18n/nl_BE.po | 738 ++++ addons/stock_account/i18n/pl.po | 920 +++++ addons/stock_account/i18n/pt.po | 916 +++++ addons/stock_account/i18n/pt_BR.po | 989 ++++++ addons/stock_account/i18n/ro.po | 979 +++++ addons/stock_account/i18n/ru.po | 953 +++++ addons/stock_account/i18n/si.po | 896 +++++ addons/stock_account/i18n/sk.po | 942 +++++ addons/stock_account/i18n/sl.po | 919 +++++ addons/stock_account/i18n/sq.po | 740 ++++ addons/stock_account/i18n/sr.po | 681 ++++ addons/stock_account/i18n/sr@latin.po | 615 ++++ addons/stock_account/i18n/stock_account.pot | 896 +++++ addons/stock_account/i18n/sv.po | 905 +++++ addons/stock_account/i18n/ta.po | 736 ++++ addons/stock_account/i18n/th.po | 904 +++++ addons/stock_account/i18n/tr.po | 967 +++++ addons/stock_account/i18n/uk.po | 964 +++++ addons/stock_account/i18n/ur.po | 896 +++++ addons/stock_account/i18n/vi.po | 978 +++++ addons/stock_account/i18n/zh_CN.po | 924 +++++ addons/stock_account/i18n/zh_TW.po | 912 +++++ addons/stock_account/models/__init__.py | 14 + .../stock_account/models/account_chart_template.py | 35 + addons/stock_account/models/account_move.py | 236 ++ addons/stock_account/models/product.py | 815 +++++ addons/stock_account/models/res_config_settings.py | 11 + addons/stock_account/models/stock_inventory.py | 42 + addons/stock_account/models/stock_location.py | 33 + addons/stock_account/models/stock_move.py | 522 +++ addons/stock_account/models/stock_move_line.py | 62 + addons/stock_account/models/stock_picking.py | 21 + addons/stock_account/models/stock_quant.py | 57 + .../stock_account/models/stock_valuation_layer.py | 38 + addons/stock_account/report/__init__.py | 4 + .../report/report_stock_forecasted.py | 33 + .../report/report_stock_forecasted.xml | 13 + addons/stock_account/security/ir.model.access.csv | 9 + .../security/stock_account_security.xml | 11 + addons/stock_account/tests/__init__.py | 5 + addons/stock_account/tests/test_account_move.py | 120 + ..._anglo_saxon_valuation_reconciliation_common.py | 119 + .../test_stock_valuation_layer_revaluation.py | 173 + addons/stock_account/tests/test_stockvaluation.py | 3748 ++++++++++++++++++++ .../tests/test_stockvaluationlayer.py | 900 +++++ addons/stock_account/views/product_views.xml | 42 + .../views/res_config_settings_views.xml | 34 + addons/stock_account/views/stock_account_views.xml | 70 + addons/stock_account/views/stock_quant_views.xml | 27 + .../views/stock_valuation_layer_views.xml | 110 + addons/stock_account/wizard/__init__.py | 6 + .../stock_account/wizard/stock_picking_return.py | 31 + .../stock_account/wizard/stock_quantity_history.py | 18 + .../wizard/stock_valuation_layer_revaluation.py | 160 + .../stock_valuation_layer_revaluation_views.xml | 44 + 114 files changed, 74173 insertions(+) create mode 100644 addons/stock_account/__init__.py create mode 100644 addons/stock_account/__manifest__.py create mode 100644 addons/stock_account/data/product_data.xml create mode 100644 addons/stock_account/data/stock_account_data.xml create mode 100644 addons/stock_account/i18n/af.po create mode 100644 addons/stock_account/i18n/am.po create mode 100644 addons/stock_account/i18n/ar.po create mode 100644 addons/stock_account/i18n/az.po create mode 100644 addons/stock_account/i18n/bg.po create mode 100644 addons/stock_account/i18n/bn.po create mode 100644 addons/stock_account/i18n/bs.po create mode 100644 addons/stock_account/i18n/ca.po create mode 100644 addons/stock_account/i18n/ckb.po create mode 100644 addons/stock_account/i18n/cs.po create mode 100644 addons/stock_account/i18n/da.po create mode 100644 addons/stock_account/i18n/de.po create mode 100644 addons/stock_account/i18n/el.po create mode 100644 addons/stock_account/i18n/en_GB.po create mode 100644 addons/stock_account/i18n/eo.po create mode 100644 addons/stock_account/i18n/es.po create mode 100644 addons/stock_account/i18n/es_BO.po create mode 100644 addons/stock_account/i18n/es_CL.po create mode 100644 addons/stock_account/i18n/es_CO.po create mode 100644 addons/stock_account/i18n/es_CR.po create mode 100644 addons/stock_account/i18n/es_DO.po create mode 100644 addons/stock_account/i18n/es_EC.po create mode 100644 addons/stock_account/i18n/es_MX.po create mode 100644 addons/stock_account/i18n/es_PE.po create mode 100644 addons/stock_account/i18n/es_PY.po create mode 100644 addons/stock_account/i18n/es_VE.po create mode 100644 addons/stock_account/i18n/et.po create mode 100644 addons/stock_account/i18n/eu.po create mode 100644 addons/stock_account/i18n/fa.po create mode 100644 addons/stock_account/i18n/fi.po create mode 100644 addons/stock_account/i18n/fo.po create mode 100644 addons/stock_account/i18n/fr.po create mode 100644 addons/stock_account/i18n/fr_BE.po create mode 100644 addons/stock_account/i18n/fr_CA.po create mode 100644 addons/stock_account/i18n/gl.po create mode 100644 addons/stock_account/i18n/gu.po create mode 100644 addons/stock_account/i18n/he.po create mode 100644 addons/stock_account/i18n/hi.po create mode 100644 addons/stock_account/i18n/hr.po create mode 100644 addons/stock_account/i18n/hu.po create mode 100644 addons/stock_account/i18n/id.po create mode 100644 addons/stock_account/i18n/is.po create mode 100644 addons/stock_account/i18n/it.po create mode 100644 addons/stock_account/i18n/ja.po create mode 100644 addons/stock_account/i18n/ka.po create mode 100644 addons/stock_account/i18n/kab.po create mode 100644 addons/stock_account/i18n/km.po create mode 100644 addons/stock_account/i18n/ko.po create mode 100644 addons/stock_account/i18n/lb.po create mode 100644 addons/stock_account/i18n/lt.po create mode 100644 addons/stock_account/i18n/lv.po create mode 100644 addons/stock_account/i18n/mk.po create mode 100644 addons/stock_account/i18n/mn.po create mode 100644 addons/stock_account/i18n/nb.po create mode 100644 addons/stock_account/i18n/nl.po create mode 100644 addons/stock_account/i18n/nl_BE.po create mode 100644 addons/stock_account/i18n/pl.po create mode 100644 addons/stock_account/i18n/pt.po create mode 100644 addons/stock_account/i18n/pt_BR.po create mode 100644 addons/stock_account/i18n/ro.po create mode 100644 addons/stock_account/i18n/ru.po create mode 100644 addons/stock_account/i18n/si.po create mode 100644 addons/stock_account/i18n/sk.po create mode 100644 addons/stock_account/i18n/sl.po create mode 100644 addons/stock_account/i18n/sq.po create mode 100644 addons/stock_account/i18n/sr.po create mode 100644 addons/stock_account/i18n/sr@latin.po create mode 100644 addons/stock_account/i18n/stock_account.pot create mode 100644 addons/stock_account/i18n/sv.po create mode 100644 addons/stock_account/i18n/ta.po create mode 100644 addons/stock_account/i18n/th.po create mode 100644 addons/stock_account/i18n/tr.po create mode 100644 addons/stock_account/i18n/uk.po create mode 100644 addons/stock_account/i18n/ur.po create mode 100644 addons/stock_account/i18n/vi.po create mode 100644 addons/stock_account/i18n/zh_CN.po create mode 100644 addons/stock_account/i18n/zh_TW.po create mode 100644 addons/stock_account/models/__init__.py create mode 100644 addons/stock_account/models/account_chart_template.py create mode 100644 addons/stock_account/models/account_move.py create mode 100644 addons/stock_account/models/product.py create mode 100644 addons/stock_account/models/res_config_settings.py create mode 100644 addons/stock_account/models/stock_inventory.py create mode 100644 addons/stock_account/models/stock_location.py create mode 100644 addons/stock_account/models/stock_move.py create mode 100644 addons/stock_account/models/stock_move_line.py create mode 100644 addons/stock_account/models/stock_picking.py create mode 100644 addons/stock_account/models/stock_quant.py create mode 100644 addons/stock_account/models/stock_valuation_layer.py create mode 100644 addons/stock_account/report/__init__.py create mode 100644 addons/stock_account/report/report_stock_forecasted.py create mode 100644 addons/stock_account/report/report_stock_forecasted.xml create mode 100644 addons/stock_account/security/ir.model.access.csv create mode 100644 addons/stock_account/security/stock_account_security.xml create mode 100644 addons/stock_account/tests/__init__.py create mode 100644 addons/stock_account/tests/test_account_move.py create mode 100644 addons/stock_account/tests/test_anglo_saxon_valuation_reconciliation_common.py create mode 100644 addons/stock_account/tests/test_stock_valuation_layer_revaluation.py create mode 100644 addons/stock_account/tests/test_stockvaluation.py create mode 100644 addons/stock_account/tests/test_stockvaluationlayer.py create mode 100644 addons/stock_account/views/product_views.xml create mode 100644 addons/stock_account/views/res_config_settings_views.xml create mode 100644 addons/stock_account/views/stock_account_views.xml create mode 100644 addons/stock_account/views/stock_quant_views.xml create mode 100644 addons/stock_account/views/stock_valuation_layer_views.xml create mode 100644 addons/stock_account/wizard/__init__.py create mode 100644 addons/stock_account/wizard/stock_picking_return.py create mode 100644 addons/stock_account/wizard/stock_quantity_history.py create mode 100644 addons/stock_account/wizard/stock_valuation_layer_revaluation.py create mode 100644 addons/stock_account/wizard/stock_valuation_layer_revaluation_views.xml (limited to 'addons/stock_account') diff --git a/addons/stock_account/__init__.py b/addons/stock_account/__init__.py new file mode 100644 index 00000000..fd3f4a2e --- /dev/null +++ b/addons/stock_account/__init__.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models +from . import report +from . import wizard + +from odoo import api, SUPERUSER_ID, _, tools + +def _configure_journals(cr, registry): + """Setting journal and property field (if needed)""" + + env = api.Environment(cr, SUPERUSER_ID, {}) + + # if we already have a coa installed, create journal and set property field + company_ids = env['res.company'].search([('chart_template_id', '!=', False)]) + + for company_id in company_ids: + # Check if property exists for stock account journal exists + field = env['ir.model.fields']._get("product.category", "property_stock_journal") + properties = env['ir.property'].sudo().search([ + ('fields_id', '=', field.id), + ('company_id', '=', company_id.id)]) + + # If not, check if you can find a journal that is already there with the same name, otherwise create one + if not properties: + journal_id = env['account.journal'].search([ + ('name', '=', _('Inventory Valuation')), + ('company_id', '=', company_id.id), + ('type', '=', 'general')], limit=1).id + if not journal_id: + journal_id = env['account.journal'].create({ + 'name': _('Inventory Valuation'), + 'type': 'general', + 'code': 'STJ', + 'company_id': company_id.id, + 'show_on_dashboard': False + }).id + env['ir.property']._set_default( + 'property_stock_journal', + 'product.category', + journal_id, + company_id, + ) + + # Property Stock Accounts + todo_list = [ + 'property_stock_account_input_categ_id', + 'property_stock_account_output_categ_id', + 'property_stock_valuation_account_id', + ] + + for name in todo_list: + account = getattr(company_id, name) + if account: + env['ir.property']._set_default( + name, + 'product.category', + account, + company_id, + ) diff --git a/addons/stock_account/__manifest__.py b/addons/stock_account/__manifest__.py new file mode 100644 index 00000000..310ca16e --- /dev/null +++ b/addons/stock_account/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'WMS Accounting', + 'version': '1.1', + 'summary': 'Inventory, Logistic, Valuation, Accounting', + 'description': """ +WMS Accounting module +====================== +This module makes the link between the 'stock' and 'account' modules and allows you to create accounting entries to value your stock movements + +Key Features +------------ +* Stock Valuation (periodical or automatic) +* Invoice from Picking + +Dashboard / Reports for Warehouse Management includes: +------------------------------------------------------ +* Stock Inventory Value at given date (support dates in the past) + """, + 'depends': ['stock', 'account'], + 'category': 'Hidden', + 'sequence': 16, + 'data': [ + 'security/stock_account_security.xml', + 'security/ir.model.access.csv', + 'data/stock_account_data.xml', + 'views/stock_account_views.xml', + 'views/res_config_settings_views.xml', + 'data/product_data.xml', + 'views/product_views.xml', + 'views/stock_quant_views.xml', + 'views/stock_valuation_layer_views.xml', + 'wizard/stock_valuation_layer_revaluation_views.xml', + 'report/report_stock_forecasted.xml', + ], + 'test': [ + ], + 'installable': True, + 'auto_install': True, + 'post_init_hook': '_configure_journals', + 'license': 'LGPL-3', +} diff --git a/addons/stock_account/data/product_data.xml b/addons/stock_account/data/product_data.xml new file mode 100644 index 00000000..0d4e5602 --- /dev/null +++ b/addons/stock_account/data/product_data.xml @@ -0,0 +1,17 @@ + + + + + property_stock_account_output_categ_id + + + + + + property_stock_account_input_categ_id + + + + + + diff --git a/addons/stock_account/data/stock_account_data.xml b/addons/stock_account/data/stock_account_data.xml new file mode 100644 index 00000000..45a9d817 --- /dev/null +++ b/addons/stock_account/data/stock_account_data.xml @@ -0,0 +1,19 @@ + + + + + + Cost Method Property + + standard + selection + + + Valuation Property + + manual_periodic + selection + + + + diff --git a/addons/stock_account/i18n/af.po b/addons/stock_account/i18n/af.po new file mode 100644 index 00000000..7795f78e --- /dev/null +++ b/addons/stock_account/i18n/af.po @@ -0,0 +1,735 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2015-11-13 10:48+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Afrikaans (http://www.transifex.com/odoo/odoo-9/language/" +"af/)\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Gemiddelde Prys" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Gekanselleer" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Maatskappy" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Koste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Geskep deur" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Geskep op" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Datum" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Vertoningsnaam" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Groepeer deur" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Faktuur" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Faktuur Lyn" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Laas Gewysig op" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Laas Opgedateer deur" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Laas Opgedateer op" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Plek" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Prys" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Produk" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Produk Kategorie" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Produk Profielvorm" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Set standard price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Bron" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "Eenheid van Verkope" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "onbekend" diff --git a/addons/stock_account/i18n/am.po b/addons/stock_account/i18n/am.po new file mode 100644 index 00000000..2ffe6150 --- /dev/null +++ b/addons/stock_account/i18n/am.po @@ -0,0 +1,735 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2015-10-01 09:22+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Amharic (http://www.transifex.com/odoo/odoo-9/language/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "አማካኝ ዋጋ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "መሰረዝ" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "ድርጅት" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "የመግዣ ዋጋ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "የዋጋ አያያዝ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "በመደብ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "አካባቢ" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "ዋጋ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "እቃ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "እቃውን የማሳወቅያ ግዜ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "የእቃዎች መደብ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "የእቃው የመቆያ ግዜ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "የእቃው የሚወገድበት ግዜ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "የእቃው ማሳያ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "የእቃው መጠቀምያ ግዜ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "መለያ ቁጥር" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "የእቃው መደበኛ ዋጋ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "የእቃው መደበኛ ዋጋ" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "ወደ ግምጃ ቤት የሚገቡና የሚወጡ እቃዎች" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "መለክያ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "የአንዱ መሸጫ ዋጋ" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "" diff --git a/addons/stock_account/i18n/ar.po b/addons/stock_account/i18n/ar.po new file mode 100644 index 00000000..ef933e20 --- /dev/null +++ b/addons/stock_account/i18n/ar.po @@ -0,0 +1,947 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Sherif Abd Ekmoniem , 2020 +# Mustafa Rawi , 2020 +# Akram Alfusayal , 2020 +# amrnegm , 2020 +# Martin Trigaux, 2020 +# hoxhe Aits , 2020 +# Osoul , 2020 +# Mohammed Albasha , 2020 +# Mohammed Ibrahim , 2020 +# Ghaith Gammar , 2020 +# Osama Ahmaro , 2020 +# Shaima Safar , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Shaima Safar , 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "قالب مخطط الحساب" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "حركة الحساب" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "خصائص حساب المخزون" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "التاريخ المحاسبي" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "القيود المحاسبية" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "معلومات محاسبية" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"قم بتطبيق التكاليف المُضافة على عمليات الاستلام وقسمهم بين المنتجات لتحديث " +"سعر تكلفتهم." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "تلقائي" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "متوسط التكلفة" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "الغاء" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"لم نستطع إيجاد حساب مخزون وارد للمنتج %s. يجب تعريف حساب في فئة المنتج، أو " +"في الموقع، قبل القيام بهذه العملية." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"لم نستطع إيجاد حساب مخزون منصرف للمنتج %s. يجب تعريف حساب في فئة المنتج، أو " +"في الموقع، قبل القيام بهذه العملية." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"تغيير طريقة حساب تكاليفك هو تغيير هام سيؤثر على تقييم مخزونك. هل أنت متأكد " +"أنك تريد القيام بهذا التغيير؟" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "شركة" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "ضبط الاعدادات" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"خطأ بالإعدادات. برجاء ضبط حساب فرق السعر على المنتج أو فئاته للقيام بهذه " +"العملية." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "طريقة حساب التكاليف" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "حساب القيد المناظر" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "العملة" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "القيمة الحالية" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "التاريخ" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"تاريخ إنشاء القيود المحاسبية في حالة التقييم التلقائي للمخزون. إذا تُرك هذا " +"الحقل فارغًا، سيُستخدم تاريخ الجرد." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "وحده القياس الافتراضية المستخدمة لجميع عمليات المخزون." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "الوصف" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "التوثيق" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "من يأتي أولًا, يصدر أولًا" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "تجميع حسب..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "المُعرف" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "الجرد" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "مواقع المخزون" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "تقييم المخزون" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "دفتر اليومية" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "قيد اليومية" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "عنصر اليومية" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "التكاليف المُضافة" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "يدوي" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"يدوي: لا يتم ترحيل القيود المحاسبية المستخدمة لتقييم المخزون تلقائيًا.\n" +" آلي: يتم إنشاء قيد محاسبي تلقائيًا لتقييم المخزون عندما يرد للمؤسسة أو يصدر منها منتج.\n" +" " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "معلومات أخرى" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "المنتج" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "فئة المنتج" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "تحركات المنتج (بنود حركة المخزون)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "قالب المنتج" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "الكمية" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "الدفعات" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "السبب" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "الكمية المتبقية" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "القيمة المتبقية" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "استلام الشحنة المعادة" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "بند استلام الشحنة المعادة" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "اختار فئة المنتج الحالي" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "السعر القياسي" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"السعر القياسي: يتم تقييم المنتجات بتكاليفها القياسية المعرفة على المنتج.\n" +" متوسط التكلفة: يتم تقييم المنتجات حسب التكلفة المتوسطة الموزونة.\n" +" من يدخل أولًا، يصدر أولًا: يتم تقييم المنتجات بافتراض أن المنتج الذي يدخل المؤسسة أولًا سيصدر منها أولًا.\n" +" " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "حساب المخزون الوارد" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "دفتر يومية المخزون" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "حركة المخزون" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "حساب المخزون المنصرف" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "سجل كمية المخزون" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "تقييم المخزون" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "حساب تقييم المخزون" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "حساب تقييم المخزون (الوارد)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "حساب تقييم المخزون (الصادر)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"بنود التحركات ليست متناسقة: بعض البنود واردة للمؤسسة وبعضها صادر من المؤسسة." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"بنود التحركات ليست متناسقة: البنود تقوم بإجراءات ما بين المؤسسات في خطوة " +"واحدة وينبغي أن تمر عبر موقع التبادل بين المؤسسات." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"بنود التحركات ليست متناسقة: البنود لا تتشارك المؤسسة المصدر أو المؤسسة " +"الوجهة." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "القيمة الكلية" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "الشحنة" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "تطبيق تخفيض للكمية المرسلة/المستلمة في أمر البيع/الشراء المرتبط" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "وحدة القياس" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"تستخدم لتقييم المخزون في الوقت الحقيقي. عندما تعيينه في موقع افتراضي (نوع " +"غير داخلي)، سيُستخدم هذا الحساب لحفظ قيمة المنتجات التي يجري نقلها من موقع " +"داخلي إلى هذا الموقع، بدلًا من حساب المخزون المنصرف العام المعين على المنتج." +" ولا يؤثر ذلك على المواقع الداخلية." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"تستخدم في الوقت الحقيقي للتقييم المخزون. عندما وضعت على موقع الوهمى (نوع غير" +" الداخلية)، وسيتم استخدام هذا الحساب لعقد قيمة المنتجات التي خرجت من هذا " +"المكان وإلى المكان الداخلي، بدلا من حساب المخزون الناتج عام تعيين على " +"المنتج. هذا أي تأثير للمواقع الداخلية." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "تقييم" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "القيمة" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "تحذير" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"لا توجد أية قيود مخزون يومية معرفة لفئة منتجك، تأكد من تثبيتك للدليل " +"المحاسبي." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"لا يوجد حساب لتقييم المخزون معرف لفئة منتجك. يجب تعريف حساب قبل القيام بهذه " +"العملية." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "بواسطة" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "من أجل" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/az.po b/addons/stock_account/i18n/az.po new file mode 100644 index 00000000..d3d0c04b --- /dev/null +++ b/addons/stock_account/i18n/az.po @@ -0,0 +1,678 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-08-24 09:25+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:146 +#: code:addons/stock_account/models/product.py:152 +#, python-format +msgid "%s changed cost from %s to %s - %s" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +msgid "Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Archived" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Available Products" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Cancel" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:510 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:512 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Category" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:405 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:587 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Cost Method" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Costing" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__counterpart_account_id_required +msgid "Counter-Part Account Required" +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.product_valuation_action +msgid "Create a new product valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__create_uid +msgid "Created by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__create_date +msgid "Created on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventoy date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Exhausted Stock" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__id +msgid "ID" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price__new_price +msgid "" +"If cost price is increased, stock variation account will be debited and stock output account will be credited with the value = (difference of amount * quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.product_valuation_action +msgid "If there are products, you will see its name and valuation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Include landed costs in product cost" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_quantity_history.py:25 +#: model:ir.actions.act_window,name:stock_account.action_stock_inventory_valuation +#: model:ir.actions.act_window,name:stock_account.product_valuation_action +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price____last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__write_date +msgid "Last Updated on" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +msgid "Manual" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Negative Stock" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:128 +#, python-format +msgid "No difference between the standard price and the new price." +msgstr "" + +#. module: stock_account +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__new_price +msgid "Price" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_procurement_group +msgid "Procurement Group" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +msgid "Product" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__qty_at_date +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Reference" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Retrieve the inventory valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__property_cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_fifo_manual_move_ids +msgid "Stock Fifo Manual Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_fifo_real_time_aml_ids +msgid "Stock Fifo Real Time Aml" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:26 +#: code:addons/stock_account/__init__.py:31 +#: code:addons/stock_account/models/account_chart_template.py:15 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_product_tree2 +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:536 +#, python-format +msgid "" +"The cost of %s is currently equal to 0. Change the cost or the configuration" +" of your product to avoid an incorrect valuation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:358 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:369 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:367 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "To Refund (update SO/PO)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Unit of Measure" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Update Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_product_tree2 +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:246 +#, python-format +msgid "Valuation at date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_value +#: model:ir.model.fields,field_description:stock_account.field_stock_move__value +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_account_aml +msgid "Value" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:404 +#, python-format +msgid "Warning" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each" +" product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template__property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set" +" on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template__property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:508 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:130 +#: code:addons/stock_account/models/stock.py:514 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" diff --git a/addons/stock_account/i18n/bg.po b/addons/stock_account/i18n/bg.po new file mode 100644 index 00000000..74b10ad8 --- /dev/null +++ b/addons/stock_account/i18n/bg.po @@ -0,0 +1,926 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Rosen Vladimirov , 2020 +# Kaloyan Naumov , 2020 +# Igor Sheludko , 2020 +# aleksandar ivanov, 2020 +# Albena Mincheva , 2020 +# Maria Boyadjieva , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Maria Boyadjieva , 2020\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Складови свойства на сметка" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Счетоводна дата" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Счетоводни записи" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Счетоводна информация" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Автоматизирана" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Средни разходи" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Откажи" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Не се открива сметка вписване на стоки за продукта %s. Трябва да определите " +"една за продуктова категория или за локация преди да обработите тази " +"операция." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Не може да се открие сметка изписване на стоки за този продукт %s. Преди да " +"обработите тази операция трябва да определите една за продуктовата категория" +" или за локацията." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Компания" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Настройки конфигурация" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Грешка в конфигурацията. Моля, конфигурирайте сметката ценова разлика на " +"продукта или неговата категория, за да обработите тази операция." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Метод за ценообразуване" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Counterpart Account" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Валута" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Настояща стойност" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Дата" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Описание" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Документация" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Групирайте по ..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Инвентар" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Локации на инвентар" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Оценяване на инвентар" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Журнал" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Запис в журнал" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Счетоводна операция" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Разходи по доставка" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Механично" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Друга информация" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Продукт" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Категория продукт" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Шаблон за продукт " + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Количество" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Количества" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Причина" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Оставащо количество" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Оставаща стойност" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Пикинг Рекламации" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Изберете категория за настоящия продукт" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Стандартна цена" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Сметка вписване на стоки" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Складов журнал" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Движение в склада" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Сметка изписване на стоки" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "История на наличностите" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Оценка на запасите" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Сметка оценяване на наличност" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Сметка оценяване на наличност (входяща)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Сметка оценяване на наличност (изходяща)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Обща стойност" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Прехвърлете" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Мерна единица" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Използвана за оценяване на наличността в реално време. Когато е настроена на" +" 'виртуална локация' (от не-вътрешен тип), тази сметка ще се използва, за да" +" помести стойността на продуктите, преместени от вътрешна локация в тази " +"локация, вместо универсалната сметка изписване на стоки, настроена за " +"продукта. Това не се отразява на вътрешните локации." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Използвана за оценяване на наличността в реално време. Когато е настроена на" +" 'виртуална локация' (от не-вътрешен тип), тази сметка ще се използва, за да" +" помести стойността на продуктите, преместени извън тази локация и във " +"вътрешна локация, вместо универсалната сметка изписване на стоки, настроена " +"за продукта. Това не се отразява на вътрешните локации." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Остойностяване" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Стойност" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Предупреждение" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Нямате определена сметка за оценка на запасите в продуктовата категория. " +"Преди да извършите тази операция, трябва да я дефинирате." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "от" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "за" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/bn.po b/addons/stock_account/i18n/bn.po new file mode 100644 index 00000000..eb6d2281 --- /dev/null +++ b/addons/stock_account/i18n/bn.po @@ -0,0 +1,905 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2021 +# Majedul islam , 2021 +# Abu Zafar , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Abu Zafar , 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "অ্যাকাউন্টিং তারিখ" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "" +" \n" +" \n" +"অ্যাকাউন্টিং এন্ট্রি" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "বাতিল" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "কোম্পানি" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "রূপরেখা নির্ধারণ" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "কাউন্টার পার্ট অ্যাকাউন্ট" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "দ্বারা সৃষ্টি" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "তৈরি" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "বিবরণ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "আইডি " + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "জার্নাল এন্ট্রি" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "জার্নাল আইটেম" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "সর্বশেষ আপডেট করেছেন" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "সর্বশেষ আপডেট হয়েছে" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "বেশ" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "হস্তান্তর করা" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "মান" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "সতর্কীকরণ" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/bs.po b/addons/stock_account/i18n/bs.po new file mode 100644 index 00000000..45933299 --- /dev/null +++ b/addons/stock_account/i18n/bs.po @@ -0,0 +1,718 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2018 +# Boško Stojaković , 2018 +# Bole , 2018 +# Malik K, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Malik K, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:146 +#: code:addons/stock_account/models/product.py:152 +#, python-format +msgid "%s changed cost from %s to %s - %s" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Svojstva računovodstvene zalihe" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +msgid "Accounting Date" +msgstr "Datum knjiženja" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Knjiženja" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Računovodstvene informacije" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Archived" +msgstr "Arhivirano" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Available Products" +msgstr "Dostupni proizvodi" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Cancel" +msgstr "Otkaži" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:510 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:512 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Category" +msgstr "Kategorija" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "Promjeni cijenu" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "Promjeni standardnu cijenu" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:405 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:587 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Cijena (Koštanje)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Cost Method" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Costing" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_cost_method +msgid "Costing Method" +msgstr "Metoda koštanja" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__counterpart_account_id_required +msgid "Counter-Part Account Required" +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.product_valuation_action +msgid "Create a new product valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventoy date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Exhausted Stock" +msgstr "Iscrpljena zaliha" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price__new_price +msgid "" +"If cost price is increased, stock variation account will be debited and stock output account will be credited with the value = (difference of amount * quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and stock input account will be debited." +msgstr "" +"Ako je cijena koštanja povećana, konto vrijednosti zalihe će dugovati i konto izlaza zalihe će potraživati za vrijednost = (razlika u vrijednosti * dostupna zaliha)\n" +"Ako je cijena koštanja smanjena, konto vrijenosti zalihe će potraživati i konto izlaza zalihe će dugovati." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.product_valuation_action +msgid "If there are products, you will see its name and valuation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Include landed costs in product cost" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Skladište" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Lokacije zalihe" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_quantity_history.py:25 +#: model:ir.actions.act_window,name:stock_account.action_stock_inventory_valuation +#: model:ir.actions.act_window,name:stock_account.product_valuation_action +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Vrednovanje inventure" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka fakture" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +msgid "Journal Entries" +msgstr "Dnevnički zapisi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Troškovi nabavke" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +msgid "Manual" +msgstr "Ručno" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Negative Stock" +msgstr "Negativna zaliha" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:128 +#, python-format +msgid "No difference between the standard price and the new price." +msgstr "" + +#. module: stock_account +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__new_price +msgid "Price" +msgstr "Cijena" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_procurement_group +msgid "Procurement Group" +msgstr "Grupa naručivanja" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +msgid "Product Category" +msgstr "Kategorija proizvoda" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +msgid "Product Template" +msgstr "Predlog proizvoda" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__qty_at_date +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Quantity" +msgstr "Količina" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Reference" +msgstr "Referenca" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__remaining_qty +msgid "Remaining Qty" +msgstr "Preostala kol." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Retrieve the inventory valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Prikupljanje proizvoda povrata" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Standardna cijena" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__property_cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_fifo_manual_move_ids +msgid "Stock Fifo Manual Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_fifo_real_time_aml_ids +msgid "Stock Fifo Real Time Aml" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_stock_account_input +msgid "Stock Input Account" +msgstr "Konto zaliha (primka)" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:26 +#: code:addons/stock_account/__init__.py:31 +#: code:addons/stock_account/models/account_chart_template.py:15 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "Dnevnik zaliha" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +msgid "Stock Move" +msgstr "Kretanje zalihe" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_stock_account_output +msgid "Stock Output Account" +msgstr "Izlazni nalog zaliha" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_product_tree2 +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Konto vrednovanja zaliha" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Konto vrednovanja zalihe (Dolazni)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Konto vrednovanja zalihe (Odlazni)" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:536 +#, python-format +msgid "" +"The cost of %s is currently equal to 0. Change the cost or the configuration" +" of your product to avoid an incorrect valuation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:358 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:369 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:367 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "To Refund (update SO/PO)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Unit of Measure" +msgstr "Jedinica mjere" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Update Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Koristi se za vrednovanje inventure u stvarnom vremenu. Kada je postavljeno " +"na virtualnu lokaciju (ne internog tipa), ovaj konto će se koristiti da nosi" +" vrijednost proizvoda koji se kreće iz interne lokacije u ovu lokaciju, " +"umjesto generisanja konta izlaza zalihe postavljenog na proizvodu. Ovo ne " +"utiče na interne lokacije." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Koristi se za vrednovanje inventure u stvarnom vremenu. Kada je postavljeno " +"na virtuelnu lokaciju (ne internog tipa), ovaj konto će se koristiti za " +"vrijednost proizvoda prenesenih van ove lokacije u neku internu lokaciju, " +"umjesto opšteg konta izlaza zalihe postavljenog na proizvodu. Ovo nema " +"efekta za interne lokacije." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_product_tree2 +msgid "Valuation" +msgstr "Procijena vrijednosti" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:246 +#, python-format +msgid "Valuation at date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_value +#: model:ir.model.fields,field_description:stock_account.field_stock_move__value +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_account_aml +msgid "Value" +msgstr "Vrijednost" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:404 +#, python-format +msgid "Warning" +msgstr "Upozorenje" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each" +" product" +msgstr "" +"Kada se radi inventura u stvanom vremenu, protukonto stavki dnevnika za sva " +"ulazna kretanja zalihe će biti knjižena na ovaj konto, osim ako ne postoji " +"specifični konto vrednovanja inventure postavljen na izvornoj lokaciji. Ovo " +"je zadana vrijednost za sve proizvode u ovoj kategoriji. Može također da " +"bude postavljen na svakom proizvodu" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template__property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" +"Kada se radi vrednovanje inventure u stvarnom vremenu, protustavke stavkama " +"dnevnika za sve dolazeće poruke će biti knjižena na ovaj konto, osim u " +"slučaju da je specifični konto vrednovanja postavljen na izvornu lokaciju. " +"Kada nije postavljen na proizvodu, onaj sa kategorije proizvoda se koristi." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set" +" on each product" +msgstr "" +"Kada se radi vrednovanje inventure u realnom vremenu, protustavke stavki " +"dnevnika za sva izlazna kretanja će se knjižiti na ovaj konto, osim ako ne " +"postoji postavljen konto vrednovanja na lokaciji odredišta. Ovo je zadata " +"vrijednost svih proizvoda u ovoj kategoriji. Može također da bude postavljen" +" direktno na svaki proizvod." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template__property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" +"Kada se radi vredovanje inventure u stvarnom vremenu, protukonto stavkama " +"dnevnika knjiženja za kretanja zaliha će biti knjižena na ovaj konto, osim " +"ako ne specifirate konto vrednovanja postavljenog na odredišnoj lokaciji. " +"Kada nije postavljeno na proizvodu, onaj sa kategorije proizvoda se koristi." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Kada se radi inventura u stvarnom vremenu, ovo je računovodstveni dnevnik u " +"kojem će se zapisi automatski knjižiti kada se obrade kretanja zalihe." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Kada je stvarna procjena inventure omogućena na proizvodu, ovaj konto će " +"nositi trenutnu vrijednost proizvoda." + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:508 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:130 +#: code:addons/stock_account/models/stock.py:514 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "_Primjeni" diff --git a/addons/stock_account/i18n/ca.po b/addons/stock_account/i18n/ca.po new file mode 100644 index 00000000..f7b85c05 --- /dev/null +++ b/addons/stock_account/i18n/ca.po @@ -0,0 +1,950 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Carles Antoli , 2020 +# RGB Consulting , 2020 +# Quim - eccit , 2020 +# Sandra Franch , 2020 +# Manel Fernandez Ramirez , 2020 +# M Palau , 2020 +# Arnau Ros, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Plantilla de gràfic de comptes" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Moviment comptable" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Propietats de valors de comptes" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Data comptable" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Assentaments comptabilitat" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Informació comptable" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Afecta als preus d'entrega en les operacions de recepció i els divideix " +"entre productes per actualitzar el seu preu de cost." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatitzat" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Cost mitjà (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Cancel·la" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"No es pot trobar un compte d'entrada d'estoc del producte %s. Heu de definir" +" un a la categoria de producte o a la ubicació abans de processar aquesta " +"operació" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"No es pot trobar un compte de sortida d'estoc del producte %s. Heu de " +"definir un a la categoria de producte o a la ubicació abans de processar " +"aquesta operació" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Canviar el mètode de cost suposa un canvi important que impactarà en la " +"valoració de l'inventari. Segur que vols fer aquest canvi?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Companyia" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Configuració" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Error de configuració. Configureu el compte de diferència de preu al " +"producte o la seva categoria per processar aquesta operació." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Mètode cost" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Compte de contrapartida" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Divisa" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Valor actual" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Data" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" +"Unit de mesura per defecte utilitzada per totes les operacions d'estoc." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Descripció" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Documentació " + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "First In First Out (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Agrupar per..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventari" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Ubicacions d'inventari" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Valoració del inventari" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Diari" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Assentament comptable" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Anotació comptable" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Costos en destí" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Última actualització per" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Última actualització el" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manual" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manual: Les entrades comptables al valor de l'inventari no es publiquen automàticament.\n" +"Automatitzat: Una entrada de comptabilitat es crea automàticament per valorar l’inventari quan un producte entra o surt de l’empresa." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Altra informació" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Producte" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Categoria del producte" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Moviment del producte (línia de moviment d'estoc)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Plantilla de producte" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Quantitat" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Quants" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Raó" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Quantitat restant" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Valor restant" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Retorna albarà" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Retorn de la línia de recollida" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Seleccioneu la categoria per al producte actual." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Preu estàndard" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Preu estàndard: Els productes es valoren segons el seu cost estàndard definit on el producte.\n" +"Cost mitjà (AVCO): Els productes es valoren al cost mitjà ponderat.\n" +"First In First Out (FIFO): Els productes estan valorats suposant que els que entrin primer seran els que surtin primer." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Compte entrada estoc" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Diari d'estocs" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Moviment d'estoc" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Compte sortida estoc" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Historial de quantitats d'estoc" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Valoració d'estoc" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Compte de la valoració d'estoc" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Compte de valoració de valors (entrant)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Compte de valoració de valors (sortint)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Les línies de moviment no estan en un estat consistent: unes entren i altres" +" surten de la companyia." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Les línies de moviment no estan en estats consistents: estan fent una " +"intercompanyia en un sol pas mentre haurien de passar per la ubicació de " +"trànsit" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Les línies de moviment no estan en un estat consistent: No comparteixen la " +"mateixa empresa d'origen o destí." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Valor total" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Transferència" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Desactiva la disminució de la quantitat entregada/rebuda a la comanda de " +"compra/compra associada" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Unitat de mesura" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Utilitzat per una valoració en temps real de l'inventari. Quan està " +"establert en una ubicació virtual (no de temps intern), aquest compte " +"s'utilitzarà per mantenir el valor dels productes que són moguts d'una " +"ubicació interna a aquesta ubicació, en lloc del compte de sortida " +"d'existències genèric establert en el producte. No té efecte per ubicacions " +"internes." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Utilitzat per una valoració en temps real de l'inventari. Quan està " +"establert en una ubicació virtual (no de temps intern), aquest compte " +"s'utilitzarà per mantenir el valor dels productes que són moguts fora de la " +"ubicació a una ubicació interna, en lloc del compte de sortida d'existències" +" genèric establert en el producte. No té efecte per ubicacions internes." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Valoració" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Avís" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"No teniu cap diari d'estoc definit a la vostra categoria de producte, " +"comproveu si heu instal·lat un gràfic de comptes." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"No té cap compte de valoració d'estoc definida en la seva categoria de " +"producte. Ha de definir un abans de processar aquesta operació." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "per" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "per" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/ckb.po b/addons/stock_account/i18n/ckb.po new file mode 100644 index 00000000..caab0afd --- /dev/null +++ b/addons/stock_account/i18n/ckb.po @@ -0,0 +1,900 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Haval Abdulkarim , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Haval Abdulkarim , 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "پاشگەزبوونەوە" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "کۆمپانیا" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "شێوەپێدانی ڕێکخستنەکان" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "دروستکراوە لەلایەن" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "دروستکراوە لە" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "دراو" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "بەروار" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "باسکردن" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "بەڵگەنامەکردن" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ناسنامە" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "تێنووسی یادنامە" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "دانەی یادنامە" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "دواین تازەکردنەوە لەلایەن" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "دواین تازەکردنەوە لە" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "بڕ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "نرخ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "ئاگاداری" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/cs.po b/addons/stock_account/i18n/cs.po new file mode 100644 index 00000000..fbfed54f --- /dev/null +++ b/addons/stock_account/i18n/cs.po @@ -0,0 +1,947 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Ladislav Tomm , 2020 +# Jan Horzinka , 2020 +# Michal Veselý , 2020 +# milda dvorak , 2020 +# karolína schusterová , 2021 +# trendspotter, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: trendspotter, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "%(user)s změnil cenu z %(previous)s na %(new_price)s - %(product)s" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Šablona schématu účtu" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Pohyby na účtu" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Datum účtování" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Účetní položky" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Účetní informace" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "Přidejte ruční ocenění" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "Přidat k hodnotě produktu dodatečné náklady (doprava, clo, ...)." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "Přidaná hodnota" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "Přidaná hodnota" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr " Automatizovaný " + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Průměrné náklady (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Zrušit" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Nelze najít vstupní účet zásob pro produkt %s. Před zpracováním této operace" +" je nutné jej definovat na kategorii výrobku nebo na umístění." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Nelze najít výstupní skladový účet pro produkt %s. Před zpracováním této " +"operace je nutné jej definovat na kategorii výrobku nebo na umístění." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Změna metody nákladů je důležitou změnou, která ovlivní vaše ocenění zásob. " +"Opravdu chcete tuto změnu provést?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Firma" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavení konfigurace" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Chyba konfigurace. Chcete-li tuto operaci zpracovat, nakonfigurujte účet " +"rozdílu cen na produktu nebo jeho kategorii." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Metoda nacenění" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Odpovídající účet" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Vytvořeno od" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Měna" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "Aktuální množství" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Aktuální hodnota" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Datum" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Datum vytvoření účetních záznamů v případě automatizovaného ocenění zásob. " +"Pokud je prázdné, použije se datum inventury." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Výchozí měrná jednotka používaná pro všechny akciové operace." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Popis" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentace" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "První dovnitř První ven (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Seskupit podle..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventář" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Umístění (množ.) inventáře" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Ocenění zásob" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "Je anglosaská linie" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Deník" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Položka deníku" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Položka deníku" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Náklady na pořízení" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Naposledy upraveno od" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Ruční" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "Ruční ocenění zásob: %s." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "Ruční ocenění zásob: Není uveden žádný důvod." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manuální: Účetní položky pro ocenění zásob nejsou automaticky zaúčtovány. \n" +"Automatizované: Účetní položka je automaticky vytvořena pro ocenění zásob, když produkt vstoupí do společnosti nebo opustí společnost" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "Nová hodnota" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "Nová hodnota podle množství" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "Po ruce" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Další informace" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produkt" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Kategorie výrobku" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Pohyby produktu (trasa pohybu zboží)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "Přecenění produktu" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Šablona produktu" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "Ručně upravená hodnota produktu (od %s do %s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Množství" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Množství" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Důvod" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "Důvod přecenění" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "Související produkt" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Zbylá kvóta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Zbývající hodnota" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Vrátit dodávku" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "Přecenění" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Vyberte kategorii pro tento výrobek" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Standardní cena" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Vstupní účet zásob" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Skladový deník" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Pohyb zásob" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Výstupní účet zásob" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Historie skladových zásob" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Zpráva o doplnění zásob" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Oceňování zásob" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Účet oceňování zásob (příchozí)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Účet oceňování zásob (výstupní)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "Technické pole používané k načtení anglosaských linií." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" +"Akce vede k vytvoření záznamu deníku, ke kterému nemáte přístupová práva." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "Přidaná hodnota nemá žádný vliv na ceny skladu" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Řádky přesunu nejsou v konzistentních stavech: nesdílejí stejnou společnost " +"původu nebo cílovou společnost." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"Neexistují žádné oceňovací vrstvy. Oceňovací vrstvy se vytvářejí, když by " +"některé pohyby produktu měly ovlivnit ocenění skladu." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Celková hodnota" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Převod" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Spusťte snížení dodaného / přijatého množství v související objednávce / " +"objednávce" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Hodnota jednotky" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Měrná jednotka" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "Aktualizujte množství na SO / PO" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Používá se pro oceňování zásob v reálném čase. Pokud je tento účet nastaven " +"na virtuálním místě (bez interního typu), bude tento účet používán k udržení" +" hodnoty produktů přesunutých z interního umístění do tohoto umístění " +"namísto generického účtu Stock Output nastaveného na produktu. To nemá žádný" +" vliv na vnitřní umístění." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Používá se pro ocenění zásob v reálném čase. Pokud je nastaven na virtuálním" +" místě (ne interním typu), bude tento účet používán k držení hodnoty " +"produktů přesunutých z tohoto umístění a do interního umístění, namísto " +"obecného účtu výstupu produktu nastaveného na produktu. To nemá žádný vliv " +"na interní umístění." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Ocenění" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Hodnota" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Varování" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Pokud je u produktu povoleno automatické ohodnocení zásob, bude tento účet " +"držet aktuální hodnotu produktů." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Při automatizovaném oceňování zásob se jedná o účetní deník, ve kterém budou" +" položky při zpracování pohybů zásob automaticky zaúčtovány." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "model průvodce k vyhodnocení zásob na skladě produktu" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "Produkt nelze přecenit standardní metodou nákladů." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "Produkt nelze přecenit s prázdnou nebo zápornou zásobou." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" +"Nelze aktualizovat cenu produktu v automatickém oceňování, protože vede k " +"vytvoření položky deníku, ke které nemáte přístupová práva." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Ve své kategorii produktů nemáte definován žádný účet pro hodnocení vstupů. " +"Před zpracováním této operace musíte definovat jeden." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Ve své produktové kategorii nemáte definován žádný skladový deník, " +"zkontrolujte, zda jste nainstalovali účtovou osnovu." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Ve své kategorii produktů nemáte definován žádný účet pro oceňování zásob. " +"Před zpracováním této operace musíte definovat jeden." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "od" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "pro" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "lokace" diff --git a/addons/stock_account/i18n/da.po b/addons/stock_account/i18n/da.po new file mode 100644 index 00000000..71539117 --- /dev/null +++ b/addons/stock_account/i18n/da.po @@ -0,0 +1,985 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Hans Henrik Gabelgaard , 2020 +# Morten Schou , 2020 +# Jesper Carstensen , 2020 +# Pernille Kristensen , 2020 +# Sanne Kristensen , 2020 +# Ejner Sønniksen , 2020 +# lhmflexerp , 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Mads Søndergaard , 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "Produkt omkostning opdateret fra %(previous)s til %(new_cost)s." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" +"%(user)s ændrede omkostning fra %(previous)s til %(new_price)s - %(product)s" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" +"%(user)s ændrede lager evaluering fra %(previous)s til %(new_value)s - " +"%(product)s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" +")\n" +" Brug en negativ adderet værdi for at registrere et fald i produktværdi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "Angiv andet input/output konti på specifikke " + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Kontoplansskabelon" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Kontobevægelse" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Lagerkonto egenskaber" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Bogføringsdato" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Finansposter" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Regnskabsinformation" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "Tilføj Manuel Evaluering" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" +"Tilføj yderligere omkostning (transport, told, ...) til værdien af " +"produktet." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "Tilføjet Værdi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "Tilføjet værdi" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Påvirk landede omkostninger ved modtagelsesoperationer og opdel dem mellem " +"produkter for at opdatere deres omkostningspris." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatiseret" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Gennemsnitlig omkostning (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Annullér" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Kan ikke finde en lagertilgangskonto for dette produktet %s. Du skal " +"definere en på produktkategorien eller på lokationen, før du fortsætter " +"denne handling." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Kan ikke finde lagerafgangskonto for dette produktet %s. Du skal definere en" +" på produktkategorien eller på lokationen, før du fortsætter denne handling." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Ændring af din omkostningsmetode er en vigtig ændring, som vil have en " +"indvirkning på din inventar vurdering. Er du sikker på du vil foretage " +"ændringen?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Virksomhed" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurer opsætning" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Konfigurationsfejl. Venligst opsæt en konto for prisdifferencer på produktet" +" eller dets kategori, for at fuldføre denne handling. " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Kostpris metode" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "Omkostningsmetode ændring for produkt kategori %s: fra %s til %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Modkonto" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" +"Modpart journalposter for alle indgående lager bevægelser vil blive posteret i denne konto, medmindre der er en specifik evaluerings konto\n" +" angivet i kilde lokationen. Dette er standard værdien for alle produkter i denne kategori. Det kan også angivet direkte på hvert produkt." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Valuta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "Nuværende Kvantitet" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Aktuel værdi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Dato" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Dato hvorpå konto posteringerne vil blive oprettet, i tilfælde af automatisk" +" inventar vurdering. Hvis efterladt tom, vil inventar datoen anvendes." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Standard måleenhed, der anvendes til alle lageroperationer." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Beskrivelse" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentation" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" +"På grund af en ændring af produkt kategori (fra %s til %s), er " +"omkostningsmetoden ændret for produkt skabelon %s: fra %s til %s." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "First In First Out (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Sortér efter" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "Har kontobevægelser" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Lager" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Lager lokationer" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Lagerværdi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "Er Anglo-saxisk linje" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Journal" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Postering" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Journalpost" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Anskaffelsespriser" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "Forbundet til" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manuel" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "Manuel Lager Evaluering: %s." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "Manuel Lager Evaluering: Ingen Årsag Tilkendegivet." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manuel: Renskabsposteringer til værdiansætning af inventar posteres ikke automatisk.\n" +" Automatiseret: En regnskabspost oprettes automatisk for at værdiansætte beholdningen, når et produkt går ind i eller forlader virksomheden.\n" +"  " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "Ny værdi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "Ny værdi per kvantitet" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "Tilgængelig Værdi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Anden info" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" +"Vær venlig at definere en udgifts konto for dette produkt: \"%s\" (id: %d) -" +" eller for dens kategori: \"%s\"." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produkt" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Produktkategori" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Produkt bevægelser (Lagerbevægelse linje)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "Produkt Genevaluering" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Produktskabelon" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "Produkt værdi manuelt modificeret (fra %s til %s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Antal" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "Kvantitet Svl" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Kvantum" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Årsag" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "Årsag til genevaluering" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "Relateret produkt" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Resterende antal" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Tilbageværende værdi" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Retur plukning" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Returner pluk linje" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "Genevaluering af %s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "Genevaluer" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Vælg kategory for produktet" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Standard pris" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Standard pris: Produkterne er værdiansat ved deres standard pris, defineret på produktet.\n" +" Gennemsnitlig pris (AVCO): Produkterne er værdiansat til den vægtede gennemsnits pris.\n" +" Første ind, første ud (FIFO): Produkterne er værdiansat udfra antagelsen, at de der først ankommer til virksomheden, vil være de sidste der forlader den." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Lager tilgangskonto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Lagerjournal" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Lagerflytning" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Lager afgangskonto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Lager kvantitet historik" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Lager Genopfyldning Rapport" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Lager vurdering" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Konto for lagerværdien" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Konto for lagerværdien (indgående)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Konto for lagerværdien (udgående)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "Lager vurdering lag" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "Teknisk felt brugt til at indhente angelsaksisk linje." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" +"Lager Input og/eller Output konti kan ikke være de samme som Lager " +"Evaluerings kontoen." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" +"Handlingen fører til oprettelsen af en journalpostering, som du ikke har " +"adgangsrettigheder til." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "Den tilføjede værdi har ikke nogen indflydelse på lager evalueringen" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Bevægelses linjerne er ikke i en ensartet tilstand: nogle er indgående, og " +"andre er udgående fra virksomheden." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Bevægelses linjerne er ikke i en ensartet tilstand: de udfører en inter-" +"virksomhed i et enkelt trin, imens de burde gå gennem inter-virksomheds " +"transit stedet." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Bevægelses linjerne er ikke i en ensartet tilstand: de deler ikke samme " +"oprindelse eller destinations virksomhed." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"Der er ingen vurderings lag. Vurderings lag oprettes når visse produkt " +"bevægelser burde påvirke vurderingen af lageret." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Værdi i alt" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Overfør" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Udlys en sænkning af kvantiteten på leveret/modtaget i den tilhørende " +"salg-/købsordre" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Enhed værdi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Enhed" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "Opdater kvantiteter på SO/PO" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Bruges ved real-time lagerværdiansættelse. Når den er sat på en virtuel " +"lokation (ikke-intern type), vil denne konto blive anvendt til at vise " +"værdien af produkter der flyttes fra en intern lokation til denne lokation, " +"i stedet for den generiske udgående lagerkonto der er sat på produktet. " +"Dette har ingen effekt på interne lokationer. " + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Bruges ved real-time lagerværdiansættelse. Når den er sat på en virtuel " +"lokation (ikke-intern type), vil denne konto blive anvendt til at vise " +"værdien af produkter der flyttes ud af denne lokation og ind på en intern " +"lokation, i stedet for den generiske udgående lagerkonto der er sat på " +"produktet. Dette har ingen effekt på interne lokationer. " + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Værdisætning" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "Vurderings metode ændring for produkt kategori %s: fra %s til %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Værdi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "Værdi Svl" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Advarsel" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Når automatiseret inventar vurdering er aktiveret for et produkt, vil denne " +"konto holde den nuværende værdi af produkterne." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"Ved udførsel af en automatisk inventar vurdering, vil modparts journalgenstande for alle udgående lager bevægelse blive posteret i denne konto,\n" +"medmindre der er en specifik vurderings konto angivet i kilde destinationen. Dette er standard værdien for alle produkter i denne kategori.\n" +"Det kan også angives direkte på hvert produkt." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Ved udførsel af automatiseret inventar vurdering, er dette " +"regnskabsjournalen hvori der poster vil blive posteret automatisk når lager " +"bevægelser behandles." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "Guide model til genevaluering af et lager inventar for et produkt" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" +"Du kan ikke genevaluerer et produkt med en standard omkostnings metode." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "Du kan ikke genevaluerer et produkt med et tomt eller negativt lager." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" +"Du kan ikke opdatere omkostningen af et produkt i automatiseret evaluering, " +"eftersom det fører til oprettelsen af en journalpostering, som du ikke har " +"adgangsrettigheder til." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Du har ikke nogen input vurderings konto defineret på din produkt kategori. " +"Du skal definere en, før behandling af denne operation." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Du har ikke en lager journal defineret på din produkt kategori, tjek om du " +"har installeret en kontoplan." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Du har ikke defineret en konto for lagerværdien på din produktkategori. Du " +"skal definere en før du kan gennemføre denne handling. " + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "Du skal angive en modparts konto på din produkt kategori." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "af" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "for" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "lokationer" diff --git a/addons/stock_account/i18n/de.po b/addons/stock_account/i18n/de.po new file mode 100644 index 00000000..ec2b1183 --- /dev/null +++ b/addons/stock_account/i18n/de.po @@ -0,0 +1,943 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# e2f , 2020 +# Martin Trigaux, 2020 +# Anja Funk , 2020 +# Katharina Moritz , 2020 +# Bülent Tiknas , 2020 +# Chris Egal , 2020 +# Tobias Arndt, 2020 +# Robert Förster , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Robert Förster , 2021\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Kontenplanvorlage" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Kontobuchung" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Einstellungen Lagerbuchhaltung" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Buchungsdatum" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Buchungen" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Buchungsinformation" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatisch" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Durchschnittskosten (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Abbrechen" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Eine Lagereingangskonto für für das Produkt %s konnte nicht gefunden werden." +" Sie müssen vor der Bearbeitung dieses Vorgangs, einen über die " +"Produktkategorie oder den Ort definieren." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Eine Lagerausgangskonto für für das Produkt %s konnte nicht gefunden werden." +" Sie müssen vor der Bearbeitung dieses Vorgangs, einen über die " +"Produktkategorie oder den Ort definieren." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Das Ändern der Kostenmethode ist eine wichtige Änderung, die sich auf Ihre " +"Bestandsbewertung auswirkt. Sind Sie sicher, dass Sie diese Änderung " +"vornehmen möchten?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Unternehmen" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguration " + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Konfigurationsfehler. Bitte konfigurieren Sie das Preisdifferenzkonto auf " +"dem Produkt oder seiner Kategorie, um diesen Vorgang zu bearbeiten." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Kalkulationsverfahren" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Gegenkonto" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Währung" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Aktueller Wert" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Datum" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Standardmaßeinheit, die für alle Lagervorgänge verwendet wird." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Beschreibung" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentation" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "First In – First Out (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Gruppierung ..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Lager" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Inventurlager" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Inventur Bewertung" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Journal" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Buchungssatz" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Buchungszeile" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Einstandskosten" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manuell" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manuell: Die Buchungen zur Bewertung des Lagerbestands werden nicht automatisch erstellt.\n" +"Automatisch: Eine Buchung wird automatisch erstellt, um den Lagerbestand zu bewerten, wenn ein Produkt im Unternehmen ankommt oder das Unternehmen verlässt." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Weitere Informationen" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produkt" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Produktkategorie" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Produktbewegungen (Lagerbewegung)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Produktvorlage" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Menge" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Quants" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Grund" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Restmenge" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Verbleibender Wert" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Rücklieferschein" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Kategorie für das neue Produkt wählen" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Standardpreis" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Standardpreis: Die Produkte werden nach für das Produkt definierten Standard-Kosten berechnet.\n" +" Durchschnittskosten (AVCO): Die Produkte werden zu gewichteten Durchschnittskosten berechnet.\n" +" First In – First Out (FIFO): Die Produkte werden unter der Annahme bewertet, dass die Produkte, die zuerst im Unternehmen ankommen, auch zuerst das Unternehmen verlassen.\n" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Konto Wareneingang" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Lager Journal" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Lagerbuchung" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Warenversand Konto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Verlauf Bestandsmenge" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Bestandsauffüllbericht" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Bestandsbewertung" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Bestandskonto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Lagerbewertungskonto (Eingehend)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Lagerbewertungskonto (Ausgehend)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Die Buchungszeilen weisen keinen konsistenten Status auf: Sie führen einen " +"konzerninternen Vorgang in einem einzelnen Schritt aus, während sie das " +"konzerninterne Umschlaglager durchlaufen müssten." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Die Buchungszeilen weisen keinen konsistenten Status auf: Sie spiegeln nicht" +" dasselbe Ursprungs- oder Zielunternehmen wider." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Gesamt Wert" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Lieferung vornehmen" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Auslösen einer Minderung der gelieferten/erhaltenen Menge im zugehörigen " +"Verkaufsauftrag/Beschaffungsauftrag" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Mengeneinheit" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Bei der Echtzeit-Inventar-Bewertung genutzt. Wenn bei einem virtuellen " +"Lager eingestellt (nicht intern), wird diesem Konto der Wert der Produkte " +"zugeschrieben, die bei Lagerbewegungen von einem internen Lager an dieses " +"Lager erfolgen, anstelle des beim jeweiligen Produkt eingetragenen " +"allgemeinen Lagerabgangs-Konto, verwendet. Bei rein internen " +"Lagerveränderungen hat diese Einstellung keine Auswirkung." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Wird bei der Echtzeit-Inventar-Bewertung genutzt. Wenn es bei einem " +"virtuellen Lager eingestellt (nicht intern), wird dieses Bestandskonto für " +"Lieferungen von diesem Lager in ein internes Lager, anstelle des beim " +"Produkt eingetragenen, allgemeinen Warenabgang-Verrechnungskonto, verwendet." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Bewertung" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Wert" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Warnung" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" +"Sie können ein Produkt ohne oder mit negativem Bestand nicht neu bewerten." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Sie haben keine Lagerbewertung auf Ihrer Produktkategorie. Sie müssen eine " +"vor der Bearbeitung dieses Vorgangs definieren." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "durch" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "für" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/el.po b/addons/stock_account/i18n/el.po new file mode 100644 index 00000000..6934fdbc --- /dev/null +++ b/addons/stock_account/i18n/el.po @@ -0,0 +1,915 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Kostas Goutoudis , 2020 +# George Tarasidis , 2020 +# Alexandros Kapetanios , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Alexandros Kapetanios , 2021\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Πρότυπο γραφήματος λογαριασμού" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Λογαριασμός Ιδιοτήτων Αποθέματος" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Ημερ. Λογιστικής" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Λογιστικές Εγγραφές" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Λογιστική Πληροφόρηση" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Μέσο Kόστος (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Ακύρωση" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Εταιρία" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Ρυθμίσεις διαμόρφωσης" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Μέθοδος Κοστολόγησης" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Αντίστοιχος Λογαριασμός" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Νόμισμα" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Ημερομηνία" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Περιγραφή" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Τεκμηρίωση" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "Πρώτη Εισαγωγή Πρώτη Εξαγωγή (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Ομαδοποίηση κατά..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "Κωδικός" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Αποθήκη" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Τοποθεσίες Αποθέματος" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Αποτίμηση Αποθεμάτων" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Ημερολόγιο" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Εγγραφή Ημερολογίου" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Στοιχείο Ημερολογίου" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Κόστη Παράδοσης" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Τελευταία Ενημέρωση από" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Τελευταία Ενημέρωση στις" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Χειροκίνητα" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Λοιπές Πληροφορίες" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Είδος" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Κατηγορία Είδους" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Πρότυπο Είδους " + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Ποσότητα" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Quants" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Αιτία" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Υπολειπόμενη Ποσ." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Υπολειπόμενη Αξία" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Επιστροφή Συλλογής" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Επιλέξτε κατηγορία για το τρέχον είδος" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Τυπική τιμή" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Λογαριασμός Εισερχομένων Αποθεμάτων" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Ημερολόγιο Αποθεμάτων" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Κίνηση Αποθέματος" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Λογαριασμός Εξερχομένων" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Λογαριασμός Αποτιμήσης Αποθέματος" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Λογαριασμός Αποτιμήσης Αποθέματος (εισερχέμενο)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Λογαριασμός Αποτιμήσης Αποθέματος (εξερχόμενα)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Συνολική Αξία" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Μεταφορά" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Μονάδα Μέτρησης" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Χρησιμοποιείται για την αποτίμηση των αποθεμάτων σε πραγματικό χρόνο. Όταν " +"ρυθμιστεί σε μια εικονική θέση (μη εσωτερικού τύπου), αυτός ο λογαριασμός θα" +" χρησιμοποιείται για να κρατήσει την αξία των ειδών που μετακινούνται από " +"μια εσωτερική θέση σε αυτήν τη θέση, αντί του γενικού Λογαριασμού " +"Εξερχόμενου Αποθέματος που ρυθμίστηκε επί του είδους. Αυτό δεν έχει καμία " +"επίδραση για τις εσωτερικές θέσεις." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Χρησιμοποιείται για την αποτίμηση των αποθεμάτων σε πραγματικό χρόνο. Όταν " +"ρυθμιστεί σε μια εικονική θέση (μη εσωτερικού τύπου), αυτός ο λογαριασμός θα" +" χρησιμοποιείται για να κρατήσει την αξία των ειδών που μετακινούνται από " +"αυτή την θέση σε μια εσωτερική θέση, αντί του γενικού Λογαριασμού " +"Εξερχόμενου Αποθέματος που ρυθμίστηκε επί του είδους. Αυτό δεν έχει καμία " +"επίδραση για τις εσωτερικές θέσεις." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Τιμή" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Προσοχή" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "από" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "για" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/en_GB.po b/addons/stock_account/i18n/en_GB.po new file mode 100644 index 00000000..ee3ed23e --- /dev/null +++ b/addons/stock_account/i18n/en_GB.po @@ -0,0 +1,745 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2015-10-01 09:22+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/odoo/" +"odoo-9/language/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"#-#-#-#-# en_GB.po (Odoo 9.0) #-#-#-#-#\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"#-#-#-#-# en_GB.po (Odoo 9.0) #-#-#-#-#\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Accounting" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Accounting Information" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Average Price" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Cancel" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Company" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Created on" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Date" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Group By" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Invoice" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Invoice Line" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Location" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Move" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Price" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Product" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Product Category" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Product Template" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Set standard price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Source" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Stock Move" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Templates for Account Chart" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Value" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "unknown" + +#~ msgid "Asset Type" +#~ msgstr "Asset Type" + +#~ msgid "Deferred Revenue Type" +#~ msgstr "Deferred Revenue Type" diff --git a/addons/stock_account/i18n/eo.po b/addons/stock_account/i18n/eo.po new file mode 100644 index 00000000..2f1f25ce --- /dev/null +++ b/addons/stock_account/i18n/eo.po @@ -0,0 +1,896 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/es.po b/addons/stock_account/i18n/es.po new file mode 100644 index 00000000..f809bc5f --- /dev/null +++ b/addons/stock_account/i18n/es.po @@ -0,0 +1,985 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Jesús Alan Ramos Rodríguez , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Jesús Alan Ramos Rodríguez , 2021\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr " Costo del producto actualizado de %(previous)s a %(new_cost)s." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" +"%(user)s cambió el costo de %(previous)s a %(new_price)s - %(product)s" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" +"%(user)s cambió la valoración de stock de %(previous)s a %(new_value)s - " +"%(product)s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" +")\n" +" Utilice un valor agregado negativo para registrar una disminución en el valor del producto." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "Configure otras cuentas de entrada / salida" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Plantilla de Plan de Cuentas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Movimiento de cuenta" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Propiedades de cuenta de stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Fecha contable" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Asientos contables" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Información contable" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "Agregar valoración manual" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" +"Agregue un costo adicional (transporte, aduanas, ...) en el valor del " +"producto." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "Valor añadido" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "Valor añadido" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Afecte los costos de aterrizaje en las operaciones de recepción y divídalos " +"entre productos para actualizar su precio de costo." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatizado" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Coste promedio (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"No se puede encontrar una cuenta de entrada de stock para el producto %s. " +"Debe definir una en la categoría de producto o en la ubicación antes de " +"procesar esta operación." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"No se puede encontrar una cuenta de salida de stock del producto %s. Debe " +"definir una en la categoría de producto o en la ubicación antes de procesar " +"esta operación." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Cambiar el método de coste es un cambio importante que repercutirá en su " +"valoración de inventario. ¿Seguro que desea efectuar tal cambio?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Compañía" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Opciones de configuración" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Error de configuración. Configure la cuenta de diferencias de precio en el " +"producto o su categoría para procesar esta operación." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Método de coste" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "Cambio de método de costo para categoría de producto %s: de %s a %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Contrapartida" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" +"Los artículos del diario de contraparte para todos los movimientos de stock entrantes se contabilizarán en esta cuenta, a menos que haya una cuenta de valoración específica.\n" +" establecido en la ubicación de origen. Este es el valor predeterminado para todos los productos de esta categoría. También se puede configurar directamente en cada producto." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Moneda" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "Cantidad actual" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Valor actual" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Fecha" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Fecha en la que se crearán los asientos contables en caso de valoración de " +"inventario automatizada. Si está vacío, se usará la fecha de inventario." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" +"Unidad de medida por defecto utilizada para todas las operaciones de stock." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Descripción" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Documentación" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" +"Debido al cambio en la categoría del producto ( de %s a %s), el método de " +"costeo ha cambiado para la plantilla del " +"producto %s: de %s a %s." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "Primeras entradas, primeras salidas (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Agrupar por..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "Tiene Movimientos Contables" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventario" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Ubicaciones de inventario" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Valoración del inventario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "Es un línea anglosajona" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Diario" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Asiento contable" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Apunte contable" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Costes en destino" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "Vinculado a" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manual" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "Valoración de stock manual: %s." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "Valoración manual de existencias: sin motivo." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manual: Los registros contables de valoración del inventario no se publican automáticamente.\n" +" Automatizado: Se crea automáticamente un registro contable para evaluar el inventario cuando un producto entra o sale de la empresa.\n" +" " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "Nuevo valor" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "Nuevo valor por cantidad" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "Valor en Mano" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Otra Información" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" +"Por favor defina una cuenta de gasto para este producto: \"%s\" (id:%d) - o " +"a su categoría: \"%s\"." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Movimientos de Producto (Stock Move Line)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "Revaluación de Producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "Valor del producto modificado manualmente (de %s a %s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Cantidad" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "Cantidad Svl" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Quants" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Motivo" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "Razón de la revaluación" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "Productos relacionado" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Cantidad restante" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Valor restante" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Albarán de devolución" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Línea de Albarán de devolución" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "Revaluación de %s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "Revalorizar" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Seleccione la categoría para el producto actual" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Precio estándar" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Precio estándar: Los productos se valoran según su coste estándar definido en el producto.\n" +" Coste promedio (AVCO): Los productos se valoran según su coste promedio ponderado\n" +" Primeras entradas, primeras salidas (FIFO): Los productos se valoran dando por hecho que los primeros en entrar en la empresa son también los primeros en salir.\n" +" " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Cuenta de entrada de stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Diario de stock" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Movimiento de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Cuenta de salida de stock" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Historia de Stock Quant" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Informe de reabastecimiento de existencias" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Valoración de stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Cuenta de valoración de stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Cuenta de valoracion de stock (entrada)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Cuenta de valoracion de stock (salida)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "Capa de valoración de stock" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "Campo técnico utilizado para recuperar las líneas anglosajonas." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" +"Las cuentas de Entrada y/o Salida de Stock no pueden ser las mismas que la " +"cuenta de Valoración de Stock." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" +"La acción conduce a la creación de una entrada de diario, para la que no " +"tiene derechos de acceso." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "El valor añadido no tiene ningún impacto en la valoración del stock" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Las líneas de movimiento no están en un estado consistente: algunas están " +"entrando y otras están saliendo de la empresa." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Las líneas de movimiento no se encuentran en estados consistentes, pues " +"están llevando a cabo una operación interna de la empresa en un solo paso " +"mientras deberían pasar por la ubicación de tránsito interno de la empresa." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Las líneas de movimiento no se encuentran en estados consistentes, puesto " +"que no comparten la misma empresa de origen o de destino." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"No hay capas de valoración. Las capas de valoración se crean cuando algunos " +"movimientos de productos deberían afectar la valoración del stock." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Valor total" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Albarán" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Originar una disminución de la cantidad entregada/recibida en el pedido de " +"venta/compra asociado" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Valor unitario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Unidad de medida" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "Actualizar cantidades en PV/OC" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para una valoración en tiempo real del inventario. Cuando está " +"establecido en una ubicación virtual (no de tipo interno), esta cuenta se " +"usará para mantener el valor de los productos que son movidos de una " +"ubicación interna a esta ubicación, en lugar de la cuenta de salida de " +"existencias genérica establecida en el producto. No tiene efecto para " +"ubicaciones internas." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para una valoración en tiempo real del inventario. Cuando está " +"establecido en una ubicación virtual (no de tipo interno), esta cuenta se " +"usará para mantener el valor de los productos que son movidos fuera de la " +"ubicación a una ubicación interna, en lugar de la cuenta de salida de stock " +"genérica establecida en el producto. No tiene efecto para ubicaciones " +"internas." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Valoración" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" +"Cambio de método de valoración para categoría de producto %s: de %s a %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "Valor Svl" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Alerta" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Cuando la valoración de inventario automatizada está habilitada en un " +"producto, esta cuenta mantendrá el valor actual de los productos." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"Al realizar una valoración de inventario automatizada, los artículos de diario de contrapartida para todos los movimientos de stock salientes se registrarán en esta cuenta,\n" +"                 a menos que haya una cuenta de valoración específica establecida en la ubicación de destino. Este es el valor predeterminado para todos los productos de esta categoría.\n" +"                 También se puede configurar directamente en cada producto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Al realizar una valoración de inventario automatizada, este es el diario de " +"contabilidad en el que las entradas se contabilizarán automáticamente cuando" +" se procesen los movimientos de stock." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" +"Modelo de asistente para reevaluar un inventario de existencias para un " +"producto" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "No puede revaluar un producto con un método de costo estándar." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "No se puede revalorizar un producto con stock vacío o negativo." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" +"No puede actualizar el costo de un producto en la valoración automatizada, " +"ya que conduce a la creación de un asiento de diario, para el cual no tiene " +"los derechos de acceso." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"No tiene ninguna cuenta de valoración de entrada definida en su categoría de" +" producto. Debe definir uno antes de procesar esta operación." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"No tiene ningún diario de existencias definido en su categoría de producto, " +"verifique si ha instalado un plan de cuentas." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"No tiene ninguna cuenta de valoración de stock definida en su categoría de " +"producto. Debe definir uno antes de procesar esta operación." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" +"Debe establecer una cuenta de contraparte en su categoría de producto." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "por" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "para" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "ubicaciones" diff --git a/addons/stock_account/i18n/es_BO.po b/addons/stock_account/i18n/es_BO.po new file mode 100644 index 00000000..ea9fc746 --- /dev/null +++ b/addons/stock_account/i18n/es_BO.po @@ -0,0 +1,735 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2015-10-01 09:22+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-9/" +"language/es_BO/)\n" +"Language: es_BO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Contabilidad" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Información contable" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Precio promedio" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Compañía" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Coste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Fecha" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventario" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Ubicaciones de inventario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "Valor del inventario" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea de factura" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Ubicación" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Asiento" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "Cantidad del producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Quants" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "Nº de serie" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Set standard price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Origen" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Movimiento de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Plantillas para el plan contable" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "_Aplicar" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "desconocido" diff --git a/addons/stock_account/i18n/es_CL.po b/addons/stock_account/i18n/es_CL.po new file mode 100644 index 00000000..04e21092 --- /dev/null +++ b/addons/stock_account/i18n/es_CL.po @@ -0,0 +1,747 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2015-10-06 08:56+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Contabilidad" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Información contable" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Precio medio" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "Cambiar precio" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "Cambiar precio estándar" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Compañía" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Coste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "Método de costo" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +#, fuzzy +msgid "Counter-Part Account" +msgstr "Cuenta salida stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Fecha" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" +"Si el precio de coste se aumenta, la cuenta de variación de stock irá al " +"debe y la cuenta de salida de stock irá al haber con el valor = (diferencia " +"de importe * cantidad disponible).\n" +"Si el precio de coste se reduce, la cuenta de variación de stock irá al " +"haber y la cuenta de entrada de stock irá al debe." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventario" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "Valoración inventario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea factura" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Ubicación" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Movimiento" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Precio" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "Cantidad producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Plantilla producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "Precio estándar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Texto original" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Precio estándar" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "Cuenta entrada stock" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "Diario de inventario" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Moviemiento de stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "Cuenta salida stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Cuenta de valoración de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "Valor total" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "Unidad de venta" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Al hacer la valoración de inventario en tiempo real, este es el diario " +"contable donde los asientos se crearán automáticamente cuando los " +"movimientos de stock se procesen." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Cuando está activada una valoración de inventario en tiempo real de un " +"producto, esta cuenta contiene el valor actual de los productos." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "_Aplicar" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "desconocido" diff --git a/addons/stock_account/i18n/es_CO.po b/addons/stock_account/i18n/es_CO.po new file mode 100644 index 00000000..28ae8493 --- /dev/null +++ b/addons/stock_account/i18n/es_CO.po @@ -0,0 +1,842 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# ANDRES FELIPE NEGRETE GOMEZ , 2016 +# Mateo Tibaquirá , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2016-02-18 03:59+0000\n" +"Last-Translator: Felipe Palomino \n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "# de Productos" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Propiedades de Cuenta de Existencias" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Contabilidad" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Información Contable" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "El id. activo no se ha establecido en el Contexto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" +"Permite configurar valoraciones de inventario en los productos y categorías " +"de producto." + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Precio Promedio" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "Puede ser gastado" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "Cambiar Precio" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "Cambiar Precio Estándar" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" +"Seleccione una fecha en el pasado para obtener el inventario desde esa fecha." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" +"Escriba la fecha de contabilidad en la que quiera valorar los movimientos de " +"stock creados por el inventario en vez de la predeterminada (la fecha de fin " +"de inventario)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "Escoja su fecha" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" +"Coeficiente para convertir la unidad de medida predeterminada (UdM) en la " +"unidad de venta UdV = UdM * coeff " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Compañía" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "Calculado desde el precio promedio" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Costo" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "Método de Coste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +#, fuzzy +msgid "Counter-Part Account" +msgstr "Cuenta de Salida de Existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Creado" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Fecha" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "Forzar Fecha Contable" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" +"Si el precio de coste se incrementa, la cuenta la variación de existencias " +"irá al debe y la cuenta de salida de existencias irá al haber con el valor = " +"(diferencia de cantidad * cantidad disponible).\n" +"Si el precio de coste se reduce, la cuenta la variación de existencias irá " +"al haber y la cuenta de entrada de existencias irá al debe." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" +"Si la valoración perpetua se activa para un producto, el sistema creará " +"automáticamente asientos contables correspondientes a movimientos de stock, " +"con el precio de producto indicado según el \"método de coste\". La cuenta " +"de valoración de inventario establecida en la categoría de producto " +"representará la cuenta de inventario actual, y las cuentas de entrada y " +"salida de mercancía contendrán las contrapartidas de movimiento para los " +"productos entrantes y salientes." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" +"Si la valoración perpetua se activa para un producto, el sistema creará " +"automáticamente asientos contables correspondientes a movimientos de stock, " +"con el precio de producto indicado según el \"método de costo\". La cuenta " +"de valoración de inventario establecida en la categoría de producto " +"representará la cuenta de inventario actual, y las cuentas de entrada y " +"salida de mercancía contendrán las contrapartidas de movimiento para los " +"productos entrantes y salientes." + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "Incluye costos adicionales en el cálculo del costo del producto" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" +"Instala el módulo que permite imputar costes en destino en los albaranes, y " +"separarlos entre los diferentes productos." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventario" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Ubicaciones de Inventario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "Valuación del Inventario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "Valor del Inventario" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "Inventario a la Fecha" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea de Factura" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "Costos en el Destino" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Ubicación" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "Gestionar Valoración de Inventario y Métodos de Coste" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Movimiento" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "¡No hay diferencias entre el precio estándar y el nuevo precio!" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "Sin costos adicionales" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "Fecha de la Operación" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "Periódico (manual)" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "Valoración de inventario periódico (recomendado)" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "Perpetuo (automático)" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" +"Valuación de inventario perpetua (movimientos de existencias genera entradas " +"contables)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Precio" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "Tiempo de Alerta Producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Categoría del Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "Tiempo de Vida Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "Cantidad Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "Tiempo Eliminación Producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Plantilla del Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "Duración del Producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Cants" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "Precio Real" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "Obtener el Valor de Inventario" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "Recupera la actual valoración de inventario." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "Número de Serie" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "Precio Estándar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Fuente" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" +"Especifique aquí una unidad de medida si la factura se realizará en otra " +"unidad distinta a la del inventario. Déjelo vacío para usar la de por " +"defecto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "Especifica si el producto puede ser seleccionado en un gasto RRHH." + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Precio Estándar" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "Precio Estándar cambiado" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" +"Precio estándar: El precio de costo se actualiza manualmente al final de un " +"período determinado (por lo general una vez al año).\n" +"Precio medio: El precio de costo se recalcula en cada movimiento de " +"inventario entrante y se utiliza para la valoración del producto.\n" +"Precio Real: El precio de costo es el precio del último producto de salida " +"(se puede utilizar en caso de pérdida de inventario, por ejemplo)." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" +"Precio estándar: El precio de costo se actualiza manualmente al final de un " +"período determinado (por lo general una vez al año).\n" +"Precio medio: El precio de costo se recalcula en cada movimiento de " +"inventario entrante y se utiliza para la valoración del producto.\n" +"Precio Real: El precio de costo es el precio del último producto de salida " +"(se puede utilizar en caso de pérdida de inventario, por ejemplo)." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "Cuenta de Entrada de Existencias" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "Libro de Existencias" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Movimiento de Existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "Cuenta de Salida de Existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Cuenta de Valoración de Existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Cuenta de Valoracion de Existencias (Entrada)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Cuenta de Valoracion de Existencias (Salida)" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "Valor de Inventario para una Fecha" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Plantillas de Plan de Cuentas" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "Valor Total" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "Unidad de Medida -> Coeficiente UdV" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "Unidad de Venta" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para una valoración en tiempo real del inventario. Cuando está " +"establecido en una ubicación virtual (no de tipo interno), esta cuenta se " +"usará para mantener el valor de los productos que son movidos de una " +"ubicación interna a esta ubicación, en lugar de la cuenta de salida de " +"existencias genérica establecida en el producto. No tiene efecto para " +"ubicaciones internas." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para una valoración en tiempo real del inventario. Cuando está " +"establecido en una ubicación virtual (no de tipo interno), esta cuenta se " +"usará para mantener el valor de los productos que son movidos fuera de la " +"ubicación a una ubicación interna, en lugar de la cuenta de salida de " +"existencias genérica establecida en el producto. No tiene efecto para " +"ubicaciones internas." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" +"Cuando un nuevo nº de serie se asigna, éste es el número de días antes de " +"que se notifique una alerta." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" +"Cuando un nuevo nº de serie se asigna, éste es el número de días antes de " +"que los bienes se conviertan en peligrosos y no deban ser consumidos." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" +"Cuando un nuevo nº de serie se asigna, éste es el número de días antes de " +"que los bienes deban eliminarse del stock." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" +"Cuando un nuevo nº de serie se asigna, éste es el número de días antes de " +"que los bienes se empiecen a deteriorar, sin ser peligroso aún." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" +"Cuando se realiza una valoración de inventario en tiempo real, la " +"contrapartida para todos los movimientos de entrada serán imputados en esta " +"cuenta, a menos que se haya establecido una cuenta de valoración específica " +"en la ubicación fuente. Éste es el valor por defecto para todos los " +"productos en esta categoría. También se puede establecer directamente en " +"cada producto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" +"Cuando se realiza una valoración de inventario en tiempo real, la " +"contrapartida para todos los movimientos de entrada serán imputados en esta " +"cuenta, a menos que se haya establecido una cuenta de valoración específica " +"en la ubicación fuente. Cuando no se establece en el producto, se usa la " +"establecida en la categoría." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" +"Cuando se realiza una valoración de inventario en tiempo real, la " +"contrapartida para todos los movimientos de salida serán imputados en esta " +"cuenta, a menos que se haya establecido una cuenta de valoración específica " +"en la ubicación destino. Éste es el valor por defecto para todos los " +"productos en esta categoría. También se puede establecer directamente en " +"cada producto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" +"Cuando se realiza una valoración de inventario en tiempo real, la " +"contrapartida para todos los movimientos de salida serán imputados en esta " +"cuenta, a menos que se haya establecido una cuenta de valoración específica " +"en la ubicación destino. Cuando no se establece en el producto, se usa la " +"establecida en la categoría." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Al hacer la valoración de inventario en tiempo real, éste es el diario " +"contable donde los asientos se crearán automáticamente cuando los " +"movimientos de existencias se procesen." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Cuando está activada una valoración de inventario en tiempo real de un " +"producto, esta cuenta contiene el valor actual de los productos." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "Asistente que abre la tabla de histórico de valoración de inventario" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" +"Usted no tiene ningún diario de inventario definido en la categoría del " +"producto, compruebe si ha instalado un plan de cuentas" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, fuzzy, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" +"Usted no tiene ningún diario de inventario definido en la categoría del " +"producto, compruebe si ha instalado un plan de cuentas" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "_Aplicar" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "stock.config.settings" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "stock.history" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "desconocido(a)" + +#~ msgid "Asset Type" +#~ msgstr "Tipo de Activo" + +#~ msgid "Deferred Revenue Type" +#~ msgstr "Tipo de Ingreso Diferido" diff --git a/addons/stock_account/i18n/es_CR.po b/addons/stock_account/i18n/es_CR.po new file mode 100644 index 00000000..cea772c1 --- /dev/null +++ b/addons/stock_account/i18n/es_CR.po @@ -0,0 +1,764 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2015-10-01 09:22+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "Nº de productos" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Contabilidad" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Información contable" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Precio medio" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "Cambiar precio" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "Cambiar precio estándar" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Compañía" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Coste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "Método de coste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +#, fuzzy +msgid "Counter-Part Account" +msgstr "Cuenta salida stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Fecha" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" +"Si el precio de coste se incrementa, la cuenta la variación de existencias " +"irá al debe y la cuenta de salida de stock irá al haber con el valor = " +"(diferencia de cantidad * cantidad disponible).\n" +"Si el precio de coste se reduce, la cuenta la variación de existencias irá " +"al haber y la cuenta de entrada de stock irá al debe." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "Valoración inventario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea factura" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Lugar" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Movimiento" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Precio" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "Tiempo de alerta producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "Tiempo de vida producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "Cantidad producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "Tiempo eliminación producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "Tiempo de uso producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "Precio estándar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Texto original" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Precio estándar" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "Cuenta entrada stock" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "Diario de inventario" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Movimiento stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "Cuenta salida stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Valore de cuenta de evaluación" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Existencia de cuenta de evaluación (entrante)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Existencia de cuenta de evaluación (de salida)" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Plantillas para el plan contable" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "Valor total" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "Unidad de venta" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Se utiliza para la valoración de inventario en tiempo real. Cuando se está " +"en una ubicación virtual (tipo interno no), esta cuenta se utiliza para " +"mantener el valor de los productos que se mueven fuera de este lugar y en " +"una ubicación interna, en lugar de la Cuenta de la salida genérica " +"establecida en el producto. Esto no tiene efecto para las ubicaciones de " +"internos." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" +"Cuando se realiza en tiempo real de valuación de inventarios, artículos de " +"revistas de contraparte para todos los movimientos de stock entrantes serán " +"publicados en esta cuenta, a menos que exista un conjunto de valoración " +"específica de la cuenta en la ubicación de origen. Este es el valor por " +"defecto para todos los productos de esta categoría. También puede " +"directamente establecer en cada producto" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" +"Cuando se realiza en tiempo real de valuación de inventarios, artículos de " +"revistas de contraparte para todos los movimientos de valores de salida se " +"publicará en esta cuenta, a menos que exista un conjunto de valoración " +"específica de la cuenta en la ubicación de destino. Cuando no se establece " +"en el producto, la una de la categoría de producto se utiliza." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Al hacer la valoración de inventario en tiempo real, este es el diario " +"contable donde los asientos se crearán automáticamente cuando los " +"movimientos de stock se procesen." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Cuando está activada una valoración de inventario en tiempo real de un " +"producto, esta cuenta contiene el valor actual de los productos." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "_Aplicar" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "desconocido" diff --git a/addons/stock_account/i18n/es_DO.po b/addons/stock_account/i18n/es_DO.po new file mode 100644 index 00000000..a0257bc9 --- /dev/null +++ b/addons/stock_account/i18n/es_DO.po @@ -0,0 +1,844 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Eneldo Serrata , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2015-12-28 21:17+0000\n" +"Last-Translator: Eneldo Serrata \n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/odoo/" +"odoo-9/language/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "Nº de productos" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Propiedades de cuenta de existencias" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Contabilidad" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Información contable" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "El id. activo no se ha establecido en el contexto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" +"Permite configurar valoraciones de inventario en los productos y categorías " +"de producto." + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Precio promedio" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "Puede ser tratado como gasto" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "Cambiar precio" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "Cambiar precio estándar" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "Elija una fecha en el pasado para obtener el inventario en esa fecha." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" +"Escriba la fecha de contabilidad en la que quiera valorar los movimientos de " +"stock creados por el inventario en vez de la de por defecto (la fecha de fin " +"de inventario)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "Escoja su fecha" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" +"Coeficiente para convertir la unidad de medida por defecto (UdM) en la " +"unidad de venta UdV = UdM * coeff " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Compañía" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "Actualizar costo" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Coste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "Método de coste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +#, fuzzy +msgid "Counter-Part Account" +msgstr "Cuenta de salida de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Fecha" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "Forzar la fecha contable" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" +"Si el precio de coste se incrementa, la cuenta la variación de existencias " +"irá al debe y la cuenta de salida de existencias irá al haber con el valor = " +"(diferencia de cantidad * cantidad disponible).\n" +"Si el precio de coste se reduce, la cuenta la variación de existencias irá " +"al haber y la cuenta de entrada de existencias irá al debe." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" +"Si la valoración perpetua se activa para un producto, el sistema creará " +"automáticamente asientos contables correspondientes a movimientos de stock, " +"con el precio de producto indicado según el \"método de coste\". La cuenta " +"de valoración de inventario establecida en la categoría de producto " +"representará la cuenta de inventario actual, y las cuentas de entrada y " +"salida de mercancía contendrán las contrapartidas de movimiento para los " +"productos entrantes y salientes." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" +"Si valoración perpetua está habilitado para un producto, el sistema creará " +"automáticamente las entradas de diario correspondiente a valores se mueve, " +"con el precio del producto según lo especificado por el \"Costeo Método La " +"variación de inventarios cuenta configurada en la categoría de producto " +"representará el valor de inventario actual, y la acción entrada y salida de " +"la cuenta sostendrán los contrapartida movimientos para productos entrantes " +"y salientes." + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "Incluir costos descargados en producto cálculo de costos" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" +"Instala el módulo que permite imputar costes en destino en los albaranes, y " +"separarlos entre los diferentes productos." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventario" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Ubicaciones de inventario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "Valoración del inventario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "Valor del inventario" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "Inventory at Date" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea factura" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "Costes en destino" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Ubicación" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "Gestionar valoración de inventario y métodos de coste" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Movimiento" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "¡No hay diferencias entre el precio estándar y el nuevo precio!" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "Sin costos de importación" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "Fecha de la operación" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "Periódico (manual)" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "Valoración de inventario periódico (recomendado)" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "Perpetuo (automatizar)" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" +"Valoración de inventario perpetuo (acción movimiento generan asientos " +"contables)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Precio" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "Tiempo de alerta producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "Tiempo de vida producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "Cantidad producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "Tiempo eliminación producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Plantilla producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "Duración del producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Quants" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "Precio real" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "Obtener el valor de inventario" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "Recuperar la actual valoración de existencias." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "Nº de serie" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "Precio estándar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Texto original" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" +"Especifique aquí una unidad de medida si la factura se realizará en otra " +"unidad distinta a la del inventario. Déjelo vacío para usar la de por " +"defecto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" +"Especifique si el producto se puede seleccionar en un gasto de recursos " +"humanos." + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Precio estándar" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "Precio estándar cambiado" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" +"Precio estándar: El precio de coste se actualiza manualmente al final de un " +"período determinado (por lo general una vez al año). \n" +"                     Precio medio:. El precio de coste se recalcula en cada " +"envío entrante y se utiliza para la valoración del producto \n" +"                     Real Precio: El precio de coste es el precio del último " +"producto de salida (se puede utilizar en caso de pérdida de inventario, por " +"ejemplo)." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" +"Precio estándar: El precio de coste se actualiza manualmente al final de un " +"período determinado (por lo general una vez al año). \n" +"                     Precio medio:. El precio de coste se recalca en cada " +"envío entrante y se utiliza para la valoración del producto \n" +"                     Real Precio: El precio de coste es el precio del último " +"producto de salida (se puede utilizar en caso de pérdida de inventario, por " +"ejemplo)." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "Cuenta de entrada de existencias" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "Diario de existencias" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Movimiento de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "Cuenta de salida de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Cuenta de valoración de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Cuenta de valoracion de existencias (entrada)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Cuenta de valoracion de existencias (salida)" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "Valor de stock a una fecha" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Plantillas para el plan contable" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "Valor total" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "Unidad de medida -> Coeficiente UdV" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "Unidad de venta" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para una valoración en tiempo real del inventario. Cuando está " +"establecido en una ubicación virtual (no de tipo interno), esta cuenta se " +"usará para mantener el valor de los productos que son movidos de una " +"ubicación interna a esta ubicación, en lugar de la cuenta de salida de " +"existencias genérica establecida en el producto. No tiene efecto para " +"ubicaciones internas." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para una valoración en tiempo real del inventario. Cuando está " +"establecido en una ubicación virtual (no de tipo interno), esta cuenta se " +"usará para mantener el valor de los productos que son movidos fuera de la " +"ubicación a una ubicación interna, en lugar de la cuenta de salida de " +"existencias genérica establecida en el producto. No tiene efecto para " +"ubicaciones internas." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" +"Cuando un nuevo nº de serie se asigna, éste es el número de días antes de " +"que se notifique una alerta." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" +"Cuando un nuevo nº de serie se asigna, éste es el número de días antes de " +"que los bienes se conviertan en peligrosos y no deban ser consumidos." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" +"Cuando un nuevo nº de serie se asigna, éste es el número de días antes de " +"que los bienes deban eliminarse del stock." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" +"Cuando un nuevo nº de serie se asigna, éste es el número de días antes de " +"que los bienes se empiecen a deteriorar, sin ser peligroso aún." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" +"Cuando se realiza una valoración de inventario en tiempo real, la " +"contrapartida para todos los movimientos de entrada serán imputados en esta " +"cuenta, a menos que se haya establecido una cuenta de valoración específica " +"en la ubicación fuente. Éste es el valor por defecto para todos los " +"productos en esta categoría. También se puede establecer directamente en " +"cada producto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" +"Cuando se realiza una valoración de inventario en tiempo real, la " +"contrapartida para todos los movimientos de entrada serán imputados en esta " +"cuenta, a menos que se haya establecido una cuenta de valoración específica " +"en la ubicación fuente. Cuando no se establece en el producto, se usa la " +"establecida en la categoría." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" +"Cuando se realiza una valoración de inventario en tiempo real, la " +"contrapartida para todos los movimientos de salida serán imputados en esta " +"cuenta, a menos que se haya establecido una cuenta de valoración específica " +"en la ubicación destino. Éste es el valor por defecto para todos los " +"productos en esta categoría. También se puede establecer directamente en " +"cada producto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" +"Cuando se realiza una valoración de inventario en tiempo real, la " +"contrapartida para todos los movimientos de salida serán imputados en esta " +"cuenta, a menos que se haya establecido una cuenta de valoración específica " +"en la ubicación destino. Cuando no se establece en el producto, se usa la " +"establecida en la categoría." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Al hacer la valoración de inventario en tiempo real, éste es el diario " +"contable donde los asientos se crearán automáticamente cuando los " +"movimientos de existencias se procesen." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Cuando está activada una valoración de inventario en tiempo real de un " +"producto, esta cuenta contiene el valor actual de los productos." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "Asistente que abre la tabla de histórico de valoración de inventario" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" +"Usted no tiene ninguna revista social definido en su categoría de producto, " +"compruebe si ha instalado un plan de cuentas" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, fuzzy, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" +"Usted no tiene ninguna revista social definido en su categoría de producto, " +"compruebe si ha instalado un plan de cuentas" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "_Apply" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "Parámetros de configuración de existencias" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "stock.history" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "desconocido" + +#~ msgid "Asset Type" +#~ msgstr "Tipo de activo" + +#~ msgid "Deferred Revenue Type" +#~ msgstr "Tipo de ingreso diferido" diff --git a/addons/stock_account/i18n/es_EC.po b/addons/stock_account/i18n/es_EC.po new file mode 100644 index 00000000..cb9f28d0 --- /dev/null +++ b/addons/stock_account/i18n/es_EC.po @@ -0,0 +1,844 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Ana Juaristi , 2015 +# Antonio Trueba, 2016 +# Rick Hunter , 2015-2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2016-02-22 05:00+0000\n" +"Last-Translator: Rick Hunter \n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/odoo/odoo-9/" +"language/es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "Nº de productos" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Propiedades de cuenta de existencias" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Contabilidad" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Información contable" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "El id. activo no se ha establecido en el contexto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" +"Permite configurar valoraciones de inventario en los productos y categorías " +"de producto." + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Precio medio" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "Puede ser tratado como gasto" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "Cambiar precio" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "Cambiar precio estándar" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" +"Seleccione una fecha en el pasado para obtener el inventario desde esa fecha." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" +"Escriba la fecha de contabilidad en la que quiera valorar los movimientos de " +"stock creados por el inventario en vez de la predeterminada (la fecha de fin " +"de inventario)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "Escoja su fecha" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" +"Coeficiente para convertir la unidad de medida predeterminada (UdM) en la " +"unidad de venta UdV = UdM * coeff " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Compañía" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "Calculado desde el precio promedio" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Coste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "Método de coste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +#, fuzzy +msgid "Counter-Part Account" +msgstr "Cuenta de salida de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Fecha" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "Fecha de contabilización forzoza" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" +"Si el precio de coste se incrementa, la cuenta la variación de existencias " +"irá al debe y la cuenta de salida de existencias irá al haber con el valor = " +"(diferencia de cantidad * cantidad disponible).\n" +"Si el precio de coste se reduce, la cuenta la variación de existencias irá " +"al haber y la cuenta de entrada de existencias irá al debe." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" +"Si la valoración perpetua se activa para un producto, el sistema creará " +"automáticamente asientos contables correspondientes a movimientos de stock, " +"con el precio de producto indicado según el \"método de coste\". La cuenta " +"de valoración de inventario establecida en la categoría de producto " +"representará la cuenta de inventario actual, y las cuentas de entrada y " +"salida de mercancía contendrán las contrapartidas de movimiento para los " +"productos entrantes y salientes." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" +"Si la valoración perpetua se activa para un producto, el sistema creará " +"automáticamente asientos contables correspondientes a movimientos de stock, " +"con el precio de producto indicado según el \"método de costo\". La cuenta " +"de valoración de inventario establecida en la categoría de producto " +"representará la cuenta de inventario actual, y las cuentas de entrada y " +"salida de mercancía contendrán las contrapartidas de movimiento para los " +"productos entrantes y salientes." + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "Incluye costos adicionales en el cálculo del costo del producto" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" +"Instala el módulo que permite imputar costes en destino en los Movimientos " +"de Inventario, y separarlos entre los diferentes productos." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventario" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Ubicaciones de inventario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "Valoración del inventario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "Valor del inventario" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "Inventario a la fecha" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea factura" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "Costes en destino" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Ubicación" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "Gestionar valoración de inventario y métodos de coste" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Movimiento" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "¡No hay diferencias entre el precio estándar y el nuevo precio!" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "Sin costos adicionales" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "Fecha de la operación" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "Períodico (manual)" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "Valoración de inventario periódico (recomendado)" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "Perpetuo (automático)" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" +"Valoración de inventario perpetuo (movimientos de inventario generan " +"asientos contables)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Precio" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "Tiempo de alerta producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "Tiempo de vida producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "Cantidad producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "Tiempo eliminación producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Plantilla producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "Duración del producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Quants" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "Precio real" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "Obtener el valor de inventario" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "Recupera la actual valoración de inventario." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "Nº de serie" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "Precio estándar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Texto original" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" +"Especifique aquí una unidad de medida si la factura se realizará en otra " +"unidad distinta a la del inventario. Déjelo vacío para usar la de por " +"defecto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" +"Especifica si el producto puede ser seleccionado como un gasto de RRHH." + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Precio estándar" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "Precio estándar cambiado" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" +"Precio estándar: El precio de costo se actualiza manualmente al final de un " +"período determinado (por lo general una vez al año).\n" +"Precio medio: El precio de costo se recalcula en cada movimiento de " +"inventario entrante y se utiliza para la valoración del producto.\n" +"Precio Real: El precio de costo es el precio del último producto de salida " +"(se puede utilizar en caso de pérdida de inventario, por ejemplo)." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" +"Precio estándar: El precio de costo se actualiza manualmente al final de un " +"período determinado (por lo general una vez al año).\n" +"Precio medio: El precio de costo se recalcula en cada movimiento de " +"inventario entrante y se utiliza para la valoración del producto.\n" +"Precio Real: El precio de costo es el precio del último producto de salida " +"(se puede utilizar en caso de pérdida de inventario, por ejemplo)." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "Cuenta de entrada de existencias" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "Diario de existencias" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Movimiento de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "Cuenta de salida de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Cuenta de valoración de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Cuenta de valoracion de existencias (entrada)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Cuenta de valoracion de existencias (salida)" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "Valor de inventario para una fecha" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Plantillas para el plan contable" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "Valor total" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "Unidad de medida -> Coeficiente UdV" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "Unidad de venta" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para una valoración en tiempo real del inventario. Cuando está " +"establecido en una ubicación virtual (no de tipo interno), esta cuenta se " +"usará para mantener el valor de los productos que son movidos de una " +"ubicación interna a esta ubicación, en lugar de la cuenta de salida de " +"existencias genérica establecida en el producto. No tiene efecto para " +"ubicaciones internas." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para una valoración en tiempo real del inventario. Cuando está " +"establecido en una ubicación virtual (no de tipo interno), esta cuenta se " +"usará para mantener el valor de los productos que son movidos fuera de la " +"ubicación a una ubicación interna, en lugar de la cuenta de salida de " +"existencias genérica establecida en el producto. No tiene efecto para " +"ubicaciones internas." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" +"Cuando un nuevo nº de serie se asigna, éste es el número de días antes de " +"que se notifique una alerta." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" +"Cuando un nuevo nº de serie se asigna, éste es el número de días antes de " +"que los bienes se conviertan en peligrosos y no deban ser consumidos." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" +"Cuando un nuevo nº de serie se asigna, éste es el número de días antes de " +"que los bienes deban eliminarse del stock." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" +"Cuando un nuevo nº de serie se asigna, éste es el número de días antes de " +"que los bienes se empiecen a deteriorar, sin ser peligroso aún." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" +"Cuando se realiza una valoración de inventario en tiempo real, la " +"contrapartida para todos los movimientos de entrada serán imputados en esta " +"cuenta, a menos que se haya establecido una cuenta de valoración específica " +"en la ubicación fuente. Éste es el valor por defecto para todos los " +"productos en esta categoría. También se puede establecer directamente en " +"cada producto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" +"Cuando se realiza una valoración de inventario en tiempo real, la " +"contrapartida para todos los movimientos de entrada serán imputados en esta " +"cuenta, a menos que se haya establecido una cuenta de valoración específica " +"en la ubicación fuente. Cuando no se establece en el producto, se usa la " +"establecida en la categoría." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" +"Cuando se realiza una valoración de inventario en tiempo real, la " +"contrapartida para todos los movimientos de salida serán imputados en esta " +"cuenta, a menos que se haya establecido una cuenta de valoración específica " +"en la ubicación destino. Éste es el valor por defecto para todos los " +"productos en esta categoría. También se puede establecer directamente en " +"cada producto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" +"Cuando se realiza una valoración de inventario en tiempo real, la " +"contrapartida para todos los movimientos de salida serán imputados en esta " +"cuenta, a menos que se haya establecido una cuenta de valoración específica " +"en la ubicación destino. Cuando no se establece en el producto, se usa la " +"establecida en la categoría." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Al hacer la valoración de inventario en tiempo real, éste es el diario " +"contable donde los asientos se crearán automáticamente cuando los " +"movimientos de existencias se procesen." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Cuando está activada una valoración de inventario en tiempo real de un " +"producto, esta cuenta contiene el valor actual de los productos." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "Asistente que abre la tabla de histórico de valoración de inventario" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" +"Usted no tiene ningún diario de inventario definido en la categoría del " +"producto, compruebe si ha instalado un plan de cuentas." + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, fuzzy, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" +"Usted no tiene ningún diario de inventario definido en la categoría del " +"producto, compruebe si ha instalado un plan de cuentas." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "_Aplicar" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "Parámetros de configuración de existencias" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "Inventario Histórico" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "desconocido" + +#~ msgid "Asset Type" +#~ msgstr "Tipo de ingreso" + +#~ msgid "Deferred Revenue Type" +#~ msgstr "Tipo de cuenta de ingresos a plazos" diff --git a/addons/stock_account/i18n/es_MX.po b/addons/stock_account/i18n/es_MX.po new file mode 100644 index 00000000..d17f3fd8 --- /dev/null +++ b/addons/stock_account/i18n/es_MX.po @@ -0,0 +1,988 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Cécile Collart , 2021 +# Braulio D. López Vázquez , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Braulio D. López Vázquez , 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr " Costo del producto actualizado de %(previous)s a %(new_cost)s." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" +"%(user)s cambió el costo de %(previous)s a %(new_price)s - %(product)s" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" +"%(user)s cambió la valoración de existencias de %(previous)s a %(new_value)s" +" - %(product)s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" +")\n" +" Utilice un valor agregado negativo para registrar una disminución en el valor del producto." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "Configure otras cuentas de entrada / salida" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Plantilla de plan de cuentas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Movimiento de cuenta" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Propiedades de cuenta de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Fecha contable" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Asientos contables" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Información contable" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "Agregar valoración manual" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" +"Agregue un costo adicional (transporte, aduanas, ...) en el valor del " +"producto." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "Valor agregado" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "Valor agregado" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Afecte los costos de aterrizaje en las operaciones de recepción y divídalos " +"entre productos para actualizar su precio de costo." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatizado" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Coste promedio (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"No se puede encontrar una cuenta de entrada de existencias para el producto " +"%s. Debe definir una en la categoría de producto o en la ubicación antes de " +"procesar esta operación." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"No se puede encontrar una cuenta de salida de existencias del producto %s. " +"Debe definir una en la categoría de producto o en la ubicación antes de " +"procesar esta operación." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Cambiar el método de costo es un cambio importante que repercutirá en su " +"valoración de inventario. ¿Seguro que desea efectuar tal cambio?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Empresa" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Ajustes de configuración" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Error de configuración. Configure la cuenta de diferencias de precio en el " +"producto o su categoría para procesar esta operación." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Método de costo" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" +"Cambio de método de costo para la categoría de producto %s: de %s a %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Cuenta contraparte" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" +"Los artículos del diario de contraparte para todos los movimientos de existencias entrantes se contabilizarán en esta cuenta, a menos que haya una cuenta de valoración específica.\n" +" establecida en la ubicación de origen. Este es el valor predeterminado para todos los productos de esta categoría. También se puede configurar directamente en cada producto." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Divisa" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "Cantidad actual" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Valor actual" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Fecha" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Fecha en la que se crearán los asientos contables en caso de valoración de " +"inventario automatizada. Si está vacío, se usará la fecha de inventario." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" +"Unidad de medida predeterminada utilizada para todas las operaciones de " +"existencias." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Descripción" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Documentación" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" +"Debido al cambio en la categoría del producto ( de %s a %s), el método de " +"costo ha cambiado para la plantilla del " +"producto %s: de %s a %s." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "Primeras entradas, primeras salidas (PEPS)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Agrupar por..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "Tiene movimientos contables" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventario" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Ubicaciones de inventario" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Valoración del inventario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "Es un línea anglosajona" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Diario" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Asiento contable" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Apunte contable" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Costos en destino" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "Vinculado a" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manual" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "Valoración manual de existencias: %s." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "Valoración manual de existencias: sin motivo." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manual: Los asientos contables de valoración del inventario no se publican automáticamente.\n" +" Automatizado: Se crea automáticamente un asiento contable para evaluar el inventario cuando un producto entra o sale de la empresa.\n" +" " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "Nuevo valor" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "Nuevo valor por cantidad" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "Valor a la mano" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Otra información" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" +"Por favor, defina una cuenta de gasto para este producto: \"%s\" (id:%d) - o" +" para su categoría: \"%s\"." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Movimientos de producto (Línea de movimiento de existencias)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "Revaluación de producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "Valor del producto modificado manualmente (de %s a %s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Cantidad" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "Cantidad Svl" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Quants" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Motivo" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "Razón de la reevaluación" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "Producto relacionado" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Cant. restante" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Valor restante" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Recolección de devolución" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Línea de recolección de devolución" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "Reevaluación de %s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "Reevaluar" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Seleccione la categoría para el producto actual" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Precio estándar" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Precio estándar: Los productos se valoran según su costo estándar definido en el producto.\n" +" Costo promedio (AVCO): Los productos se valoran según su costo promedio ponderado\n" +" Primeras entradas, primeras salidas (PEPS): Los productos se valoran dando por hecho que los primeros en entrar en la empresa son también los primeros en salir.\n" +" " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Cuenta de entrada de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Diario de existencias" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Movimiento de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Cuenta de salida de existencias" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Historial de cantidad de existencias" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Reporte de reabastecimiento de existencias" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Valoración de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Cuenta de valoración de existencias" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Cuenta de valoración de existencias (entrada)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Cuenta de valoración de existencias (salida)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "Capa de valoración de existencias" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "Campo técnico utilizado para recuperar las líneas anglosajonas." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" +"Las cuentas de entrada y/o salida de existencias no pueden ser las mismas " +"que la cuenta de valoración de existencias." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" +"La acción conduce a la creación de una entrada de diario, para la que no " +"tiene derechos de acceso." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" +"El valor agregado no tiene ningún impacto en la valoración de existencias" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Las líneas de movimiento no están en un estado consistente: algunas están " +"entrando y otras están saliendo de la empresa." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Las líneas de movimiento no están en estados consistentes: están llevando a " +"cabo una operación interna de la empresa en un solo paso mientras deberían " +"pasar por la ubicación de tránsito interno de la empresa." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Las líneas de movimiento no se encuentran en estados consistentes: no " +"comparten la misma empresa de origen o de destino." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"No hay capas de valoración. Las capas de valoración se crean cuando algunos " +"movimientos de productos deberían afectar la valoración de existencias." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Valor total" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Traslado" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Activar una disminución de la cantidad entregada/recibida en la orden de " +"venta/compra asociada" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Valor unitario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Unidad de medida" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "Actualizar cantidades en órdenes de venta o compra" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para una valoración en tiempo real del inventario. Cuando está " +"establecido en una ubicación virtual (no de tipo interno), esta cuenta se " +"usará para mantener el valor de los productos que son movidos de una " +"ubicación interna a esta ubicación, en lugar de la cuenta de salida de " +"existencias genérica establecida en el producto. No tiene efecto para " +"ubicaciones internas." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para una valoración en tiempo real del inventario. Cuando está " +"establecido en una ubicación virtual (no de tipo interno), esta cuenta se " +"usará para mantener el valor de los productos que son movidos fuera de la " +"ubicación a una ubicación interna, en lugar de la cuenta de salida de " +"existencias genérica establecida en el producto. No tiene efecto para " +"ubicaciones internas." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Valoración" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" +"Cambio de método de valoración para categoría de producto %s: de %s a %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "Valor Svl" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Advertencia" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Cuando la valoración de inventario automatizada está habilitada en un " +"producto, esta cuenta mantendrá el valor actual de los productos." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"Al realizar una valoración de inventario automatizada, los apuntes de diario contraparte para todos los movimientos de existencias salientes se registrarán en esta cuenta,\n" +" a menos que haya una cuenta de valoración específica establecida en la ubicación de destino. Este es el valor predeterminado para todos los productos de esta categoría.\n" +" También se puede configurar directamente en cada producto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Al realizar una valoración de inventario automatizada, este es el diario " +"contable en el que las entradas se contabilizarán automáticamente cuando se " +"procesen los movimientos de existencias." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" +"Modelo de asistente para reevaluar un inventario de existencias para un " +"producto" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "No puede revaluar un producto con un método de costo estándar." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "No puede reevaluar un producto con inventario vacío o negativo." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" +"No puede actualizar el costo de un producto en la valoración automatizada, " +"ya que conduce a la creación de un asiento de diario, para el cual no tiene " +"los derechos de acceso." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"No tiene ninguna cuenta de valoración de entrada definida en su categoría de" +" producto. Debe definir una antes de procesar esta operación." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"No tiene ningún diario de existencias definido en su categoría de producto, " +"verifique si ha instalado un plan de cuentas." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"No tiene ninguna cuenta de valoración de existencias definida en su " +"categoría de producto. Debe definir una antes de procesar esta operación." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" +"Debe establecer una cuenta de contraparte en su categoría de producto." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "por" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "para" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "ubicaciones" diff --git a/addons/stock_account/i18n/es_PE.po b/addons/stock_account/i18n/es_PE.po new file mode 100644 index 00000000..281bcb0e --- /dev/null +++ b/addons/stock_account/i18n/es_PE.po @@ -0,0 +1,748 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Carlos Eduardo Rodriguez Rossi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2016-06-21 14:56+0000\n" +"Last-Translator: Carlos Eduardo Rodriguez Rossi \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-9/language/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Contabilidad" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Información Contable" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "ID Activo no establecido en este Contexto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Precio Promedio" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "Puede ser gastado" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "Cambiar Precio" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "Cambiar Precio Estándar" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" +"Coeficiente para convertir la Unidad de Medida por defecto a Unidad de Venta " +"uos = uom * coeff" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Compañia" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Costo" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Fecha" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Agrupado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventario" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Detalle de Factura" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Lugar" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Movimiento" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Precio" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Categoría de Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "Cantidad de Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Plantilla de Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "Precio Estándar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Fuente" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" +"Especificar aquí una unidad de medidad si la facturación se hace en otra " +"unidad de medidad que el inventario. Deje en blanco para usar la unidad de " +"medida por defecto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Precio Estándar" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Movimiento de Stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Plantillas para Plan de Cuentas" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "Valor Total" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "Unidad de Medida -> Coeficiente UOS" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "Unidad de Venta" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "desconocido" + +#~ msgid "Asset Type" +#~ msgstr "Tipo de Activo" + +#~ msgid "Deferred Revenue Type" +#~ msgstr "Tipo de Ingreso Diferido" diff --git a/addons/stock_account/i18n/es_PY.po b/addons/stock_account/i18n/es_PY.po new file mode 100644 index 00000000..f71dcd16 --- /dev/null +++ b/addons/stock_account/i18n/es_PY.po @@ -0,0 +1,736 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2015-10-01 09:22+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/odoo/odoo-9/" +"language/es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Contabilidad" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Información contable" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Precio promedio" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Compañía" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Costo" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Fecha" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Agrupado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea factura" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Lugar" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Asiento" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Precio" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Categoría de Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "Precio estándar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Precio estándar" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Movimiento stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Plantillas para el plan contable" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "Unidad de Venta" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "desconocido" diff --git a/addons/stock_account/i18n/es_VE.po b/addons/stock_account/i18n/es_VE.po new file mode 100644 index 00000000..368883ab --- /dev/null +++ b/addons/stock_account/i18n/es_VE.po @@ -0,0 +1,736 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2016-05-15 18:50+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/odoo/odoo-9/" +"language/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "Nº de productos" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Contabilidad" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Precio medio" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Compañía" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Coste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "Método de coste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Fecha" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea factura" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Lugar" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Movimiento" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Precio" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "Tiempo de alerta producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "Tiempo de vida producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "Tiempo eliminación producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "Tiempo de uso producto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "Precio estándar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Precio estándar" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Movimiento stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "Unidad de venta" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "desconocido" diff --git a/addons/stock_account/i18n/et.po b/addons/stock_account/i18n/et.po new file mode 100644 index 00000000..eb8fd373 --- /dev/null +++ b/addons/stock_account/i18n/et.po @@ -0,0 +1,972 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Rivo Zängov , 2020 +# Martin Trigaux, 2020 +# Arma Gedonsky , 2020 +# Ahto Reinaru , 2020 +# Egon Raamat , 2020 +# Marek Pontus, 2020 +# Martin Aavastik , 2020 +# Algo Kärp , 2020 +# Triine Aavik , 2021 +# Piia Paurson , 2021 +# Eneli Õigus , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Eneli Õigus , 2021\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "Toote kulu uuendatud %(previous)sst %(new_cost)sni." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "%(user)s muutis kulu %(previous)sst %(new_price)sni - %(product)s" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" +"%(user)s muutis laohindamist %(previous)sst %(new_value)sni - %(product)s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" +")\n" +" kasutage negatiivset lisatud väärtust salvestamaks toote väärtuse vähenemine" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "Määra teised sisend/väljund kontod spetsiifilistele " + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Konto tabeli mall" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Laoliikumine" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Laokonto seaded" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Raamatupidamiskande kuupäev" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Raamatupidamiskanded" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Raamatupidamise informatsioon" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "Lisage manuaalne hindamine" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "Lisage lisakulu (transport, toll, ...) toote väärtusele" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "Lisatud väärtus" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "Lisatud väärtus" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Mõjutavad maaletoomistegevuse kulusid ja jagavad need toodete vahel, et " +"uuendada nende sisseostuhinda. " + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatiseeritud" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Keskmine kulu (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Tühista" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Ei leia tootele %s lao sisendkontot. Enne selle toimingu teostamist peate " +"määratlema tootekategooria või asukoha." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Ei leia tootele %s lao väljundkontot. Enne selle toimingu teostamist peate " +"määratlema tootekategooria või asukoha." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Kulude meetodi muutmine on oluline muudatus, mis mõjutab varude hindamist. " +"Kas olete kindel, et soovite seda muuta?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Ettevõte" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Seadistused" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Seadistamise viga. Selle toimingu jaoks konfigureerige toote või selle " +"kategooria hinnavahe konto." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Kuluarvutusmeetod" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "Kulumeetodi muudatus tootekategoorias: %s: enne %s pärast %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Vastaspoole konto" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" +"Kõik andmikku sissetulevad varud kantakse sellele kontole, kui just pole kindlat hindamise kontot\n" +" määratud allika asukohas. See on vaikimisi väärtus kõigile toodetele selles kategoorias. Seda saab määrata ka igal tootel eraldi." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Valuuta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "Praegune kogus" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Praegune väärtus" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Kuupäev" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Raamatupidamiskannete kuupäev automatiseeritud laovarude hindamise korral. " +"Kui see on tühi, kasutatakse inventuuri kuupäeva." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Vaikimisi mõõtühikut kasutatakse kõigis laooperatsioonides." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Kirjeldus" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentatsioon" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" +"Tootekategooria muudatuse tõttu (%s - %s), kulumeetod on muutunud toote " +"mallis %s: enne %s pärast %s." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "Lihtjärjekorra meetod (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Rühmita ..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "On konto liikumisi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Ladu" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Ladude asukohad" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Laovarude hindamine" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "On anglosaksi rida" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Andmik" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Andmiku kanne" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Andmiku kanderida" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Maaletoomise kulud" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud (kelle poolt)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "Seotud" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Käsitsi" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "Manuaalne laoseisu hindamine: %s." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "Manuaalne laoseisu hindamine: põhjust ei ole antud." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manuaalne: lao hindamiseks tehtud raamatupidamiskandeid ei postitata automaatselt.\n" +" Automatiseeritud: lao hindamiseks tehakse raamatupidamiskanne automaatselt, kui toode siseneb või väljub ettevõttest." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "Uus väärtus" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "Uus väärtus koguse alusel" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "Laos oleva koguse väärtus" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Muu info" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" +"Palun määrake kulukonto sellele tootele: \"%s\" (id:%d) - või selle " +"kategooriale: \"%s\"." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Toode" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Toote kategooria" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Toote liikumised" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "Toote ümberhindamine" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Toote mall" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "Toote väärtus manuaalselt muudetud (enne %s pärast %s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Kogus" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "Kogus Svl" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Koguseosad" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Põhjus" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "Ümberhindamine põhjus" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "Seotud toode" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Järelejäänud kogus" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Järelejäänud väärtus" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Tagastuskorje" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Tagasta korjerida" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "Ümberhindamine %s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "Hinda ümber" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Valige kategooria antud tootele" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Standardhind" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Standardhind: tooteid hinnatakse nende standardmaksumuse järgi.\n" +" Keskmine maksumus (AVCO): tooteid hinnatakse kaalutud keskmise maksumusega.\n" +" Lihtjärjekorrameetod (FIFO): tooteid hinnatakse eeldusel, et esimesena sisenenu väljub ka esimesena." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Lao sisendkonto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Laoandmik" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Laoliikumine" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Lao väljundkonto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Lao koguse ajalugu" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Lao juurdetellimise aruanne" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Lao hindamine" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Lao hindamise konto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Laovarude konto (sissetulev)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Laovarude konto (väljaminev)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "Lao hindamise kiht" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "Tehniline väli, mida kasutatakse anglo-saksi ridade hankimisel." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" +"Lao sisend- ja/või väljundkonto ei tohi olla sama kui laohindamise konto." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" +"Selle toimingu tulemusel luuakse andmiku kanne, millele teil pole " +"juurdepääsuõigusi." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "Lisatud väärtusel ei ole mingit mõju lao hindamisele." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Liigutatavad read ei ole järjepidevad: mõned sisenevad ning mõned lahkuvad " +"ettevõttest." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Liigutatavad read ei ole järjepidevad: nad teevad omavahel koostööd ühe " +"sammuna kui nad peaksid minema läbi ettevõttesisese transiidipunkti." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Liigutatavad read ei ole järjepidevad: nad ei jaga sama päritolu- või " +"sihtfirmat." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"Hindamiskihte pole. Hindamiskihid luuakse, kui mõni toote liikumine peaks " +"mõjutama lao hindamist." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Koguväärtus" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Siirded" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Käivita saadetud/vastuvõetud koguse vähendamine seotud " +"müügitellimuse/ostutellimusega." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Ühiku väärtus" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Mõõtühik" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "Uuenda koguseid müügi-/ostutellimusel" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Kasutatakse reaalajas varude hindamiseks. Kui on määratud virtuaalne asukoht" +" (mitte sisemine tüüp), siis seda kontot kasutatakse toodete väärtuste " +"hoidmiseks, mis liiguvad ühest sisemisest asukohast teise, tavapärase lao " +"toote väljamineku konto asemel. See ei mõjuta sisemisi asukohti." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Kasutatakse reaalajas varude hindamiseks. Kui on määratud virtuaalne asukoht" +" (mitte sisemine tüüp), siis seda kontot kasutatakse toodete väärtuste " +"hoidmiseks, mis liiguvad ühest välja teise sisemisse asukohta, tavapärase " +"lao toote väljamineku konto asemel. See ei mõjuta sisemisi asukohti." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Hindamine" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "Hindamise meetodi muudatus tootekategoorias %s: enne %s pärast %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Väärtus" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "Väärtus Svl" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Hoiatus" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Kui automatiseeritud laovarude hindamine on sellel tootel lubatud, siis see " +"konto hoiab praegust toote väärtust." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"Automaatsel varude hindamisel kantakse kõik andmikust väljaminevad varud sellele kontole\n" +" kui just pole kindlat hindamise kontot määratud allika asukohas See on vaikimisi väärtus kõigile toodetele selles kategoorias.\n" +" Seda saab määrata ka igal tootel eraldi." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Automaatse varude hindamise raamatupidamisandmik, mille kanded tehakse " +"automaatselt kui lao liikumised on tehtud." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "Mudel toote laovaru ümberhindamiseks" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "Te ei saa ümber hinnata standard kuluhinna meetodiga toodet." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "Te ei saa ümber hinnata tühja või negatiivset laoseisu." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" +"Toote maksumust ei saa automaatse hindamise kaudu värskendada, kuna see viib" +" andmiku kande loomiseni, millele teil pole juurdepääsuõigusi." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Teil ei ole ühtegi sisendkontot määratud tootekategooriale. Jätkamiseks " +"peate määrama vähemalt ühe. " + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Tootekategoorias ei ole lao andmikku defineeritud. Palun kontrollige, kas " +"olete lisanud kontoplaani." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Teil ei ole ühtegi lao andmikku defineeritud tootekategooriale. Jätkamiseks " +"peate defineerima vähemalt ühe." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "Oma tootekategooria jaoks peate määrama vaste konto." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr " " + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "for" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "asukohtadele" diff --git a/addons/stock_account/i18n/eu.po b/addons/stock_account/i18n/eu.po new file mode 100644 index 00000000..25088e49 --- /dev/null +++ b/addons/stock_account/i18n/eu.po @@ -0,0 +1,909 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2021 +# oihane , 2021 +# Esther Martín Menéndez , 2021 +# ibinka lete , 2021 +# Eneko , 2021 +# Mikel Lizarralde , 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 , 2021 +# Iñaki Ibarrola , 2021 +# Victor Laskurain , 2021 +# Maialen Rodriguez , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Maialen Rodriguez , 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Kontabilitate data" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Kontabilitate sarrerak" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Kontabilitate informazioa" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Ezeztatu" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Enpresa" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurazio ezarpenak" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Noiz sortua" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Moneta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Data" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Deskribapena" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentazioa" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Taldekatu..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inbentarioa" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Inbentario kokalekuak" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Inbentario balorazioa" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Egunkaria" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Egunkari-sarrera" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Egunkari-artikulua" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Azkenengoz eguneratu zuena" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Azken eguneraketa noiz" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Eskuz" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Bestelako Informazioa" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produktua" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Produktu Kategoria" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Produktuaren txantiloia" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Kopurua" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Quantak" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Arrazoia" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Itzulpen albarana" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Prezio estandarra " + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Izakinen mugimendua" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Stock kopuru historikoa" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Transferetzia" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Neurketa unitatea" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Balioa" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Abisua" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/fa.po b/addons/stock_account/i18n/fa.po new file mode 100644 index 00000000..9dc67a82 --- /dev/null +++ b/addons/stock_account/i18n/fa.po @@ -0,0 +1,905 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# Faraz Sadri Alamdari , 2020 +# Sahar Daraye , 2020 +# Hamed Mohammadi , 2020 +# Mohsen Mohammadi , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Mohsen Mohammadi , 2021\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "قالب درخت حساب" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "جابجایی حساب" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "تاریخ حسابداری" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "ثبت سند های حسابداری" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "اطلاعات حسابداری" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "لغو" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "شرکت" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "تنظیمات پیکربندی" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "حساب طرف حساب" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "ایجاد توسط" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "ارز" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "ارزش کنونی" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "تاریخ" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "توضیحات" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "مستندات" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "گروه‌بندی بر اساس..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "شناسه" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "انبارداری" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "مکان های انبارداری" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "ارزیابی انبار" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "روزنامه" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "ثبت سند روزنامه" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "آیتم روزنامه" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "دستی" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "اطلاعات دیگر" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "محصول" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "دسته بندی محصول" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "قالب محصول" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "تعداد" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "علت" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "تعداد باقی مانده" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "مقدار باقی مانده" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "طبقه بندی برای این محصول انتخاب کنید" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "قیمت استاندارد" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "انتقال موجودی" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "گزارش جایگزینی انبار" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "ارزش کل" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "انتقال" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "ارزش واحد" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "واحد اندازه گیری" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "ارزیابی" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "مقدار" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "هشدار" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/fi.po b/addons/stock_account/i18n/fi.po new file mode 100644 index 00000000..a4d92bd5 --- /dev/null +++ b/addons/stock_account/i18n/fi.po @@ -0,0 +1,913 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Eino Mäkitalo , 2020 +# Tommi Rintala , 2020 +# Martin Trigaux, 2020 +# Kari Lindgren , 2020 +# Miku Laitinen , 2020 +# Jussi Lehto , 2020 +# Svante Suominen , 2020 +# Jarmo Kortetjärvi , 2020 +# Tuomo Aura , 2020 +# Atte Isopuro , 2020 +# Topi Aura , 2020 +# Mikko Närjänen , 2020 +# Tuomas Lyyra , 2020 +# Jussi Heikkilä , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Jussi Heikkilä , 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Tilikarttamalli" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Varastokirjanpidon ominaisuudet" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Kirjauspäivä" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Kirjanpidon merkinnät" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Kirjanpitotiedot" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Peruuta" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Yritys" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguraatioasetukset" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Arvotuskäytäntö" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Vastatili" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Valuutta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Nykyinen arvo" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Päivämäärä" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Kaikkien varastotoimintojen oletusyksikkö." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Kuvaus" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentaatio" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Ryhmittele..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Varasto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Inventaariopaikat" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Varastonarvostus" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Päiväkirja" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Päiväkirjan kirjaus" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Päiväkirjatapahtuma" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Lähetyksen kokonaiskulut" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivitetty" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manuaalinen" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Muut tiedot" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Tuote" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Tuotekategoria" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Tuotteiden siirrot (Stock Move Line)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Tuotemalli" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Määrä" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Määrät" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Syy" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Palauta keräily" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Palauta poimintalinja" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Valitse nykyiselle tuotteelle ryhmä (kategoria)" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Normaalihinta" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Saapuvan varaston tili" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Varastopäiväkirja" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Varastosiirto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Lähtevän varaston tili" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Varastomäärän historia" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Varaston arvostus" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Varaston arvostustili" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Varaston arvostustili (saapuva)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Varaston arvostustili (lähtevä)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Kokonaisarvo" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Siirto" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Mittayksikkö" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Arvostus" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Arvo" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Varoitus" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "kirjoittaja" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "tekijänä" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/fo.po b/addons/stock_account/i18n/fo.po new file mode 100644 index 00000000..cc1db8b3 --- /dev/null +++ b/addons/stock_account/i18n/fo.po @@ -0,0 +1,734 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2016-01-01 14:38+0000\n" +"Last-Translator: Jarnhold Nattestad \n" +"Language-Team: Faroese (http://www.transifex.com/odoo/odoo-9/language/fo/)\n" +"Language: fo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Bókhald" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Strika" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Fyritøka" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Byrjað av" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Byrjað tann" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Dagfesting" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Vís navn" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Bólka eftir" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fakturalinja" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Seinast rættað tann" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Seinast dagført av" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Seinast dagført tann" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Prísur" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Vøra" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Set standard price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "" diff --git a/addons/stock_account/i18n/fr.po b/addons/stock_account/i18n/fr.po new file mode 100644 index 00000000..d38d87f7 --- /dev/null +++ b/addons/stock_account/i18n/fr.po @@ -0,0 +1,1012 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# e2f , 2020 +# Saad Thaifa , 2020 +# bb76cd9ac0cb7e20167a14728edb858b, 2020 +# fr trans , 2020 +# Martin Trigaux, 2020 +# Lionel Sausin , 2020 +# Christophe Dubuit , 2020 +# Xavier Belmere , 2020 +# Aurélien Pillevesse , 2020 +# Laura Piraux , 2020 +# e2f Production , 2020 +# Cécile Collart , 2020 +# Rémi CAZENAVE, 2020 +# Thomas Dobbelsteyn , 2020 +# Marie Willemyns , 2020 +# Olivier ANDRE , 2020 +# a270031086f2a0d3514bc0cb507b48f6, 2020 +# omaodoo , 2020 +# Gilles Mangin , 2020 +# Fernanda Marques , 2020 +# guillaume bauer , 2020 +# Christophe Ricevuto , 2021 +# Thomas Deleval , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Thomas Deleval , 2021\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr " Coût d'article mis à jour de %(previous)s à %(new_cost)s." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "%(user)scoût changé de%(previous)s à %(new_price)s - %(product)s" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" +"%(user)s Valorisation changée de %(previous)s to %(new_value)s - " +"%(product)s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" +")\n" +" Utilisez une valeur ajoutée négative pour enregistrer une diminution de la valeur d'article" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "Définissez un autre comptre d'entrée/source" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Modèle de plan comptable" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Écriture comptable" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Propriétés comptables pour le stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Date comptable" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Écritures comptables" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Informations comptables" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "Valeur Ajoutée" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" +"Ajouter un coût additionnel (transport, douane,...) dans la valeur de " +"l'article." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "Valeur Ajoutée" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "Valeur Ajoutée" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Affecte les prix de revient effectifs pour les transactions reçues et les " +"répartit en fonction des produits pour mettre à jour leur prix coûtant." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatisé" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Coût moyen (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Annuler" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Impossible de trouver un compte d'entrée en stock pour l'article %s. Vous " +"devez en définir un sur la catégorie de produit ou l'emplacement avant " +"d'effectuer cette opération." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Impossible de trouver un compte de stock/production pour l'article %s. Vous " +"devez en définir un dans la catégorie de produit ou l'emplacement avant " +"d'effectuer cette opération." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"La modification de votre méthode de détermination du coût des stocks est un " +"changement important qui influe sur la valorisation de votre inventaire. " +"Voulez-vous vraiment effectuer cette modification ?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Société" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Paramètres de config" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Erreur de configuration. Configurez le compte de différence de prix sur le " +"produit ou sa catégorie pour procéder à l'opération." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Méthode de coût" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" +"Modification de la méthode de coût pour la catégorie de produit %s: de %s à " +"%s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Compte de contrepartie" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" +"Les écritures de contrepartie de tous les mouvements de stock entrants " +"seront passées sur ce compte, sauf si un compte de valorisation est " +"spécifiquement précisé pour l'emplacement d'origine. C'est la valeur par " +"défaut pour tous les articles de cette catégorie. Il est également possible " +"de la préciser directement sur chaque article." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Devise" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "Quantité Actuelle" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Valeur actuelle" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Date" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Date à laquelle les écritures comptables seront créées en cas d'évaluation " +"de stock automatisée. Si la date n'est pas renseignée, la date d'inventaire " +"sera utilisée." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" +"Unité de mesure par défaut utilisée pour toutes les opérations de stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Description" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Documentation" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" +"Du fait d'un changement de catégorie de produit (de %s à %s), la méthode de " +"coût a changé pour le modèle d'article %s: de " +"%s à %s." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "First In First Out (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Regrouper par..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "A des mouvements comptables" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventaire" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Emplacements de l'inventaire" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Valorisation de l'inventaire" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "Est une ligne d'Anglo-Saxon" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Journal" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Pièce comptable" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Écriture comptable" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Coûts logistiques" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "Lié à" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manuel" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "Valorisation manuelle du stock: %s." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "Valorisation manuelle du stock: Aucune raison" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manuel : les écritures comptables pour valoriser l'inventaire ne sont pas publiées automatiquement.\n" +" Automatisé : une écriture comptable est automatiquement créée pour valoriser l'inventaire lorsqu'un produit entre ou sort de l'entreprise.\n" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "Nouvelle valeur" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "Nouvelle valeur par quantité" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "Valeur Stock Disponible" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Autres informations" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" +"Veuillez définir un compte de dépense pour cet article: \"%s\" (id:%d) - ou " +"pour sa catégorie: \"%s\"." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Article" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Catégorie d'article" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Mouvements d'article (Ligne de mouvement de stock)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "Revalorisation de l'article" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Modèle d'article" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "Valeur de l'article modifiée manuellement (de %s à %s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Quantité" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "Svl Quantité" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Quants" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Motif" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "Raison de le revalorisation" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "Article liée" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Qté. restante" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Valeur restante" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Retour à la cueillette" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Ligne de Bon de Retour" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "Revalorisation de %s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "Revaloriser" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Sélectionnez la catégorie de l'article actuel" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Prix standard" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Prix standard : les produits sont valorisés suivant leur coût standard défini sur le produit.\n" +" Coût moyen (AVCO) : les produits sont valorisés selon leur coût moyen pondéré.\n" +" First In First Out (FIFO) : les produits sont valorisés en tenant compte du fait que ceux qui entrent d'abord dans l'entreprise en sortiront les premiers également.\n" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Compte d'entrée en stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Journal de stock" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Stock déplacer" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Compte de sortie de stock" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Historique des quantités en stock" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Rapport de Réapprovisionnements de Stock" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Valorisation de stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Compte de valorisation de stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Compte de valorisation du stock (entrées)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Compte de valorisation des stocks (sortant)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "Couche de valorisation d'inventaire" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "Champ technique utilisé pour récupérer les lignes d'anglo-saxon." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" +"Les comptes d'entrée et/ou de sortie de stock ne peuvent être les mêmes que " +"le compte de valorisation d'inventaire." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" +"L'action entraine la création d'une écriture comptable pour laquelle vous " +"n'avez pas les droits d'accès" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "La valeur ajoutée n'a pas d'impact sur la valorisation du stock" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Les lignes de mouvement ne sont pas cohérentes avec l'état: certaines " +"entrent dans la société et d'autres en sortent." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Les lignes de mouvements ne sont pas cohérentes : déplacement " +"interentreprises en une seule étape au lieu de passer par le lieu de transit" +" interentreprises." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Les lignes de mouvements ne sont pas cohérentes : elles ne partagent pas la " +"même entreprise d'origine ou de destination." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"Il n'y a pas de couche de valorisation. Les couches de valorisation sont " +"créées quand certains mouvements d'articles impactent la valorisation " +"d'inventaire." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Valeur Totale" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Transfert" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Déclencher une réduction de la quantité livrée/reçue dans la commande " +"client/fournisseur associée" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Valeur unitaire" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Unité de mesure" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "Mettre à jour les quantité sur le devis/bon de commande fournisseur" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Utilisé pour la valorisation de l'inventaire en temps réel. Quand il mis sur" +" un emplacement virtuel (type autre que \"Interne\"), ce compte sera utilisé" +" pour enregistrer la valeur des articles qui ont été déplacés depuis un " +"emplacement interne vers cet emplacement, à la place du compte générique de " +"stock de sortie décrit dans l'article. Ceci n'a pas d'effet pour les " +"emplacements internes." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Utilisé pour la valorisation de l'inventaire en temps réel. Lorsqu'on le " +"définit sur un emplacement virtuel, ce compte est utilisé pour valoriser les" +" articles qui sont déplacés de cet emplacement à un emplacement interne, à " +"la place du compte de sortie de stock générique défini sur l'article. Ceci " +"est sans effet sur les emplacements internes." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Valorisation" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" +"La méthode de valorisation de la catégorie d'articles %s a changé: de %s à " +"%s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Valeur" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "Valeur Svl" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Avertissement" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Quand la valorisation d'inventaire automatique est activée sur un article, " +"ce compte contient la valeur actuelle des articles." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"Quand la valorisation d'inventaire est autmatique, les entrées comptables de contre-partie pour les sorties de stock seront postées dans ce compte,\n" +" à moins qu'un compte de valorisation spécifique ne soit indiqué sur l'emplacement de destination. C'est la valeur par défaut pour tous les articles de cette catégorie.\n" +" Elle peut aussi être spécifiée directement sur chaque article." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Quand la valorisation d'inventaire est automatique, c'est le journal " +"comptable dans lequel les entrées seront automatiquement postées lorsque les" +" mouvements de stock seront réalisés." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "Modèle d'assistant pour revaloriser un inventaire pour un article" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" +"Vous ne pouvez pas revaloriser un article avec la méthode de cout standard" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" +"Vous ne pouvez pas revaloriser un article avec un stock nul ou négatif" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" +"Vous ne pouvez pas modifier le coût d'un article en valorisation automatique" +" car cela entraîne une écriture comptable, pour laquelle vous n'avez pas de" +" droits d'accès" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Vous n'avez pas de compte d'entrée de valorisation définit sur la catégorie " +"d'article. Vous devez en définir un avant de réaliser l'opération." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Vous n'avez pas de journal de stock défini pour votre catégorie d'article, " +"veuillez vérifier si vous avez bien installé un plan comptable." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Vous n'avez aucun compte de valorisation d'inventaire défini dans votre " +"catégorie de produit. Vous devez en définir un avant d'effectuer cette " +"opération." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" +"Vous devez définir un compte contrepartie sur votre catégorie d'articles" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "par" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "pour" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "emplacements" diff --git a/addons/stock_account/i18n/fr_BE.po b/addons/stock_account/i18n/fr_BE.po new file mode 100644 index 00000000..b294c54f --- /dev/null +++ b/addons/stock_account/i18n/fr_BE.po @@ -0,0 +1,735 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2015-11-18 13:41+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/" +"language/fr_BE/)\n" +"Language: fr_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Comptabilité" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Prix moyen" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Société" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Date" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Grouper par" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Ligne de facturation" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Derniere fois mis à jour par" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Dernière mis à jour le" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Endroit" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Produit" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Set standard price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "" diff --git a/addons/stock_account/i18n/fr_CA.po b/addons/stock_account/i18n/fr_CA.po new file mode 100644 index 00000000..d222eb3c --- /dev/null +++ b/addons/stock_account/i18n/fr_CA.po @@ -0,0 +1,736 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Alain Ma , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2016-07-19 02:14+0000\n" +"Last-Translator: Alain Ma \n" +"Language-Team: French (Canada) (http://www.transifex.com/odoo/odoo-9/" +"language/fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Compte Propriétés de stock" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Comptabilité" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Annuler" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Date" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Grouper par" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "Identifiant" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Facture" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "ligne de facturation" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Emplacement" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Produit" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Modèle de produit" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Set standard price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "inconnu" diff --git a/addons/stock_account/i18n/gl.po b/addons/stock_account/i18n/gl.po new file mode 100644 index 00000000..092a4740 --- /dev/null +++ b/addons/stock_account/i18n/gl.po @@ -0,0 +1,735 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2015-10-01 09:22+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Galician (http://www.transifex.com/odoo/odoo-9/language/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Contabilidade" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Información Contable" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Prezo medio" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Compañía" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Creado o" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Data" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Liña de factura" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Lugar" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Movemento" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Prezo" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Produto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "Tempo de alerta do produto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Categoría de Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "Tempo de vida do produto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "Tempo de eliminación do produto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Modelo de Producto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "Tempo de uso do produto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "Prezo estándar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Fonte" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Prezo estándar" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Movemento de stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "descoñecido" diff --git a/addons/stock_account/i18n/gu.po b/addons/stock_account/i18n/gu.po new file mode 100644 index 00000000..d8afdf63 --- /dev/null +++ b/addons/stock_account/i18n/gu.po @@ -0,0 +1,684 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2018 +# Turkesh Patel , 2018 +# Dharmraj Jhala , 2018 +# Divya Pandya , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Divya Pandya , 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:146 +#: code:addons/stock_account/models/product.py:152 +#, python-format +msgid "%s changed cost from %s to %s - %s" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +msgid "Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Archived" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Available Products" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Cancel" +msgstr "રદ કરો" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:510 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:512 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Category" +msgstr "વર્ગ" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:405 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:587 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "પડતર-કિંમત" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Cost Method" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Costing" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__counterpart_account_id_required +msgid "Counter-Part Account Required" +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.product_valuation_action +msgid "Create a new product valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__create_uid +msgid "Created by" +msgstr "બનાવનાર" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__create_date +msgid "Created on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventoy date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__display_name +msgid "Display Name" +msgstr "પ્રદર્શન નામ" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Exhausted Stock" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__id +msgid "ID" +msgstr "ઓળખ" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price__new_price +msgid "" +"If cost price is increased, stock variation account will be debited and stock output account will be credited with the value = (difference of amount * quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.product_valuation_action +msgid "If there are products, you will see its name and valuation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Include landed costs in product cost" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_quantity_history.py:25 +#: model:ir.actions.act_window,name:stock_account.action_stock_inventory_valuation +#: model:ir.actions.act_window,name:stock_account.product_valuation_action +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "બિલ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price____last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__write_date +msgid "Last Updated on" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +msgid "Manual" +msgstr "માર્ગદર્શિકા" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Negative Stock" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:128 +#, python-format +msgid "No difference between the standard price and the new price." +msgstr "" + +#. module: stock_account +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__new_price +msgid "Price" +msgstr "કિંમત" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_procurement_group +msgid "Procurement Group" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +msgid "Product" +msgstr "ઉત્પાદન" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +msgid "Product Category" +msgstr "ઉત્પાદન વર્ગ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__qty_at_date +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Quantity" +msgstr "જથ્થો" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Reference" +msgstr "સંદર્ભ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Retrieve the inventory valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__property_cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_fifo_manual_move_ids +msgid "Stock Fifo Manual Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_fifo_real_time_aml_ids +msgid "Stock Fifo Real Time Aml" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:26 +#: code:addons/stock_account/__init__.py:31 +#: code:addons/stock_account/models/account_chart_template.py:15 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_product_tree2 +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:536 +#, python-format +msgid "" +"The cost of %s is currently equal to 0. Change the cost or the configuration" +" of your product to avoid an incorrect valuation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:358 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:369 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:367 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "To Refund (update SO/PO)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Unit of Measure" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Update Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_product_tree2 +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:246 +#, python-format +msgid "Valuation at date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_value +#: model:ir.model.fields,field_description:stock_account.field_stock_move__value +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_account_aml +msgid "Value" +msgstr "મૂલ્ય" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:404 +#, python-format +msgid "Warning" +msgstr "ચેતવણી" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each" +" product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template__property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set" +" on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template__property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:508 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:130 +#: code:addons/stock_account/models/stock.py:514 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" diff --git a/addons/stock_account/i18n/he.po b/addons/stock_account/i18n/he.po new file mode 100644 index 00000000..1c4ada61 --- /dev/null +++ b/addons/stock_account/i18n/he.po @@ -0,0 +1,946 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# ExcaliberX , 2020 +# Leandro Noijovich , 2020 +# Yihya Hugirat , 2020 +# hed shefetr , 2020 +# דודי מלכה , 2020 +# ZVI BLONDER , 2020 +# Ofir Blum , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Ofir Blum , 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "תבנית לוח חשבונות" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "תנועת חשבון" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "מאפייני חשבון מלאי" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "תאריך ערך" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "רשומות חשבונאיות" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "מידע חשבונאי" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "הוסף עלות נוספת (הובלה, מכס, ...) בערך המוצר." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"להשפיע על נחת עלויות פעולות הקבלה ולפצל אותם בין מוצרים כדי לעדכן את מחיר " +"העלות שלהם." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "אוטומטי" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "עלות ממוצעת " + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "בטל" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"לא ניתן למצוא חשבון קלט מלאי עבור המוצר %s. עליך להגדיר אחד בקטגוריה של " +"המוצר, או במיקום, לפני עיבוד פעולה זו." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"לא ניתן למצוא חשבון פלט מלאי עבור המוצר %s. עליך להגדיר אחד בקטגוריה של " +"המוצר,או במיקום, לפני עיבוד פעולה זו." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"שינוי שיטת העלות שלך הוא שינוי חשוב שישפיע על הערכת שווי המלאי שלך. האם אתה " +"בטוח שברצונך לבצע שינוי זה?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "חברה" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "הגדר הגדרות" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"שגיאת תצורה. אנא הגדר את חשבון ההפרש במחיר במוצר או בקטגוריה שלו כדי לבצע את" +" הפעולה." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "שיטת התמחור" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "שינוי שיטת תמחיר עבור קטגוריית מוצרים %s: מ %s ל %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "חשבון העמית" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "נוצר על-ידי" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "מטבע" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "תאריך" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"תאריך שבו שהרישומים החשבונאיים נוצרו במקרה של הערכת שווי מלאי אוטומטית. אם " +"ריק, תאריך המלאי יהיה בשימוש." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "יחידת מידה ברירת מחדל המשמשת לביצוע כל פעולות המלאי." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "תיאור" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "הצג שם" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "תיעוד" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" +"עקב שינוי קטגוריית המוצר (מ-%s ל %s), שיטת התמחור השתנתה עבור תבנית מוצר %s:" +" מ %s ל %s." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "ראשון נכנס ראשון יוצא (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "קבץ לפי..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "יש לו תנועות חשבון" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "תעודה מזהה" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "מלאי" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "איתורי מלאי" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "הערכת שווי המלאי" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "יומן" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "פקודת יומן" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "פקודת יומן" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "עלויות הוצאות הובלה" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "שינוי אחרון ב" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על-ידי" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "עדכון אחרון ב" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "מקושר ל" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "ידני" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"ידני: הרישומים החשבונאיים להערכת המלאי אינם מתפרסמים באופן אוטומטי.\n" +"אוטומטי: רישום חשבונאי נוצר באופן אוטומטי כדי להעריך את המלאי כאשר מוצר נכנס או עוזב את החברה." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "מידע נוסף" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" +"אנא הגדר חשבון הוצאה עבור מוצר זה: \"%s\" (מזהה%d) - או עבור הקטגוריה שלו: " +"\"%s\"." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "מוצר" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "קטגורית מוצר" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "תנועות המוצר (תנועת שורת מלאי)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "תבנית מוצר " + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "ערך מוצר שונה באופן ידני (מ %s ל %s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "כמות" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "אנליסטים כמותיים" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "סיבה" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "כמות שנותרה" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "ערך הנותרים" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "החזר ליקוט" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "החזר שורת ליקוט" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "בחר קטגוריה למוצר הנוכחי" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "מחיר סטנדרטי" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"מחיר סטנדרטי: המוצרים מוערכים לפי העלות הסטנדרטית המוגדרת במוצר.\n" +"עלות ממוצעת (AVCO): המוצרים מוערכים בעלות הממוצעת המשוקללת.\n" +"נכנס ראשון יוצא ראשון (FIFO): ההמוצרים מוערכים בהנחה שמי שנכנס לחברה תחילה יעזוב אותה קודם." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "חשבון מלאי נכנס" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "יומן מלאי" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "תנועת מלאי" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "חשבון מלאי יוצא" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "היסטורית כמות מלאי " + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "הערכת שווי מלאי " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "חשבון הערכת שווי מלאי " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "חשבון הערכת שווי מלאי (נכנס)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "חשבון הערכת שווי מלאי (יוצא)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "שכבת הערכת שווי מלאי" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"שורות התנועה אינן נמצאות במצב עקבי: חלקן נכנסות ואחרות עוזבות את החברה." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"שורות התנועה אינן נמצאות במצב עקבי: הן מבצעות תנועה בין חברתית בצעד בודד " +"בזמן שהם צריכות לעבור דרך מיקום מעבר בין חברתי." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "שורות התנועה אין במצב עקבי: הן אינן חולקות את אותו מקור או יעד חברה." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"אין שכבות הערכת שווי. שכבות הערכת שווי נוצרות כאשר תנועות מוצר מסוימות " +"אמורות להשפיע על הערכת שווי המלאי." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "ערך כולל" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "העברה" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "הפעל הפחתה בכמות שנמסרה / שהתקבלה בהזמנת לקוח/ הזמנת רכש" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "ערך יחידה" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "יחידת מידה" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "עדכן כמויות ב- הזמנת לקוח / הזמנת רכש" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"ממשמש עבור הערכת מלאי בזמן אמת. כאשר מוגדר מיקום וירטואלי (סוג שאינו פנימי)," +" חשבון זה משמש להחזיק את ערך המוצרים המועברים ממיקום פנימי למיקום זה, במקום " +"בחשבון המלאי הכללי שנקבע עבור המוצר. אין לכך השפעה על מיקומים פנימיים." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"משמש עבור הערכת מלאי בזמן אמת. כאשר הוא מוגדר במיקום וירטואלי (סוג שאינו " +"פנימי), חשבון זה ישמש לשמירה על ערך המוצרים שמועברים מחוץ למיקום זה ולמיקומו" +" הפנימי, במקום בחשבון הפלט הכללי של המלאי שמוגדר למוצר. אין לכך השפעה על " +"מיקומים פנימיים." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "הערכת שווי" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "שינוי שיטת הערכת שווי עבור קטגוריית מוצרים %s: מ %s ל %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "ערך" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "אזהרה" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"כאשר הערכת מלאי אוטומטית מופעלת על מוצר, חשבון זה יחזיק בשווי הנוכחי של " +"המוצרים." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"אין תיעוד ביומן המלאי המוגדר בקטגוריית המוצרים שלך, בדוק אם התקנת טבלת " +"חשבונות." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"אין לך חשבון הערכה של מלאי המוגדר בקטגוריית המוצרים שלך. עליך להגדיר אחד " +"לפני עיבוד פעולה זו." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "על ידי" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "ל" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/hi.po b/addons/stock_account/i18n/hi.po new file mode 100644 index 00000000..5e43083d --- /dev/null +++ b/addons/stock_account/i18n/hi.po @@ -0,0 +1,900 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Martin Trigaux, 2021\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "रद्द" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/hr.po b/addons/stock_account/i18n/hr.po new file mode 100644 index 00000000..d377d907 --- /dev/null +++ b/addons/stock_account/i18n/hr.po @@ -0,0 +1,910 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Davor Bojkić , 2020 +# Vladimir Olujić , 2020 +# Ivica Dimjašević , 2020 +# Karolina Tonković , 2020 +# Marko Carević , 2020 +# Jasmina Otročak , 2020 +# Mario Jureša , 2020 +# Tina Milas, 2020 +# Bole , 2021 +# Hrvoje Sić , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Hrvoje Sić , 2021\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Predložak kontnog plana" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Postavke računovodstvene zalihe" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Datum knjiženja" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Stavke računovodstva" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Računovodstvo" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatizirano" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Odustani" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Tvrtka" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Postavke" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Metoda troška" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Protukonto" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Valuta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Trenutna vrijednost" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Datum" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Predefinirana mjerna jedinica za sve funkcije zalihe." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Opis" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentacija" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Grupiraj po..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Skladište" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Lokacije inventure" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Popis vrednovanja" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Dnevnik" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Temeljnica" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Stavka dnevnika" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Zavisni troškovi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Promijenio" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Vrijeme promjene" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Ručno" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Ostale informacije" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Proizvod" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Kategorija proizvoda" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Predložak proizvoda" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Količina" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Količine" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Razlog" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Preostala kol." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Preostala vrijednost" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Povrat robe" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Odabir kategorije za trenutni artikl" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Uobičajena cijena" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Konto skladišnog ulaza" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Dnevnik zalihe" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Skladišni prijenos" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Konto skladišnog izlaza" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Vrednovanje skladišta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Konto procjene zaliha" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Konto procjene zaliha (ulaz)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Konto procjene zaliha (izlaz)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Ukupna vrijednost" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Prijenos" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Jedinica mjere" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Vrednovanje" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Vrijednost" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Upozorenje" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "od" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "za" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/hu.po b/addons/stock_account/i18n/hu.po new file mode 100644 index 00000000..7133737b --- /dev/null +++ b/addons/stock_account/i18n/hu.po @@ -0,0 +1,951 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2021 +# krnkris, 2021 +# gezza , 2021 +# Ákos Nagy , 2021 +# Zsolt Godó , 2021 +# Tamás Németh , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Tamás Németh , 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Számlatükör sablon" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Főkönyvi mozgás" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Készletkönyvelés tulajdonságok" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Könyvelés dátuma" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Könyvelési tételek" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Könyvelési információ" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" +"További költségek (szállítás, csomagolás, egyedi költségek stb.) hozzáadása " +"a termék értékéhez." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Befolyásolja a bekerülési költséget bejövő műveleteknél, felosztja a " +"termékek között, hogy frissítse azok költség árát." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatizált" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Áltagköltség (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Visszavonás" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Nem található készletnövekedési főkönyvi számla a termékhez: %s. Meg kell " +"adni egy főkönyvi számlát a termékkategórián vagy a lokáción a művelet " +"feldolgozása előtt." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Nem található készletcsökkenési főkönyvi számla a termékhez: %s. Meg kell " +"adni egy főkönyvi számlát a termékkategórián vagy a lokáción a művelet " +"feldolgozása előtt." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"A költség módszer megváltoztatása jelentős változás, ami hatással van a " +"készletértékre. Biztosan végre akarja hajtani ezt a változást?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Vállalat" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Beállítások módosítása" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Konfiguráció hiba. Állítsa be az ár különbözeti főkönyvi számlát a terméken " +"vagy a termékkategórián a művelet feldolgozásához." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Költségszámítási mód" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Ellenszámla" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Létrehozta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Létrehozva" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Pénznem" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Aktuális érték" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Dátum" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"A dátum, amikorra a könyvelési tételek létrehozásra kerülnek automatikus " +"készletértékelés esetén. Ha üres, akkor a készlet dátuma kerül " +"felhasználásra." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Alapértelmezett mértékegység készletműveletekhez." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Leírás" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentáció" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "First In First Out (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Csoportosítás..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "Azonosító" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Készlet" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Készlet helyek" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Készletértékelés" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Napló" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Könyvelési tétel" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Napló elem" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Bekerülési költségek" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Frissítette" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Frissítve " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manuális" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manuális: a készlet értékeléséhez használt könyvelési tételek nem kerülnek automatikusan könyvelésre.\n" +" Automatikus: egy könyvelési tétel kerül létrehozásra automatikusan a készlet értékelésére, amikor egy termék beérkezik, vagy elhagyja a vállalatot.\n" +" " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Egyéb információ" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Termék" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Termék kategória" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Termékmozgások (Készletmozgás sor)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Terméksablon" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Mennyiség" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Kvantok" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Ok" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Fennmaradó mennyiség" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Maradék érték" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Visszáru" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Visszáru kiszedés sor" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Válasszon ki egy kategóriát ehhez a termékhez." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Alapár" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Alapár: a termékek a termék adatlapon megadott költség áron kerülnek értékelésre.\n" +"Átlagköltség (AVCO): a termékek a súlyozott átlagos költségen kerülnek értékelésre.\n" +"First In First Out (FIFO): a termékek azt feltételezve kerülnek értékelésre, hogy az elsőként beérkező termék hagyja el először a vállalatot." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Készletnövekedés főkönyvi számla" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Készletnapló" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Készletmozgás" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Készletcsökkenés főkönyvi számla" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Készletmennyiség történet" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Készletfeltöltés kimutatás" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Készletértékelés" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Készletkönyvelési számla" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Készletkönyvelési számla (Bejövő)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Készletkönyvelési számla (Kimenő)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"A mozgás sorok nem konzisztensek: van, amelyik beérkezik, van, amelyik " +"elhagyja a vállalatot." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"A mozgás sorok nem konzisztensek: vállalatközi mozgás történik egy lépésben," +" de át kéne menniük a vállalatközi tranzit lokáción." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"A mozgás sorok nem konzisztensek: nem ugyanaz a forrás vagy a cél vállalat." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Összérték" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Transzfer" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Csökkenést vált ki a kiszállított/fogadott mennyiségben a kapcsolódó " +"Értékesítés/Beszerzési rendelésen" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Mértékegység" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Valós idejű készletértékeléshez kerül alkalmazásra. Ha virtuális (nem belső " +"típusú) lokációra van beállítva, akkor ez a főkönyvi számla lesz használva a" +" termék értékének kimutatásához egy belső lokációról erre a lokációra " +"történő készletmozgáskor a termékszinten beállított általános " +"készletcsökkentési főkönyi számla helyett. Ennek nincs hatása a belső típusú" +" lokációkra." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Valós idejű készletértékeléshez kerül alkalmazásra. Ha virtuális (nem belső " +"típusú) lokációra van beállítva, akkor ez a főkönyvi számla lesz használva a" +" termék értékének kimutatásához erről a lokációról egy belső lokációra " +"történő készletmozgáskor a termékszinten beállított általános " +"készletcsökkentési főkönyi számla helyett. Ennek nincs hatása a belső típusú" +" lokációkra." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Értékelés" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Érték" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Figyelmeztetés" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Nincs megadva készletnapló a termékkategórián, ellenőrizze, hogy telepítésre" +" került-e számlatükör." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Nincs megadva készletértékelési főkönyvi számla a termékkategórián. Meg kell" +" adni egyet a művelet feldolgozása előtt." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "által" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/id.po b/addons/stock_account/i18n/id.po new file mode 100644 index 00000000..4e12884f --- /dev/null +++ b/addons/stock_account/i18n/id.po @@ -0,0 +1,921 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# William Surya Permana , 2020 +# Martin Trigaux, 2020 +# Wahyu Setiawan , 2020 +# oon arfiandwi , 2020 +# pnyet , 2020 +# Bonny Useful , 2020 +# Muhammad Syarif , 2020 +# Ryanto The , 2020 +# Gusti Rini , 2020 +# Ikhsanul Wirsa , 2020 +# whenwesober, 2020 +# Abdul Munif Hanafi , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Abdul Munif Hanafi , 2021\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Template Bagan Akun" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Properti Stock akun" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Tanggal Akuntansi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Entri Jurnal Akuntansi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Informasi Akuntansi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Batal" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Perusahaan" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Pengaturan Konfigurasi" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Metode penetapan biaya" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Akun Kontra" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Mata Uang" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Nilai sekarang" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Tanggal" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Deskripsi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentasi" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Kelompokkan menurut...." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Stok Persediaan" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Lokasi Stok Persediaan" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Penilaian Stok Persediaan" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Jurnal" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Entri Jurnal" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Item Jurnal" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Landed Costs" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Terakhir diperbarui oleh" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Terakhir diperbarui pada" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manual" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Info Lainnya" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produk" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Kategori Produk" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Templete Produk" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Kuantitas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Kuant" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Alasan" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Sisa Qty" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Pengembalian Pengambilan" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Pilih kategori untuk produk ini" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Standar Harga" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Akun stok Masukan" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Jurnal Stok" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Pergerakan Stok" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Akun Stok Kluar" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Riwayat Kuantitas Stok" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Akun Valuasi stok" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Akun Valuasi stok (masuk)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Akun Valuasi stok (Outgoing)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Nilai Total" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Transfer" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Satuan" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Digunakan untuk real-time penilaian stok persediaan. Ketika ditetapkan pada " +"lokasi virtual (jenis non internal), akun ini akan digunakan untuk menyimpan" +" nilai produk dipindahkan dari lokasi internal ke lokasi ini, bukan generik " +"Rekening Efek Keluaran set pada produk. Ini tidak berpengaruh untuk lokasi " +"internal." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Digunakan untuk real-time penilaian stok persediaan. Ketika ditetapkan pada " +"lokasi virtual (jenis non internal), akun ini akan digunakan untuk menyimpan" +" nilai produk dipindahkan dari lokasi ini dan menjadi lokasi intern, bukan " +"generik Rekening Efek Keluaran set pada produk. Ini tidak berpengaruh untuk " +"lokasi internal." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Penilaian" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Nilai" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Peringatan" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "oleh" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "untuk" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/is.po b/addons/stock_account/i18n/is.po new file mode 100644 index 00000000..78c696d0 --- /dev/null +++ b/addons/stock_account/i18n/is.po @@ -0,0 +1,692 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2018 +# Birgir Steinarsson , 2018 +# Bjorn Ingvarsson , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-08-24 09:25+0000\n" +"Last-Translator: Bjorn Ingvarsson , 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:146 +#: code:addons/stock_account/models/product.py:152 +#, python-format +msgid "%s changed cost from %s to %s - %s" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +msgid "Accounting Date" +msgstr "Bókhaldsdagsetning" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Fjárhagsbókhaldsuppsetning" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Bókhaldsupplýsingar" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Archived" +msgstr "Geymt" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Available Products" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Cancel" +msgstr "Hætta við" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:510 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:512 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Category" +msgstr "Flokkur" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:405 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:587 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Kostnaðarverð" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Cost Method" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Costing" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_cost_method +msgid "Costing Method" +msgstr "Costing Method" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__counterpart_account_id_required +msgid "Counter-Part Account Required" +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.product_valuation_action +msgid "Create a new product valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__create_uid +msgid "Created by" +msgstr "Búið til af" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__create_date +msgid "Created on" +msgstr "Stofnað þann" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventoy date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__display_name +msgid "Display Name" +msgstr "Nafn" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Exhausted Stock" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__id +msgid "ID" +msgstr "Auðkenni" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price__new_price +msgid "" +"If cost price is increased, stock variation account will be debited and stock output account will be credited with the value = (difference of amount * quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.product_valuation_action +msgid "If there are products, you will see its name and valuation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Include landed costs in product cost" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Birgðir" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_quantity_history.py:25 +#: model:ir.actions.act_window,name:stock_account.action_stock_inventory_valuation +#: model:ir.actions.act_window,name:stock_account.product_valuation_action +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Inventory Valuation" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Reikningur" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Invoice Line" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +msgid "Journal Entries" +msgstr "Færslur fjárhagsbókhalds" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Landed Costs" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price____last_update +msgid "Last Modified on" +msgstr "Síðast breytt þann" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__write_uid +msgid "Last Updated by" +msgstr "Síðast uppfært af" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__write_date +msgid "Last Updated on" +msgstr "Síðast uppfært þann" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +msgid "Manual" +msgstr "Manual" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Negative Stock" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:128 +#, python-format +msgid "No difference between the standard price and the new price." +msgstr "" + +#. module: stock_account +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__new_price +msgid "Price" +msgstr "Verð" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_procurement_group +msgid "Procurement Group" +msgstr "Innkaupagrúppa" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +msgid "Product" +msgstr "Vara" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +msgid "Product Category" +msgstr "Vöruflokkur" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +msgid "Product Template" +msgstr "Sniðmát vöru" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__qty_at_date +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Quantity" +msgstr "Magn" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Reference" +msgstr "Tilvísun" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Retrieve the inventory valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Return Picking" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__property_cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_fifo_manual_move_ids +msgid "Stock Fifo Manual Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_fifo_real_time_aml_ids +msgid "Stock Fifo Real Time Aml" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_stock_account_input +msgid "Stock Input Account" +msgstr "Stock Input Account" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:26 +#: code:addons/stock_account/__init__.py:31 +#: code:addons/stock_account/models/account_chart_template.py:15 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +msgid "Stock Move" +msgstr "Stock Move" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_stock_account_output +msgid "Stock Output Account" +msgstr "Stock Output Account" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_product_tree2 +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:536 +#, python-format +msgid "" +"The cost of %s is currently equal to 0. Change the cost or the configuration" +" of your product to avoid an incorrect valuation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:358 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:369 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:367 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "To Refund (update SO/PO)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Unit of Measure" +msgstr "Eining" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Update Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_product_tree2 +msgid "Valuation" +msgstr "Valuation" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:246 +#, python-format +msgid "Valuation at date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_value +#: model:ir.model.fields,field_description:stock_account.field_stock_move__value +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_account_aml +msgid "Value" +msgstr "Value" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:404 +#, python-format +msgid "Warning" +msgstr "Viðvörun" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each" +" product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template__property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set" +" on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template__property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:508 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:130 +#: code:addons/stock_account/models/stock.py:514 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" diff --git a/addons/stock_account/i18n/it.po b/addons/stock_account/i18n/it.po new file mode 100644 index 00000000..096ad08f --- /dev/null +++ b/addons/stock_account/i18n/it.po @@ -0,0 +1,962 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Giacomo Grasso , 2020 +# Paolo Valier, 2020 +# Léonie Bouchat , 2020 +# Stefano Consolaro , 2020 +# Sergio Zanchetta , 2021 +# BigBlu , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: BigBlu , 2021\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" +"%(user)s ha cambiato il costo da %(previous)s a %(new_price)s - %(product)s" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Modello piano dei conti" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Movimento contabile" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Proprietà contabilità di magazzino" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Data contabile" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Registrazioni contabili" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Informazioni contabili" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" +"Aggiunge costi supplementari (trasporto, dogane ecc.) al valore del " +"prodotto." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "Valore aggiunto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "Valore aggiunto" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatizzato" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Costo medio (CU)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Annulla" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Non esiste il conto di ingresso di magazzino per il prodotto %s. Bisogna " +"definirne uno sulla categoria prodotto o sull'ubicazione prima di eseguire " +"l'operazione." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Non esiste il conto di uscita di magazzino per il prodotto %s. Bisogna " +"definirne uno sulla categoria prodotto o sull'ubicazione prima di eseguire " +"l'operazione." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Il cambiamento della metodologia di costo è una modifica importante che " +"influisce sulla valutazione del magazzino. Effettuare veramente questo " +"cambiamento?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Azienda" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Impostazioni di configurazione" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Errore di configurazione. Configurare il conto di differenza di prezzo sul " +"prodotto o la sua categoria per eseguire questa operazione." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Metodo ci calcolo costi" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Conto di contropartita" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Data creazione" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Valuta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "Quantità attuale" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Valore attuale" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Data" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Data in cui vengono create le registrazioni contabili in caso di valutazione" +" automatica del magazzino. Se vuoto, viene usata la data di inventario." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" +"Unità di misura predefinita usata per tutte le operazioni di magazzino." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Descrizione" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Documentazione" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "Primo a entrare, primo a uscire (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Raggruppa per..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Magazzino" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Ubicazioni di inventario" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Valutazione del magazzino" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "È una riga anglosassone" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Registro" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Registrazione contabile" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Movimento contabile" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Costi sbarcati" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manuale" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manuale: le registrazioni contabili per valutare il magazzino non vengono registrate automaticamente.\n" +" Automatizzato: una registrazione contabile viene creata automaticamente per valutare il magazzino quando un prodotto entra o esce dall'azienda. " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "Nuovo valore" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "Valore a disposizione" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Altre informazioni" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Prodotto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Categoria prodotto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Movimenti prodotto (riga movimento di magazzino)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "Rivalutazione prodotto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Modello prodotto" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Quantità" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Quantitativi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Causale" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "Motivo della rivalutazione" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "Prodotto correlato" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Q.tà residua" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Valore residuo" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Prelievo di reso" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Riga prelievo di reso" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "Rivalutazione di %s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Selezionare categoria per il prodotto corrente" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Prezzo standard" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Prezzo standard: prodotti valutati in base al loro costo standard definito sul prodotto.\n" +" Costo medio (CMP): prodotti valutati in base al costo medio ponderato.\n" +" Primo a entrare, primo a uscire (FIFO): prodotti valutati nel caso in cui i primi a entrare in azienda sono i primi a uscire.\n" +" " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Conto di ingresso del magazzino" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Registro di magazzino" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Movimento di magazzino" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Conto di uscita del magazzino" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Cronologia quantità in giacenza" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Resoconto rifornimenti di magazzino" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Valutazione del magazzino" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Conto valutazione di magazzino" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Conto valutazione di magazzino (entrata)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Conto valutazione di magazzino (uscita)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "Campo tecnico usato per recuperare le righe anglosassoni." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Le righe di movimento non sono coerenti: alcune entrano e altre escono " +"dall'azienda." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Le righe di movimento non sono coerenti: movimento interaziendale in un " +"unico passo invece di passare per l'ubicazione di transito interaziendale. " + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Le righe di movimento non sono coerenti: non condividono la stessa azienda " +"di origine o di destinazione. " + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Valore totale" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Trasferimento" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Attivare una diminuzione della quantità consegnata/ricevuta nell'ordine di " +"vendita/acquisto associato." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Valore unitario" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Unità di misura" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usato per la valutazione del magazzino in tempo reale. Quando impostato su " +"una ubicazione virtuale (non di tipo interno), questo conto verrà usato per " +"impostare il valore dei prodotti movimentati da una ubicazione interna in " +"questa ubicazione, invece del \"Conto di uscita del magazzino\" generico " +"impostato sul prodotto. Non ha effetto sulle ubicazioni interne." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usato per la valutazione del magazzino real-time. Quando impostato su una " +"ubicazione virtuale (non di tipo interno), questo conto verrà usato per " +"impostare il valore dei prodotti movimentati da questa ubicazione in una " +"interna, invece del \"Conto di uscita del magazzino\" generico impostato sul" +" prodotto. Non ha effetto sulle ubicazioni interne." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Valorizzazione" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Valore" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Avviso" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Conto che contiene il valore attuale dei prodotti quando viene abilitata la " +"valutazione automatica del magazzino." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"Quando si esegue la valutazione automatica dell'inventario, le voci di registro corrispondenti a tutti i movimenti di magazzino in uscita saranno memorizzate in questo conto, a meno che non ci sia uno specifico conto di valutazione impostato sull'ubicazione di destinazione. Questo è il valore predefinito per ogni prodotto di questa categoria.\n" +"Può anche essere impostato direttamente per ogni prodotto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Registro contabile nel quale vengono confermate automaticamente le " +"registrazioni, durante la valutazione automatica del magazzino, quando " +"vengono elaborati i movimenti." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" +"Modello di wizard per rivalutare un inventario di magazzino per un dato " +"prodotto" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" +"Non è possibile rivalutare un prodotto con una metodologia di costo " +"standard." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Non hai nessun registro di magazzino definito nella tua categoria di " +"prodotti, controlla se hai installato un piano dei conti. " + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Non è definito il conto di valutazione del magazzino nella categoria dei " +"prodotti. Deve essere definito prima di eseguire questa operazione. " + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "di" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "per" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "ubicazioni" diff --git a/addons/stock_account/i18n/ja.po b/addons/stock_account/i18n/ja.po new file mode 100644 index 00000000..9ea8c855 --- /dev/null +++ b/addons/stock_account/i18n/ja.po @@ -0,0 +1,910 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Shunho Kin , 2020 +# Martin Trigaux, 2020 +# Yoshi Tashiro , 2020 +# 高木正勝 , 2020 +# Norimichi Sugimoto , 2020 +# Tim Siu Lai , 2020 +# Noma Yuki, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Noma Yuki, 2020\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "勘定科目表テンプレート" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "会計仕訳" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "在庫関連勘定属性" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "会計日" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "会計仕訳" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "会計情報" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "プロダクトに追加のコスト(輸送、税関など)を追加" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "自動" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "移動平均原価(AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "取消" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "商品 %sの在庫入力勘定を見つけることができません。 この操作を処理する前に、製品カテゴリまたはロケーションを定義する必要があります。" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "商品 %sの在庫出力勘定を見つけることができません。 この操作を処理する前に、製品カテゴリまたはロケーションを定義する必要があります。" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "原価方法の変更は在庫評価に影響するため、慎重に行ってください。本当に変更しますか?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "会社" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "コンフィグ設定" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "構成エラー。 この操作を処理するには、製品またはそのカテゴリの価格差異勘定を設定してください。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "原価計算法" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "相手方口座" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "作成日" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "通貨" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "実際の数値" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "日付" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "自動在庫評価の場合に会計仕訳に適用される日付。指定がない場合は在庫日を適用。" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "すべての在庫操作に使用されるデフォルトの測定単位。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "説明" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "ドキュメント" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "先入先出(FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "グル―プ化…" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "在庫" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "在庫ロケーション" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "在庫評価" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "仕訳帳" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "仕訳" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "仕訳項目" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "仕入諸掛" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "手動" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "その他情報" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "プロダクト" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "プロダクトカテゴリ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "製品の移動(在庫移動ライン)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "プロダクトテンプレート" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "数量" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "保管ロット" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "理由" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "残数量" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "残額" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "ピッキングの戻し" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "ピッキングラインを返す" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "現在のプロダクトのカテゴリを選択して下さい。" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "標準原価" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "在庫受入勘定" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "在庫記録簿" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "在庫移動" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "在庫払出勘定" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "在庫数量履歴" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "在庫補充レポート" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "在庫評価勘定" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "在庫評価勘定 (入庫)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "在庫評価勘定(出庫)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "合計価値" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "運送" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "単位" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "SO/POの数量更新" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"リアルタイム在庫評価のために使用されます。仮想の場所 (非内部タイプ) " +"に設定されている場合、このアカウントは製品にセットされる一般的な在庫出力アカウントの代わりに、内部の場所からこの場所に移動される製品の価値を保持するために使用されます。" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"リアルタイム在庫評価のために使用されます。仮想の場所 (非内部タイプ) " +"に設定されている場合、このアカウントは製品にセットされる一般的な在庫出力アカウントの代わりに、この場所から内部の場所に移動される製品の価値を保持するために使用されます。" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "評価" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "評価額" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "警告" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "商品カテゴリに定義されている在庫評価勘定はありません。 この操作を処理する前に定義する必要があります。" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "により" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "for" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/ka.po b/addons/stock_account/i18n/ka.po new file mode 100644 index 00000000..8b219e89 --- /dev/null +++ b/addons/stock_account/i18n/ka.po @@ -0,0 +1,906 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Davit Matchakhelidze , 2021 +# Mari Khomeriki , 2021 +# Martin Trigaux, 2021 +# Temur, 2021 +# Giorgi Melitauri , 2021 +# Gizo Kobakhidze <040168@gmail.com>, 2021 +# Gvantsa Gvinianidze , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Gvantsa Gvinianidze , 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "ანგარიშთა გეგმის ნიმუში" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "საბუღალტრო ჩანაწერი" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "საბუღალტრო აღრიცხვა" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "გაუქმება" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "კომპანია" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "კონფიგურაციის პარამეტრები" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "შემქმნელი" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "შექმნის თარიღი" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "ვალუტა" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "თარიღ" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "აღწერა" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "ჟურნალი" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "ბოლოს განაახლა" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "ბოლოს განახლდა" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "პროდუქტი" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "პროდუქტის კატეგორია" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "პროდუქტის შაბლონი" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "რაოდენობა" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "ოკ" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "ტრანსფერი" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "საზომი ერთეული" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "მნიშვნელობა" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "გაფრთხილება" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/kab.po b/addons/stock_account/i18n/kab.po new file mode 100644 index 00000000..7014af8d --- /dev/null +++ b/addons/stock_account/i18n/kab.po @@ -0,0 +1,741 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2015-10-01 09:22+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Kabyle (http://www.transifex.com/odoo/odoo-9/language/kab/)\n" +"Language: kab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"#-#-#-#-# kab.po (Odoo 9.0) #-#-#-#-#\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"#-#-#-#-# kab.po (Odoo 9.0) #-#-#-#-#\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "Amḍan n ifarisen" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Tasiḍent" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Talɣut n tsiḍent" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "Asulay urmid ulacit deg umnaḍ" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "ssuma talemmast" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Sefsex" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "Snifel ssuma" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "Snifel ssuma " + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "Fren azem-ik" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Takebbwanit" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Tasqamt" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "Tarrayt n tesqamt" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Yerna-t" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Yerna di" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Azemz" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Sdukel s" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "Asulay" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventaire" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Tafaturt" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Izirig n tfaturt" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "Tisqamin n trusi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Aleqqem aneggaru di" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Aleqqem aneggaru sɣuṛ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Aleqqem aneggaru di" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Adeg" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Amussu" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Ssuma " + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Afaris" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Taggayt n ifarisen" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "Akuk n tudart n ufaris" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "Tanecta n ufaris" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Taneɣruft n ufaris" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "Akud n Useqdec n Ufaris" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Tinectiwin" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "Ssuma tilawt" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "Uṭṭun n umazrar" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "Snifel ssuma " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Aɣbalu" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Amussu n uselɣas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Amiḍan n usazel n uselɣas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Amiḍan n usazel n uselɣas (anekcum)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Amiḍan n usazel n uselɣas (tuffɣa)" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Tineɣrufin n uɣawas asiḍan" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "Afedis n useɛael -> Amuskir n uferdis n uznuzu " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "Aferdis n uznuzu" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Azal" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "_Snes" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "arussin" diff --git a/addons/stock_account/i18n/km.po b/addons/stock_account/i18n/km.po new file mode 100644 index 00000000..91ccd4c2 --- /dev/null +++ b/addons/stock_account/i18n/km.po @@ -0,0 +1,904 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Sengtha Chay , 2020 +# Chan Nath , 2020 +# Samkhann Seang , 2020 +# Lux Sok , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Lux Sok , 2020\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "គំរូតារាងគណនី" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "ផ្លាស់ទីគណនី" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "ទ្រព្យសម្បត្តិភាគហ៊ុនគណនី" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "កាលបរិច្ឆេទគណនី" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "ការចុះបញ្ជីគណនី" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "ព៌ត៌មានគណនី" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "ស្វ័យប្រវត្តិកម្ម" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "ថ្លៃដើមមធ្យម (AVCO) " + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "លុបចោល" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "ក្រុមហ៊ុន" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "កំណត់រចនាសម្ព័ន្ធ" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "ចំនួនដៃគូរ" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "បង្កើតដោយ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "បង្កើតនៅ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "រូបិយប័ណ្ណ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "គុណតំលៃបច្ចុប្បន្ន" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "កាលបរិច្ឆេទ" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" +"ចំនួននៃការប្រើប្រាស់នូវវិធានការណ៍កិច្ចសន្យាសម្រាប់ការប្រត្តិការណ៍សារពើភ័ណ្ឌ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "ការពិពណ៌​នា​" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "ដាក់ជាក្រុមដោយ ..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "អត្តសញ្ញាណ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "សារពើភ័ណ្ឌ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "ទីតាំងសារពើភ័ណ្ឌ" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "ការវាយតម្លៃសារពើភ័ណ្ឌ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "ទិនានុប្បវត្តិ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "ការចុះទិន្នានុប្បរត្ត" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "ប្រភេទទិនានុប្បវត្ត" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "ការចំណាយលើដីធ្លី" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "ហត្ថកម្ម" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "ពត៌មានផ្សេងទៀត" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "ផលិតផល" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "ប្រភេទ​ផលិតផល" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "ផលតិផលត្រូវបានផ្លាស់ប្តូរ(​តាមខ្សែសង្វាក់ផលិតកម្ម)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "គំរូផលិតផល" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "ចំនួន" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "ចំនួនប៉ុន្មាន" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "ហេតុផល" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "ត្រលប់ទៅការទទួលយក" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "ជ្រើសរើសប្រភេទសម្រាប់ផលិតផលបច្ចុប្បន្ន" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "តម្លៃស្តង់ដារ " + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "ឃ្លំាងត្រូវបានផ្លាស់ប្តូរ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "ផ្ទេរ" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "ឯកតារង្វាស់" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "តំលៃ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "ព្រមាន" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "ដោយ" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "សម្រាប់" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/ko.po b/addons/stock_account/i18n/ko.po new file mode 100644 index 00000000..6e616706 --- /dev/null +++ b/addons/stock_account/i18n/ko.po @@ -0,0 +1,916 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# JH CHOI , 2020 +# Linkup , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Linkup , 2021\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "계정과목 일람표 서식" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "계정 이동" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "재고 계정 속성" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "회계 날짜" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "회계 항목" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "회계 정보" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "제품 가격에 추가 비용(운송, 통관 등)을 추가하십시오." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "입고 작업에서 부대비용에 영향을 주며 비용 가격을 업데이트하기 위해 제품에 분할합니다." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "자동화" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "평균 비용 (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "취소" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "%s 상품의 재고 입고 계정을 찾을 수 없습니다. 이 조작을 처리하기 전에 제품 범주 또는 위치에서 하나를 정의해야 합니다." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"%s 상품의 재고 출고 계정을 찾을 수 없습니다. 이 조작을 처리하기 전에 제품 범주 또는 위치에서 하나를 정의해야합니다.\n" +" " + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "비용 방법 변경은 재고 평가에 영향을 미치는 중요한 변경입니다. 변경 하시겠습니까?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "회사" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "설정 구성" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "환경 설정 오류. 이 작업을 처리하려면 제품 또는 범주에서 가격 차이 계정을 구성하십시오." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "원가계산 방법" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "상품 범주 %s의 비용 청구 방법이 %s에서 %s로 변경되었습니다." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "상대 계정" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "작성일" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "환율" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "현재 값" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "날짜" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "자동 재고 평가의 경우 회계 항목이 생성되는 날짜입니다. 비어 있으면 재고 날짜가 사용됩니다." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "모든 재고 운용에 사용되는 기본 단위." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "내용" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "문서화" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "제품 범주의 변경으로 인해(%s에서 %s로), %s 상품 서식의 비용 청구 방법이 %s에서 %s로 변경되었습니다." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "선입 선출 (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "그룹별..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "계정 이동함" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "재고" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "재고 위치" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "재고 평가" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "앵글로색슨 명세 유무" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "분개장" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "분개" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "분개 항목" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "부대 비용" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "다음과 연결됨" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "수동" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"수동 : 재고를 평가하기위한 회계 항목이 자동으로 전기되지 않습니다. \n" +" 자동 : 회계 항목은 제품이 회사에 들어 오거나 나갈 때 재고를 평가하기 위해 자동으로 작성됩니다." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "기타 정보" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "이 제품에 대한 지출비용 계정을 \"%s\"(id : %d) 또는 해당 제품 범주 \"%s\"로 정의해 주십시오." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "상품" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "상품 범주" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "상품 이동 (재고 이동 명세)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "상품 양식" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "상품 값 수동 수정(%s에서 %s로)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "수량" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "수량 Svl" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "수량" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "사유" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "남은 수량" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "잔존가치" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "반품 선별" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "반품 선별 내역" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "현재 상품의 범주를 선택하십시오." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "표준 가격" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"표준 가격 : 제품은 제품에 정의된 표준 비용으로 평가됩니다.\n" +" 평균 비용 (AVCO) : 제품은 가중 평균 비용으로 평가됩니다.\n" +" 선입 선출 (FIFO) : 회사에 먼저 들어가는 제품도 먼저 남겨 두는 것으로 가정하여 가치가 있습니다." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "재고 입고 계정" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "재고 분개 항목" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "재고 이동" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "재고 출고 계정" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "재고 수량 기록" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "재고 재보충 보고서" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "재고 평가" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "재고 평가 계정" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "재고 평가 계정 (입고)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "재고 평가 계정 (출고)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "재고 평가 레이어" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "앵글로 색슨 명세를 검색하는 데 사용되는 기술 필드." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "이동 명세가 일관된 상태가 아닙니다. 일부는 들어오고 다른 하나는 회사를 떠납니다." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "이동 명세가 일관된 상태가 아닙니다. 회사 간 이동 위치를 통과해야 하는 한 단계로 회사 간을 수행하고 있습니다." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "이동 명세가 일관된 상태가 아닙니다. 동일한 출발지 또는 목적지 회사를 공유하지 않습니다." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "평가 레이어가 없습니다. 일부 제품 이동이 재고 평가에 영향을 미칠 때 평가 레이어가 생성됩니다." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "총계" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "전송" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "관련 판매 주문/구매 주문에서 배송/납품 수량 감소를 트리거합니다" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "단위 값" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "단위" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "SO/PO의 수량 갱신" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"실시간 재고 평가 사용하기. 가상 위치(비 내부 유형)를 설정하면 제품에 설정된 일반 재고 출고 계정 대신에 이 계정을 내부 위치에서 이" +" 위치로 이동하는 상품의 값을 유지하는데 사용합니다. 이것은 내부 위치에 영향을 주지 않습니다." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"실시간 재고 평가 사용하기. 가상 위치(비 내부 유형)를 설정하면 제품에 설정된 일반 재고 출고 계정 대신에 이 계정을 이 위치에서 내부" +" 위치로 이동하는 상품의 값을 유지하는데 사용합니다. 이것은 내부 위치에 영향을 주지 않습니다." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "평가" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "상품 범주 %s의 평가 방법이 %s에서 %s로 변경되었습니다." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "가치" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "값 Svl" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "경고" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "제품에서 자동 재고 평가가 활성화되면 이 계정에 제품의 현재 가치가 유지됩니다." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"자동 재고 평가를 수행하면 모든 출고 재고 이동에 대한 해당 분개 항목이 이 계정에 전기됩니다. \n" +" 대상 위치에 특정 평가 계정이 설정되어 있지 않으면 이 범주의 모든 제품에 대한 기본값입니다. \n" +" 각 제품에 직접 설정할 수도 있습니다." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "자동화 된 재고 평가를 수행 할 때 이는 재고 이동이 처리될 때 항목이 자동으로 전기되는 회계 분개입니다." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "제품 범주에 정의된 입고 평가 계정이 없습니다. 이 작업을 처리하기 전에 하나를 정의해야 합니다." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "제품 범주에 재고 분개가 정의되어 있지 않으면 계정과목표를 설치했는지 확인하십시오." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "제품 범주에 정의된 재고 평가 계정이 없습니다. 이 작업을 처리하기 전에 하나를 정의해야 합니다." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "작성자" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "for" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/lb.po b/addons/stock_account/i18n/lb.po new file mode 100644 index 00000000..0f00535b --- /dev/null +++ b/addons/stock_account/i18n/lb.po @@ -0,0 +1,711 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-26 08:16+0000\n" +"PO-Revision-Date: 2019-08-26 09:14+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%s changed cost from %s to %s - %s" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_reconciliation_widget +msgid "Account Reconciliation widget" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +msgid "Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Archived" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cancel" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Category" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +msgid "Company" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__counterpart_account_id_required +msgid "Counter-Part Account Required" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +msgid "Created by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +msgid "Created on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +msgid "Currency" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +msgid "ID" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price__new_price +msgid "" +"If cost price is increased, stock variation account will be debited and stock output account will be credited with the value = (difference of amount * quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.actions.act_window,name:stock_account.action_stock_inventory_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +msgid "Last Updated on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__new_price +msgid "Price" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same than the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +msgid "Unit of Measure" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_product_normal_form_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Update Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_search +msgid "Valuation Layer?" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all incoming stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the source location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "remaining_value Value" +msgstr "" diff --git a/addons/stock_account/i18n/lt.po b/addons/stock_account/i18n/lt.po new file mode 100644 index 00000000..98cf3cbc --- /dev/null +++ b/addons/stock_account/i18n/lt.po @@ -0,0 +1,946 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" , 2021 +# Anatolij, 2021 +# Silvija Butko , 2021 +# Audrius Palenskis , 2021 +# Antanas Muliuolis , 2021 +# digitouch UAB , 2021 +# Linas Versada , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Linas Versada , 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Sąskaitų plano šablonas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "DK įrašai" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Atsargų apskaitos savybės" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Apskaitos data " + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Apskaitos įrašai" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Apskaitos informacija" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Pakeisti pilnas kainas gavimo operacijose ir išskirstyti jas produktuose, " +"taip atnaujinant jų kaštų dydį." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatizuota" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Vidutinė savikaina (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Atšaukti" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Nepavyko rasti produkto %s atsargų įėjimo sąskaitos. Prieš apdorodami šią " +"operaciją, turite ją nustatyti produkto kategorijai arba vietai. " + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Nepavyko rasti produkto %s atsargų išėjimo sąskaitos. Prieš apdorodami šią " +"operaciją, turite ją nustatyti produkto kategorijai arba vietai. " + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Kaštų metodo keitimas turės įtakos jūsų inventoriaus įvertinimui. Ar tikrai " +"norite atlikti šį pakeitimą? " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Įmonė" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigūracijos nustatymai" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Konfigūracijos klaida. Norėdami apdoroti šią operaciją, produktui arba jo " +"kategorijai nustatykite kainų skirtumo sąskaitą" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Savikainos būdas" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Partnerinė sąskaita" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Valiuta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Esama reikšmė" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Data" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Data, kai apskaitos įrašai bus sukuriami automatizuoto inventoriaus " +"vertinimo atveju. Jei tuščia, bus naudojama inventoriaus data." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Numatytasis matavimo vienetas, naudojamas visoms atsargų operacijoms." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Aprašymas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentacija" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "Pirmas Į Pirmas Iš (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Grupuoti pagal..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventorius" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Inventoriaus vietos" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Inventoriaus įvertinimas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Žurnalas" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Žurnalo įrašas" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Žurnalo įrašas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Galutiniai kaštai" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Rankinis" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Rankinis: Apskaitos įrašai inventoriaus vertinimui nėra skelbiami automatiškai.\n" +"Automatinis: Apskaitos įrašas yra automatiškai pridedamas inventoriaus vertinimui, kai produktas įeina ar išeina iš įmonės." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Kita informacija" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produktas" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Produkto kategorija" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Produkto perkėlimai (atsargų perkėlimo eilutė)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Produkto šablonas" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Kiekis" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Kiekių grupės" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Priežastis" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Likęs kiekis" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Likusi vertė" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Paėmimo grąžinimas" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Paėmimo grąžinimo eilutė" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Pasirinkite šio produkto kategoriją" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Savikaina" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Savikaina: Produktai yra įkainojami pagal produktui nurodytą savikainą.\n" +" Vidutinė kaina (AVCO): Produktai yra įkainojami pagal vidurkio kainą.\n" +" Pirmas Į Pirmas Iš (FIFO): Produktai yra įkainojami galvojant, kad tie, kurie pirmieji atkeliavo į įmonę, ją ir paliks pirmieji." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Atsargų padidėjimo sąskaita" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Atsargų žurnalas" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Atsargų perkėlimas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Atsargų sumažėjimo sąskaita" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Atsargų kiekio istorija" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Atsargų vertinimas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Atsargų įvertinimo sąskaita" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Atsargų įvertinimo sąskaita (padidėjimas)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Atsargų įvertinimo sąskaita (sumažėjimas)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Perkėlimo eilutės nėra stabilioje būsenoje, vienos įeina, o kitos palieka " +"įmonę." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Perkėlimo eilutės nėra nuolatinėje būsenoje: jos keliauja tarp įmonių vienu " +"žingsniu, kai turėtų eiti per kompanijų tranzito lokaciją." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Perkėlimo eilutės nėra nuolatinėje būsenoje: jos neturi tos pačios kilmės ar" +" tikslo įmonės." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Bendra vertė" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Perkelti" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Aktyvinti pristatyto/gauto kiekio sumažėjimą susietame pardavimo/pirkimo " +"užsakyme" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Matavimo vienetas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Naudojama realaus laiko atsargų vertinimui. Kai nustatyta virtualiai " +"lokacijai (ne vidinio tipo), ši sąskaita bus naudojama produktų, perkeliamų " +"iš išorinės lokacijos į šią lokaciją, vertinimui, vietoje to, kad būtų " +"naudojama standartinė išeinančių atsargų sąskaita. Tai neturi jokio poveikio" +" vidinėms lokacijoms." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Naudojama realaus laiko atsargų vertinimui. Kai nustatyta virtualiai " +"lokacijai (ne vidinio tipo), ši sąskaita bus naudojama produktų, perkeliamų " +"iš šios lokacijos į vidinę lokaciją, vertinimui, vietoje to, kad būtų " +"naudojama standartinė išeinančių atsargų sąskaita. Tai neturi jokio poveikio" +" vidinėms lokacijoms." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Įvertinimas" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Reikšmė" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Įspėjimas" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Neturite savo produktų kategorijai nustatyto atsargų žurnalo, įsitikinkite, " +"ar tikrai įdiegtas sąskaitų planas" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Neturite savo produktų kategorijai nustatytos atsargų vertinimo sąskaitos. " +"Privalote nustatyti ją prieš apdorojant šią operaciją." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "pagal" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "skirtas" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/lv.po b/addons/stock_account/i18n/lv.po new file mode 100644 index 00000000..3ebaa7f3 --- /dev/null +++ b/addons/stock_account/i18n/lv.po @@ -0,0 +1,905 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Arnis Putniņš , 2020 +# JanisJanis , 2020 +# ievaputnina , 2020 +# Konstantins Zabogonskis , 2020 +# Artjoms Ustinovs , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Artjoms Ustinovs , 2020\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Konta plāna veidne" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Grāmatvedības datums" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Grāmatvedības ieraksti" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Grāmatvedības Informācija" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Atcelt" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Uzņēmums" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurācijas iestatījumi" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Izmaksu noteikšanas Metode" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Valūta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Datums" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Apraksts" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Attēlotais nosaukums" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentācija" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Grupēt pēc..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Krājumi" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Inventarizācija" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Reģistrs" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Grāmatojumi" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Kontējums" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Landed Costs" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Pēdējoreiz modificēts" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Pēdējoreiz atjaunoja" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Pēdējoreiz atjaunots" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manuālā" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Other Info" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produkts" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Produkta Kategorija" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Produkta Veidne" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Daudzums" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Iemesls" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Preču Atgriešana" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Izvēlaties kategoriju aktīvajam produktam" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Standarta cena" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Ienākošo Krājumu Konts" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Noliktavas Žurnāls" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Krājumu kustība" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Izejošo Krājumu Konts" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Krājumu Konts" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Krājumu konts (ienākošais)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Krājumu konts (izejošais)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Kopējā vērtība" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Transfer" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Mērvienība" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Vērtība" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Brīdinājums" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "by" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/mk.po b/addons/stock_account/i18n/mk.po new file mode 100644 index 00000000..702c2592 --- /dev/null +++ b/addons/stock_account/i18n/mk.po @@ -0,0 +1,800 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Aleksandar Vangelovski , 2016 +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2016-06-10 12:29+0000\n" +"Last-Translator: Aleksandar Vangelovski \n" +"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/" +"mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"#-#-#-#-# mk.po (Odoo 9.0) #-#-#-#-#\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"#-#-#-#-# mk.po (Odoo 9.0) #-#-#-#-#\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "# од производи" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Својства на сметката за залиха" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Сметководство" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Сметководствени информации" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "Активниот идентификациски број не е подесен во Контекстот." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" +"Ви овозможува да конфигурирате валуацијата на пописите на производите и " +"категориите на производи." + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Средна цена" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "Може да биде внесено како трошок" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Откажи" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "Промени цена" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "Промени стандардна цена" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "Изберете датум во минатото за да ја добиете залихата на тој датум." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "Изберете го вашиот датум" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Компанија" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "Компјутирај од просечна цена" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Трошок" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "Метод на чинење" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +#, fuzzy +msgid "Counter-Part Account" +msgstr "Конто Излез на залиха" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Датум" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Групирај по" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" +"Доколку цената на чинење е зголемена, сметката за варијација на залиха ќе " +"биде задолжена и сметката за излез на залиха ќе има побарување со вредност = " +"(разлика на износ * расположлива количина).\n" +"Доколку цената на чинење е намалена, сметката за варијација на залиха ќе има " +"побарување и сметката за влез на залиха ќе биде задолжена." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "Вклучи дополнителни трошоци во пресметката за чинењето на производот" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Попис" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Локации на залихи" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "Проценка на залиха" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "Вредност на залиха" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Фактура" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Ставка од фактура" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "Дополнителни трошоци" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Локација" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "Управувај со вреднувањето на залихи и методите на трошоци" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Движење" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "Нема разлика помеѓу стандардната и новата цена!" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "Нема дополнителни трошоци" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "Датум на операција" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Цена" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Производ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "Време на аларм на производ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Категорија на производ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "Животен век на производ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "Количина" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "Време на отстранување на производ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Урнек на производ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "Време на употреба на производот" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Квантови" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "Реална цена" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "Превземете ја тековната валуација на залихи." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "Сериски број" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "Стандардна цена" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Извор" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" +"Одредете единица мерка ако фактурирањето се прави во различна единица мерка " +"од инвенторската. Оставете празно за да се искористи стандардната единица " +"мерка." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" +"Означете доколку производот може да биде избран во трошок за човечки ресурси." + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Стандардна цена" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "Стандардната цена е променета" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "Конто Влез на залиха" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "Дневник залиха" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Движење на залиха" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "Конто Излез на залиха" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Сметка за вреднување на залихата" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Сметка за вреднување на залихата (Влезно)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Сметка за вреднување на залихата (Излезно)" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "Вредност на залиха на датум" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Урнеци за контен план" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "Вкупна вредност" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "Мерна единица -> UOS Коефициент" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "Единица на продажба" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Се користи за вреднување на залихата во реално време. Кога е поставено на " +"виртуелна локација (не внатрешен тип), оваа сметка ќе се користи за " +"зачувување на вредноста на производите што се преместуваат од внатрешна " +"локација на оваа локација, наместо во стандардната Сметка за Излез на Залиха " +"поставена на производот. Ова нема влијание за внатрешните локации." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Се користи за вреднување на стоката во реално време. Кога е поставено на " +"виртуелна локација (не внатрешен тип), оваа сметка ќе се користи за " +"зачувување на вредноста на производите што се преместуваат од таа локација " +"на внатрешна локација, наместо во стандардната Сметка за Излез на Залиха " +"поставена на производот. Ова нема влијание за внатрешните локации." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Вредност" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" +"Кога се издава нов сериски број, ова е бројот на денови пред алармот да " +"треба да даде известување." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" +"Кога е издаден нов сериски број, ова е бројот на денови пред стоките да " +"станат опасни и да не смеат да се консумираат." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" +"Кога се издава нов сериски број, ова е бројот на денови пред стоките да " +"бидат отстранети од залиха." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" +"Кога се издава нов сериски број, ова е бројот на денови пред состојбата на " +"стоките да почне да се влошува, без да бидат опасни." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" +"При вршење на вреднување на залихата во реално време, копиите на елементите " +"од дневникот за движењето на влезната залиха ќе се запишуваат во таа сметка, " +"освен ако нема одредена сметка за вреднување на изворната локација. Оваа е " +"стандардната вредност за сите производи во оваа категорија. Може директно да " +"се внесе за секој производ." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" +"При вршење на вреднување на залихата во реално време, копиите на елементите " +"од дневникот за движењето на влезната залиха ќе се запишуваат во таа сметка, " +"освен ако нема одредена сметка за вреднување на изворната локација. Кога не " +"е назначена на производот, се користи таа од категоријата на производот." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" +"При вршење на вреднување на залихата во реално време, копиите на елементите " +"од дневникот за движењето на излезната залиха ќе се запишуваат во таа " +"сметка, освен ако нема одредена сметка за вреднување на целната локација. " +"Оваа е стандардната вредност за сите производи во оваа категорија. Може " +"директно да се внесе за секој производ." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" +"При вршење на вреднување на залихата во реално време, копиите на елементите " +"од записникот за движењето на излезната залиха ќе се запишуваат во таа " +"сметка, освен ако нема одредена сметка за вреднување на целната локација. " +"Кога не е назначена на производот, се користи таа од категоријата на " +"производот." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"При вреднување на залихата во реално време, оваа е записничката сметка во " +"која записите автоматски се внесуваат со процесирањето." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Со вклучување на вреднувањето на производите во реално време, оваа сметка ќе " +"ја содржи моменталната вредност на производите." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "Волшебник кој ја отвара табелата на историја на валуација на залиха" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "_Примени" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "stock.config.settings" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "непознато" + +#~ msgid "Asset Type" +#~ msgstr "Тип на средства" + +#~ msgid "Deferred Revenue Type" +#~ msgstr "Тип на одложен приход" diff --git a/addons/stock_account/i18n/mn.po b/addons/stock_account/i18n/mn.po new file mode 100644 index 00000000..cd872cb5 --- /dev/null +++ b/addons/stock_account/i18n/mn.po @@ -0,0 +1,946 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Baskhuu Lodoikhuu , 2020 +# Bayarkhuu Bataa, 2020 +# Martin Trigaux, 2020 +# nasaaskii , 2020 +# Khishigbat Ganbold , 2020 +# Minj P , 2020 +# nurbakhit nurka , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: nurbakhit nurka , 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Дансны модны загвар" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Ажил гүйлгээ" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Агуулахын санхүү тохиргоо" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Санхүүгийн огноо" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Санхүүгийн гүйлгээ" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Санхүүгийн мэдээлэл" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Барааны орлогын үе шатанд бусад зардлыг нэмж тодорхойлон бараануудад тараан " +"суулгаснаар тэдгээрийн өртөгийг шинэчлэх боломжтой." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Автоматлагдсан" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Дундаж өртөг (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Цуцлах" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"%s барааны агуулахын орлогын данс олдсонгүй. Энэ гүйлгээг хийхийн тулд " +"барааны ангилал эсвэл байрлал дээр зохих дансыг тохируулна уу." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"%s барааны агуулахын зарлагын данс олдсонгүй. Энэ гүйлгээг хийхийн тулд " +"барааны ангилал эсвэл байрлал дээр зохих дансыг тохируулна уу." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Өртөг тооцох аргыг засах нь чухал өөрчлөлт бөгөөд таны барааны өртөгөөрх " +"нөөцийн дүнд нөлөөлнө. Та үүнийг өөрчлөхдөө итгэлтэй байна уу?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Компани" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Тохиргооны тохируулга" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Тохиргооны алдаа. Энэ гүйлгээг хийхийн тулд та бараа эсвэл барааны ангилал " +"дээр үнийн зөрүүний дансыг тохируулна уу." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Өртөг тооцох арга" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Харьцсан данс" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Үүсгэсэн этгээд" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Үүсгэсэн огноо" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Валют" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Одоогийн утга" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Огноо" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Барааны нөөцийн тооллогоос автоматаар үүсэх санхүүгийн ажил гүйлгээний огноо" +" нь ямар байхыг тодорхойлно. Хэрэв хоосон орхивол тооллогын огноог ашиглана." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Агуулахын үйл ажиллагаанд ашиглагдах үндсэн хэмжих нэгж" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Тайлбар" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Баримтжуулалт" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "Эхэнд орсон нь эхэнд гарах (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Бүлэглэх..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Агуулах" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Нөөцийн байрлалууд" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Агуулахын нөөц" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Журнал" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Ажил гүйлгээ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Журналын бичилт" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Өртөгт шингэх зардал" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Сүүлд зассан этгээд" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Сүүлд зассан огноо" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Гараар" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Гараар: Бараа материалын дансны бичилт автоматаар хөтлөгдөхгүй.\n" +" Автомат: Компанид бараа орлогодох, зарлагадах тухай бүрд бараа материалын дансны бичилт автоматаар хөтлөгдөнө." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Бусад мэдээлэл" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Бараа" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Барааны ангилал" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Барааны хөдөлгөөн (Дэлгэрэнгүй)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Барааны загвар" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Тоо хэмжээ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Нөөцийн бүртгэл" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Шалтгаан" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Үлдэгдэл тоо хэмжээ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Үлдэгдэл өртөг" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Буцаалтын баримт" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Буцаалтын баримтын мөр" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Тухайн барааны ангилалыг сонго" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Стандарт өртөг" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Стандарт өртөг: Бараа дээр тохируулсан стандарт буюу тогтмол өртөгөөр барааны өртөгөөрх нөөц хэмжигдэнэ.\n" +" Дундаж өртөг (AVCO): Барааны нөөц жинлэсэн дундаж өртөгөөр хэмжигдэнэ.\n" +" Эхэлж ирсэн нь эхэлж гарах (FIFO): Компанид эхэлж орлогод авсан өртөгөөр эхэлж зарлага гаргана." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Ирж буй барааны өртөгийн данс" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Бараа материалын журнал" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Барааны хөдөлгөөн" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Гарч буй барааны өртөгийн данс" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Агуулахын нөөцийн түүх" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Өртөгийн дүн" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Бараа материалын данс" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Бараа материалын данс (Орлого)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Бараа материалын данс (Зарлага)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Барааны хөдөлгөөнүүд ижил шинж чанартай байх ёстой: зарим нь орлогынх, зарим" +" нь зарлагын хөдөлгөөн байна." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Барааны хөдөлгөөнүүд тохиромжгүй нөхцөл байдалтай байна: компани хоорондын " +"урсгалыг нэг алхамаар хийх гэж оролдож байна. Үүний оронд компани хоорондын " +"дундын байрлал ашиглах ёстой." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Барааны хөдөлгөөнүүд тохиромжгүй нөхцөл байдалтай байна: эдгээр хөдөлгөөн нь" +" ижил эх баримттай эсвэл ижил хүргэх компанитай байх ёсгүй." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Нийт Өртөг Үнэ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Шилжүүлэг" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Холбогдох Борлуулалтын захиалга/Худалдан авах захиалгын хүргэсэн/хүлээн " +"авсан тоо хэмжээг бууруулах" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Хэмжих нэгж" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Барааны өртөгийн байнгын систем. Хийсвэр байрлал дээр (төрөл нь дотоод бус " +"байх) данс тохируулсан тохиолдолд дотоод байрлалаас хасагдаж буй барааны " +"өртөгийн дүнг тухайн дансанд хөтлөнө. Энэ тохиолдолд барааны тохиргоо дээрх " +"Гарч буй барааны өртөгийн данс ашиглагдахгүй. Дотоод байрлал руу шилжүүлж " +"буй тохиолдолд ямар нэг дансны бичилт хийгдэхгүй." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Барааны өртөгийн байнгын систем. Хийсвэр байрлал дээр (төрөл нь дотоод бус " +"байх) данс тохируулсан тохиолдолд дотоод байрлалаас хасагдаж буй барааны " +"өртөгийн дүнг тухайн дансанд хөтлөнө. Энэ тохиолдолд барааны тохиргоо дээрх " +"Гарч буй барааны өртөгийн данс ашиглагдахгүй. Дотоод байрлал руу шилжүүлж " +"буй тохиолдолд ямар нэг дансны бичилт хийгдэхгүй." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Өртөгийн дүн" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Утга" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Анхааруулга" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Таны барааны ангилалд ямар нэг агуулахын журнал тохируулагдаагүй байна, " +"санхүүгийн дансны мод суулгасан эсэхээ нягтална уу." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Таны барааны ангилалд ямар нэг барааны данс тохируулагдаагүй байна. Энэ " +"үйлдлийг хийхээс өмнө дансаа тохируулах шаардлагатай." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "аар" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "дараахид" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/nb.po b/addons/stock_account/i18n/nb.po new file mode 100644 index 00000000..6d74ab25 --- /dev/null +++ b/addons/stock_account/i18n/nb.po @@ -0,0 +1,912 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Jorunn D. Newth, 2020 +# Marius Stedjan , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Marius Stedjan , 2021\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Kontoplanmal" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Konteringsdato" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Regnskapsposter" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Regnskapsinformasjon" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatisert" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Gjennomsnittskostnad (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Avbryt" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Firma" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurasjonsinnstillinger" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Kostmetode" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Motkonto" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Opprettet" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Valuta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Dato" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Standardenhet for alle lageroperasjoner." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Beskrivelse" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentasjon" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "First In First Out (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Grupper etter..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Lager" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Lagerlokasjoner" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Lagerbeholdingverdi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Journal" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Journalregistrering" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Journalpost" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Inntakskostnader" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manuell" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Annen informasjon" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produkt" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Produktkategori" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Produktmal" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Antall" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Årsak" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Gjenstående antall" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Gjenstående verdi" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Returner Plukke" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Velg kategori for produktet" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Standardpris" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Lager Input-konto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Lagerjournal" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Lagerbevegelse" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Konto for utgående lager" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Lager verdivurdering konto" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Lagervurderingskonto (innkommende)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Lagervurderingskonto (utgående)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Total verdi" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Overføring" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Enhet" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Brukes for ektetid beholdningsvurdering. Når sett på en virtuell plassering " +"(ikke intern type), vil denne kontoen bli brukt til å holde verdien av " +"produkter som blir flyttet fra en intern sted inn denne plasseringen, stedet" +" for den generiske lager Utgang kontoen satt på produktet. Dette har ingen " +"effekt for interne steder." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Brukes for ektetid beholdningsvurdering. Når sett på en virtuell plassering " +"(ikke intern type), vil denne kontoen bli brukt til å holde verdien av " +"produkter som blir flyttet ut av denne plasseringen og inn i en intern " +"beliggenhet, i stedet for den generiske Stock Output kontoen satt på " +"produktet. Dette har ingen effekt for interne steder." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Verdi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Advarsel" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "etter" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "for " + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/nl.po b/addons/stock_account/i18n/nl.po new file mode 100644 index 00000000..a0fe4d54 --- /dev/null +++ b/addons/stock_account/i18n/nl.po @@ -0,0 +1,991 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Yenthe Van Ginneken , 2020 +# Cas Vissers , 2020 +# Erwin van der Ploeg , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Erwin van der Ploeg , 2021\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr " Product kostprijs bijgewerkt van %(previous)s naar %(new_cost)s." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" +"%(user)s heeft kostprijs gewijzigd van %(previous)s naar %(new_price)s - " +"%(product)s" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" +"%(user)s heeft voorraadwaarde aangepast van %(previous)s naar %(new_value)s" +" - %(product)s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" +")\n" +" Gebruik een negatieve toegevoegde waarde om een daling van de productwaarde vast te leggen" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" +"Stel overige voorraadtoename- en voorraadafname rekeningen in op " +"specifieke " + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Grootboekschema sjabloon" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Boeking" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Voorraadrekeningen" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Boekhouddatum" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Financiële boekingen" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Boekhoudinformatie" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "Voeg handmatige waardering toe" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" +"Voeg extra kosten toe (transport, douane, ...) in de waarde van het product." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "Toegevoegde waarde" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "Toegevoegde waarde" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Heeft effect op de logistieke kosten bij ontvangsten en wordt gedeeld over " +"de producten om de kostprijs bij te werken." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Geautomatiseerd" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Gemiddelde kostprijs (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Annuleren" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Kan geen voorraadtoename rekening vinden voor het product %s. Deze moet " +"ingesteld worden op de productcategorie, of op de locatie, vóór het " +"verwerken van deze bewerking." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Kan geen voorraadtoename rekening vinden voor het product %s. Deze moet " +"ingesteld worden op de productcategorie, of op de locatie, vóór het " +"verwerken van deze bewerking." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Het wijzigen van uw kostprijsmethode is een belangrijke verandering die van " +"invloed is op uw voorraadwaardering. Weet u zeker dat u de wijziging wilt " +"aanbrengen?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Configuratie instellingen" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Configuratiefout. Configureer de prijsverschillen rekening op het product of" +" de categorie om deze bewerking te verwerken." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Kostprijsbepaling" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" +"Wijziging van de kostenmethode voor productcategorie %s: van %s naar %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Tegenrekening" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" +"Tegenrekening boekingen voor alle inkomende voorraadbewegingen worden op deze rekening geboekt, tenzij er een specifieke waarderingsrekening is\n" +"ingesteld op de bronlocatie. Dit is de standaardwaarde voor alle producten in deze categorie. Het kan ook direct op elk product worden ingesteld." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Valuta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "Huidige hoeveelheid" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Huidige waarde" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Datum" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Datum waarop de financiële boekingen gemaakt worden bij geautomatiseerde " +"voorraadwaardering. Indien leeg wordt de voorraaddatum gebruikt." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Standaard maateenheid gebruikt voor alle voorraadbewegingen." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Omschrijving" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Documentatie" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" +"Vanwege een wijziging van de productcategorie (van %s naar %s) is de " +"kostprijsbepaling voor productsjabloon %s: van %s naar %sgewijzigd." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "First In First Out (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Groepeer op..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "Heeft boekingen" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Voorraad" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Voorraadlocaties" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Voorraadwaardering" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "Is Angelsaksische regel" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Dagboek" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Boeking" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Boekingsregel" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Logistieke kosten" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "Gelinkt aan" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Handmatig" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "Handmatige voorraadwaardering: %s." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "Handmatige voorraadwaardering: Geen reden opgegeven" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Handmatig: de boekingen om de voorraad te waarderen worden niet automatisch geboekt.\n" +"Realtime: een boeking wordt automatisch gemaakt om de voorraad te waarderen wanneer een product het bedrijf binnenkomt of verlaat." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "Nieuwe waarde" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "Nieuwe waarde per hoeveelheid" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "Beschikbare voorraadwaarde" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Overige info" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" +"Definieer een onkostenrekening voor dit product: \"%s\" (id: %d) - of voor " +"de categorie: \"%s\"." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Product" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Productcategorie" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Productverplaatsingen (voorraadverplaatsingsregels)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "Productherwaardering" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Productsjabloon" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "Productwaarde handmatig gewijzigd (vanaf %s naar %s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Hoeveelheid" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "Hoeveelheid Svl" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Aantallen" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Reden" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "Reden van herwaardering" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "Gerelateerd product" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Overgebleven hoeveelheid" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Resterende waarde" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Retour boeken" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Retour pickingregel" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "Herwaardering van %s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "Herwaardering" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Selecteer een categorie voor het huidige product" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Kostprijs" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Vaste verreken prijs: De producten worden gewaardeerd tegen de kostprijs zoals ingesteld op het product\n" +"Gemiddelde kostprijs (AVCO): De producten worden gewaardeerd tegen de gewogen gemiddelde waarde.\n" +"First In First Out (FIFO): De producten worden gewaardeerd, waarbij ervan uit wordt gegaan dat de producten die het bedrijf als eerste binnenkomen ook als eerste het bedrijf verlaten.\n" +" " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Voorraadtoename rekening" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Voorraad dagboek" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Voorraadverplaatsing" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Voorraadafname rekening" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Voorraadhoeveelheid geschiedenis" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Voorraadaanvullen rapportage" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Voorraadwaarde" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Voorraadwaarde rekening" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Voorraadwaarde rekening (inkomend)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Voorraadwaarde rekening (uitgaand)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "Voorraadwaardelaag" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" +"Technisch veld dat wordt gebruikt om de anglo-Saksische regels op te halen." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" +"De actie leidt tot het aanmaken van een financiële boeking, waarvoor u geen " +"toegangsrechten heeft." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "De toegevoegde waarde heeft geen invloed op de voorraadwaardering" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"De boekingsregels bevinden zich niet in een consistente staat: sommige " +"worden ontvangen en andere verlaten het bedrijf." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"De boekingsregels bevinden zich niet in een consistente staat: ze doen " +"intercompany in één stap terwijl ze door de intercompany transit locatie " +"moeten gaan." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"De boekingsregels bevinden zich niet in een consistente staat: ze delen niet" +" dezelfde bron of bestemmingsbedrijf." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"Er zijn geen waarderingslagen. Waarderingslagen worden aangemaakt wanneer " +"sommige productbewegingen de waardering van de voorraad zouden moeten " +"beïnvloeden." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Totale waarde" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Verplaatsing" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Leidt tot een daling van de geleverde/ontvangen hoeveelheid in de " +"bijbehorende verkooporder/inkooporder" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Eenheidswaarde" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Maateenheid" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "Hoeveelheden op SO/PO bijwerken" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Gebruik real-time voorraadwaardering. Wanneer dit is ingesteld op een " +"virtuele locatie (niet een interne locatie), dan zal deze rekening de " +"inkoopwaarde bevatten van de producten welke worden verplaatst uit een " +"interne locatie naar deze locatie, in plaats van de standaard voorraadafname" +" rekening, zoals ingesteld bij het product. Dit heeft geen effect voor " +"interne locaties." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Gebruik real-time voorraadwaardering. Wanneer dit is ingesteld op een " +"virtuele locatie (niet een interne locatie), dan zal deze rekening de " +"inkoopwaarde bevatten van de producten welke worden verplaatst uit deze " +"locatie naar een interne locatie, in plaats van de standaard voorraadafname" +" rekening, zoals ingesteld bij het product. Dit heeft geen effect voor " +"interne locaties." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Waarde" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" +"Wijziging van de waarderingsmethode voor productcategorie %s: van %s naar " +"%s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Waarde" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "Waarde Svl" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Waarschuwing" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Wanneer automatische voorraadwaardering is geactiveerd bij een product, dan " +"zal deze rekening de huidige waarde van de producten bevatten." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"Bij het uitvoeren van automatische voorraadwaardering, zal de tegenboeking " +"voor alle uitgaande voorraadverplaatsingen worden geboekt op deze rekening, " +"tenzij er een specifieke waarderingsrekening is ingesteld op de " +"bestemmingslocatie. Dit is de standaardwaarde voor alle producten in deze " +"categorie. Het kan ook direct worden ingesteld bij een product" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Wanneer u automatische voorraadwaardering doet, dan is dit het dagboek " +"waarin automatisch de boekingen worden gemaakt, wanneer de " +"voorraadverplaatsingen worden verwerkt." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" +"Wizard-model om een voorraadvoorraad voor een product opnieuw te evalueren" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "U kunt een product niet herwaarderen met een standaardkostenmethode." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "U kunt een product met geen of negatieve voorraad niet herwaarderen." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" +"U kunt de kosten van een product niet bijwerken bij geautomatiseerde " +"waardering, omdat dit leidt tot het creëren van een financiële boeking " +"waarvoor u geen toegangsrechten heeft." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Er is geen voorraadtoename rekening gedefinieerd op uw productcategorie. U " +"moet een er vóór de verwerking van deze bewerking definiëren." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"U heeft geen voorraadboek gedefinieerd op uw productcategorie, controleer of" +" u een rekeningschema heeft geïnstalleerd." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Er is geen voorraadwaardering rekening gedefinieerd op uw productcategorie. " +"U moet een er vóór de verwerking van deze bewerking definiëren." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "U moet een tegenrekening instellen voor uw productcategorie." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "in" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "voor" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "locaties" diff --git a/addons/stock_account/i18n/nl_BE.po b/addons/stock_account/i18n/nl_BE.po new file mode 100644 index 00000000..224eb765 --- /dev/null +++ b/addons/stock_account/i18n/nl_BE.po @@ -0,0 +1,738 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2015-11-12 13:29+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/odoo/odoo-9/" +"language/nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "Boekhouding" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Boekhoudkundige informatie" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "Gemiddelde prijs" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Annuleren" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Bedrijf" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Kost" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "Kostprijsbepaling" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Datum" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Groeperen op" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Voorraad" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Voorraad locaties" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "Voorraadwaardering" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "Voorraadwaarde" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Factuur" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Factuurlijn" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "Locatie" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "Beweging" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Prijs" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Product" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "Productcategorie" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Productsjabloon" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Aantallen" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "Partijnummer" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +#, fuzzy +msgid "Set standard price" +msgstr "Standaardprijs" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "Bron" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Standaardprijs" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "Voorraadbeweging" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Sjabloon boekhoudplan" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "Verkoopeenheid" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "Waarde" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Bij een real-time voorraadwaardering is dit het dagboek voor de automatische " +"boekingen in functie van de verwerkte voorraadbewegingen." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "_Toepassen" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "stock.config.settings" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "onbekend" diff --git a/addons/stock_account/i18n/pl.po b/addons/stock_account/i18n/pl.po new file mode 100644 index 00000000..bfdcd131 --- /dev/null +++ b/addons/stock_account/i18n/pl.po @@ -0,0 +1,920 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Grzegorz Grzelak , 2020 +# Judyta Kaźmierczak , 2020 +# Tomasz Leppich , 2020 +# Zdzisław Krajewski , 2020 +# Piotr Szlązak , 2020 +# Marcin Młynarczyk , 2020 +# Karol Rybak , 2020 +# Andrzej Donczew , 2020 +# Piotr Cierkosz , 2020 +# Paweł Wodyński , 2020 +# Maksym , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Maksym , 2020\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Szablon planów kont" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Konto przesunięcia" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Właściwości konta zapasów" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Data księgowania" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Zapisy księgowe" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Informacje księgowe" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatyczne" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Anuluj" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Firma" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Ustawienia konfiguracji" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Metoda wyceny" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Konto przeciwstawne" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Utworzona przez" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Waluta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Aktualna wartość" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Data" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" +"Domyślna jednostka miary stosowana dla wszystkich operacji magazynowych." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Opis" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentacja" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Grupuj wg..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Magazynowanie" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Strefy Magazynowe" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Wycena Magazynów" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Dziennik" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Zapis dziennika" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Pozycja zapisu" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Koszty nabycia" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Ostatnio aktualizowane przez" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Data ostatniej aktualizacji" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manualna" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Inne informacje" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produkt" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Kategoria produktu" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Przesunięcia produktu (pozycja przesunięcia zasobów)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Szablon produktu" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Ilość" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Kwanty" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Przyczyna" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Ilość pozostała" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Pobranie zwrotne" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Pozycja pobrania zwrotnego" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Wybierz kategorię dla bieżącego produktu" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Cena ewidencyjna" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Konto dla zapasów wchodzących" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Dziennik magazynowy" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Przesunięcie" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Konto dla zapasów wychodzących" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Historia ilości zasobów" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Konto wyceny zapasów" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Konto wyceny zapasów (wchodzących)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Konto wyceny zapasów (wydania)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Wartość Razem" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Pobranie" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Jednostka Miary" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Stosowane przy wycenie w czasie rzeczywistym. Jeśli ustawione w strefie " +"wirtualnej, to konto to będzie stosowane do wartości produktów przesuwanych " +"ze strefy wewnętrznej (do wirtualnej) zamiast konta dla wychodzących " +"ustawionego w produkcie." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Stosowane przy wycenie w czasie rzeczywistym. Jeśli ustawione w strefie " +"wirtualnej, to konto to będzie stosowane do wartości produktów przesuwanych " +"z tej strefy wirtualnej (do wewnętrznej) zamiast konta dla wychodzących " +"ustawionego w produkcie." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Wycena" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Wartość" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Ostrzeżenie" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "przez" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "do" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/pt.po b/addons/stock_account/i18n/pt.po new file mode 100644 index 00000000..b76b3467 --- /dev/null +++ b/addons/stock_account/i18n/pt.po @@ -0,0 +1,916 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Tiago Baptista, 2020 +# Manuela Silva , 2020 +# Pedro Castro Silva , 2020 +# Reinaldo Ramos , 2020 +# Pedro Filipe , 2020 +# Nuno Silva , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Nuno Silva , 2021\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Modelo de Plano de Contas" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Movimento de Conta" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Propriedades da Conta de Stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Data Contabilística" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Lançamentos da Contabilidade" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Informação contabilística" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Empresa" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Configurações" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Método de Custo" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Conta de Contrapartida" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Moeda" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Valor Atual" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Data" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Unidade de medida predefinida para todas as operações de inventário." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Descrição" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Documentação" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Agrupar por..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventário" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Localizações de Inventário" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Avaliação do inventário" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Diário" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Lançamento de Diário" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Item do Diário" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Custos de entrega" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Última Atualização em" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manual" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Outra Informação" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Artigo" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Categoria de Artigo" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Movimentos do artigo (movimentos de stock)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Modelo de Artigo" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Quantidade" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Quants" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Motivo" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Qtd Remanescente" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Operação de Devolução de Stock" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Selecione a categoria para o artigo atual" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Preço Padrão" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Conta de Entrada de Stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Diário de Stocks" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Movimento do Stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Conta de Saída de Stock" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Histórico de Quantidade de Stock" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Relatório de Reabastecimento de Inventário" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Conta avaliação de stock" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Conta de avaliação de stock (Incoming)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Conta de avaliação de stock (Outgoing)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Valor Total" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Transferência" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Unidade de medida" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para avaliar stock em tempo real. Quando aparece num local virtual (do" +" tipo interno não), essa conta será usada para armazenar o valor dos artigos" +" a serem transportados de um local interno para este local, em vez da conta " +"genérica do stock de saída definida sobre o artigo. Isto não tem efeito para" +" locais internos." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado em tempo real avaliação do stock. Quando aparece num local virtual (do" +" tipo interno não), essa conta será usada para armazenar o valor dos artigos" +" que estão a ser movidos para fora do local e numa localização interna, em " +"vez da conta genérica do stock de saída definida sobre o artigo. Isto não " +"tem efeito para locais internos." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Aviso" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "por" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "por" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/pt_BR.po b/addons/stock_account/i18n/pt_BR.po new file mode 100644 index 00000000..7ff11a44 --- /dev/null +++ b/addons/stock_account/i18n/pt_BR.po @@ -0,0 +1,989 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo , 2020 +# danimaribeiro , 2020 +# Martin Trigaux, 2020 +# Marcel Savegnago , 2020 +# Mateus Lopes , 2020 +# Luiz Carlos de Lima , 2020 +# falexandresilva , 2020 +# grazziano , 2020 +# André Augusto Firmino Cordeiro , 2020 +# Luiz Carareto Alonso , 2020 +# renato sabo , 2020 +# Vanderlei P. Romera , 2020 +# Éder Brito , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Éder Brito , 2021\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr " Custo do produto atualizado de %(previous)s para %(new_cost)s." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" +"%(user)s alterou o custo de %(previous)s para %(new_price)s - %(product)s" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" +"%(user)s alterou a valoração de estoque de %(previous)s para %(new_value)s " +"- %(product)s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" +")\n" +" Use um valor adicionado negativo para registrar uma diminuição no valor do produto" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "Defina outras contas de entrada/saída em " + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Modelo de Plano da Conta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Conta de Movimento" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Propriedades da Conta de Estoque" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Data Contábil" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Lançamentos Contábeis" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Informação Contábil" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "Adicionar Valoração Manual" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" +"Adicionar custo adicional (transporte, alfândega, ...) no valor do produto" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "Valor Adicionado" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "Valor adicionado" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Afeta os custos de destino nas operações de recebimento e dividi-los entre " +"os produtos para atualizar seu preço de custo." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatizado" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Custo médio (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Não é possível encontrar uma conta de estoque para o produto %s. Você deve " +"definir uma na categoria de produto, ou na localização, antes de processar " +"esta operação." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Não é possível encontrar uma conta de estoque para o produto %s. Você deve " +"definir uma na categoria de produto, ou na localização, antes de processar " +"esta operação." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Mudar seu método de custo é uma mudança importante que terá impacto na " +"valoração de seu estoque. Tem certeza de que deseja fazer essa alteração?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Empresa" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Definições de Configuração" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Erro de configuração. Configure a conta de diferença de preço no produto ou " +"sua categoria para processar essa operação." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Método de Custeio" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" +"Mudança de método de custeio para categoria de produto %s: de %s para %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Conta de Contrapartida" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" +"Os itens do diário de contrapartida para todas as movimentações de estoque de entrada serão lançados nesta conta, a menos que haja uma conta de valoração específica\n" +" definida no local de origem. Este é o valor padrão para todos os produtos desta categoria. Também pode ser definido diretamente em cada produto." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Moeda" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "Quantidade Atual" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Valor Atual" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Data" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Data em que os lançamentos contábeis serão criados no caso de valoração " +"automática de estoque. Se estiver vazio, a data do inventário será usada." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Unidade de medida padrão usada para todas as operações de estoque." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Descrição" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Documentação" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" +"Devido a uma mudança de categoria de produto (de %s para %s), o método de " +"cálculo de custeio mudou para o modelo de produto %s: de %s para %s." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "Primeiro a Entrar, primeiro a Sair (PIPS)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Agrupar por..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "Possui Movimentos de Conta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventário" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Locais de Inventário" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Valoração de Inventário" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "É Linha Anglo Saxônica" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Diário" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Lançamento de Diário" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Item de Diário" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Custos Adicionais" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "Vinculado a" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manual" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "Valoração de Estoque Manual: %s." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "Valoração de Estoque Manual: Nenhuma Razão Fornecida." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manual: os lançamentos contábeis para avaliar o estoque não são lançados automaticamente.\n" +" Automatizado: uma entrada contábil é criada automaticamente para avaliar o estoque quando um produto entra ou sai da empresa.\n" +" " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "Novo valor" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "Novo valor por quantidade" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "Valor em Mãos" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Outras informações" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" +"Defina uma conta de despesas para este produto: \"%s\" (id:%d) - ou para " +"esta categoria: \"%s\"." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Categoria de Produtos" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Movimentos do produto (Linha do Movimento do Estoque)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "Revaloração de Produto" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Modelo de Produto" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "Valor do produto modificado manualmente (de %s para %s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Quantidade" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "Quantidade Svl" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Qtds" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Motivo" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "Razão da revaloração" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "Produto relacionado" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Quantidade remanescente " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Valor restante" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Separação Devolvida" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Linha de Retorno de Separação" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "Revaloração de %s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "Revaloração" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Selecione a categoria para o produto atual" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Preço Padrão" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Preço Padrão: Os produtos são avaliados pelo custo padrão definido no produto.\n" +"Custo Médio (AVCO): Os produtos são avaliados pelo custo médio ponderado.\n" +"Primeiro a entrar, primeiro a sair (FIFO): Os produtos são avaliados supondo-se que aqueles que entrarem primeiro na empresa também sairão primeiro." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Conta de Entrada de Estoque" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Diário de Estoque" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Movimento de Estoque" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Conta de Saída do Estoque" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Histórico da Quantidade em Estoque" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Relatório de Reposição de Estoque" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Valoração de Estoque" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Conta de Valoração do Estoque" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Conta de Valoração de Estoque (Entrada)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Conta de Valoração do Estoque (Saída)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "Camada de Valoração de Estoque" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "Campo técnico utilizado para recuperar as linhas anglo-saxônicas." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" +"As contas de Entrada e/ou Saída de Estoque não podem ser iguais à conta de " +"Valoração de Estoque." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" +"A ação leva à criação de uma entrada de diário, para a qual você não tem " +"direitos de acesso." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "O valor agregado não tem impacto na valoração do estoque" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"As linhas de movimentação não estão em um estado consistente: algumas estão " +"entrando e outras saindo da empresa." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"As linhas de movimentação não estão em estados consistentes: elas estão " +"fazendo um intercompany em uma única etapa, enquanto deveriam passar pelo " +"local de trânsito intercompany." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"As linhas de movimentação não estão em estados consistentes: elas não " +"compartilham a mesma origem ou empresa de destino." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"Não há camadas de valoração. Camadas de valoração são criadas quando algumas" +" movimentações de produto devem impactar a valoração do estoque." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Valor Total" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Transferir" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Disparar uma diminuição da quantidade entregue / recebida no pedido de venda" +" / pedido de compra associado" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Valor Unitário" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Unidade de Medida" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "Atualizar quantidades em PV/PC" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para valoração do estoque em tempo real. Quando aparece em um local " +"virtual (tipo interno não), esta conta será usada para manter o valor de " +"produtos que estão sendo movidos de um local interno para este local, em vez" +" da conta Estoque de saída definida no produto. Isto não tem efeito para " +"locais internos." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Usado para valoração do estoque em tempo real. Quando aparece em um local " +"virtual (tipo interno não), esta conta será usada para manter o valor de " +"produtos que estão sendo movidos para fora do local e em um local interno, " +"em vez da conta genérica de Estoque de Saída definida no produto. Isto não " +"tem efeito para locais internos." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Valoração" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" +"Método de valoração alterado para a categoria do produto %s: de %s para %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Valor" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "Valor Svl" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Aviso" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Quando a valoração de estoque automatizada é habilitada em um produto, essa " +"conta manterá o valor atual dos produtos." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"Ao fazer a valoração de estoque automatizada, itens de diário de contrapartida para todas as movimentações de estoque de saída serão lançados nesta conta,\n" +" a menos que haja uma conta de valoração específica definida no local de destino. Este é o valor padrão para todos os produtos nesta categoria.\n" +" Também pode ser definida diretamente em cada produto." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Ao fazer a valoração de estoque automatizada, este é o Diário de " +"contabilidade, no qual as entradas serão lançadas automaticamente quando as " +"movimentações de estoque forem processadas." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "Modelo de assistente para revalorar o estoque de um produto" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "Você não pode revalorar um produto com um método de custo padrão." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "Você não pode revalorar um produto com estoque vazio ou negativo." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" +"Você não pode atualizar o custo de um produto na revaloração automática, " +"pois isso leva à criação de um lançamento contábil manual, para o qual você " +"não tem direitos de acesso." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Você não tem nenhuma conta de valoração de entrada definida em sua categoria" +" de produto. Você deve definir um antes de processar esta operação." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Você não tem nenhum diário de estoque definido em sua categoria de produto, " +"verifique se você instalou um plano de contas." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Você não tem nenhuma conta de avaliação de ações definida em sua categoria " +"de produto. Você deve definir um antes de processar esta operação." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" +"Você deve definir uma conta de contrapartida em sua categoria de produto." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "por" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "para" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "locais" diff --git a/addons/stock_account/i18n/ro.po b/addons/stock_account/i18n/ro.po new file mode 100644 index 00000000..4c903346 --- /dev/null +++ b/addons/stock_account/i18n/ro.po @@ -0,0 +1,979 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Fekete Mihai , 2020 +# Cozmin Candea , 2020 +# Hongu Cosmin , 2020 +# Dorin Hongu , 2020 +# Foldi Robert , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Foldi Robert , 2021\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "Costul produsului actualizat de la %(previous)s la %(new_cost)s." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" +"%(user)scost modificat de la%(previous)s la %(new_price)s - %(product)s" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" +"%(user)s a modificat valoarea stocului de la %(previous)s la %(new_value)s -" +" %(product)s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" +")\n" +" Folosiți o valoare adăugată negativă pentru a înregistra o descreștere în valoarea produsului " + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "Setați alte conturi de intrare/ieșire pe specific " + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Plan de Conturi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Mișcare contabilă" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Proprietăți Cont Stoc" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Dată contabilă" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Înregistrări contabile" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Informații Contabile" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "Adaugă evaluare manuală" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" +"Adăugați costuri adiționale (transport, personalizare, ...) în valoarea " +"produsului." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "Valoare adăugată" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "Valoare adăugată" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Afectează costurile adiționate operațiunilor de recepție și le împarte între" +" produse pentru a-și actualiza prețul de cost." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automat" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Costul mediu (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Anulează" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Nu se poate găsi un cont de intrare stoc pentru produsul %s. Trebuie să " +"definiți unul în categoria produsului sau în locație, înainte de a procesa " +"această operație." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Nu a fost găsit un cont de ieșire din stoc pentru produsul %s. Trebuie să " +"definiți unul în categoria de produs sau în locație înainte de a procesa " +"această operație." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Modificarea metodei dvs. de cost este o schimbare importantă care va afecta " +"evaluarea inventarului. Sunteți sigur că doriți să faceți această schimbare?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Companie" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Setări de configurare" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Eroare de configurare. Configurați contul de diferență de preț pentru " +"produsul sau categoria sa pentru a procesa această operațiune." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Metodă de cost" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" +"Schimbarea metodei de cost pentru categoria de produse %s: de la %s până la " +"%s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Cont omolog" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Creat în" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Moneda" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "Cantitatea actuală" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Valoare curentă" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Dată" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Data la care se vor crea intrările contabile în cazul evaluării automatizate" +" a inventarului. Daca este gol, data din inventar va fi utilizată." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Unitatea de măsură implicită folosită în toate operațiunile stocului." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Descriere" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Documentație" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" +"Datorită unei schimbări a unei categorii a unui produs ( de la %s până la " +"%s), metoda de calculare s-a schimbat pentru șablonul produsului %s: de la%s" +" până la %s." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "Primul intrat primul ieșit (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Grupează după..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "Are mișcări de cont" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Inventar" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Locații inventar" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Evaluarea stocurilor" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "Este linia anglo-saxonă" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Jurnal" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Notă contabilă" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Element jurnal" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Costuri adiționale" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare pe" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "Legat de " + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manual" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "Evaluarea manuală a stocului: %s." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "Evaluarea manuală a stocului: fără motiv." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manual: notele contabile pentru evaluarea inventarului nu sunt înregistrate automat.\n" +" Automatizat: o notă contabilă este creată automat pentru a evalua inventarul atunci când un produs intră sau iese din companie." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "Valoare nouă" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "Valoare nouă după cantitate" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "Valoare în stoc" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Alte informații" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" +"Vă rugăm să definiți contul de cheltuieli pentru acest produs: \"%s\" " +"(id:%d) - ori pentru categoria sa: \"%s\"." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produs" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Categorie produs" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Mișcări de produs (linie mișcare stoc)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "Reevaluare produs" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Șablon produs" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "Valoarea produsului modificată manual( de la%s până la%s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Cantitate" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "Cantitate Svl" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Poziții de stoc" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Motiv" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "Motivul reevaluării" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "Produs compatibil" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Cant rămasă" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Valoarea rămasă" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Retur Ridicare" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Linie Ridicare Retur" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "Reevaluarea lui %s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "Reevaluare" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Selectați categoria pentru produsul curent" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Preț standard" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Prețul standard: Produsele sunt evaluate la costul standard definit pe produs.\n" +"Costul mediu (AVCO): Produsele sunt evaluate la costul mediu ponderat.\n" +"First In First Out (FIFO): Produsele sunt evaluate presupunând că cele care intră în companie mai întâi o vor părăsi mai întâi." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Cont intrare în stoc" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Jurnal de stoc" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Mișcare stoc" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Cont ieșire din stoc" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Istoricul cantităților de stoc" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Raport Reaprovizionare Stoc" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Evaluare Stoc" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Cont Evaluare Stoc" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Cont pentru Inventarul Stocului (Intrare)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Cont pentru Inventarul Stocului (Iesire)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "Nivel evaluare stoc" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "Câmpul tehnic folosit pentru a recupera liniile anglo-saxone." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" +"Conturile de intrare și / sau de ieșire a stocurilor nu pot fi aceleași cu " +"contul de evaluare a stocului." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" +"Acțiunea conduce spre a fi creată o notă contabilă, pentru care nu aveți " +"dreptul de accesare." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "Valoarea adăugată nu are niciun impact asupra evaluării stocurilor" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Liniile de mișcare nu sunt într-o stare consistentă: unele intră iar altele " +"părăsesc compania." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Liniile de mișcare nu sunt într-o stare consistentă: nu împărtășesc aceeași " +"origine sau destinație a companiei." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"Nu există niveluri de evaluare. Nivelurile de evaluare sunt create atunci " +"când unele mișcări ale produsului ar trebui să afecteze evaluarea stocului." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Valoare totală" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Transfer" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Declanșează o scădere a cantității livrate/primite în Comanda de " +"Vânzare/Achiziție asociată." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Preț" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Unitatea de măsură" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "Actualizați cantitățile pe SO/PO" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Folosit pentru evaluarea stocului in timp-real. Atunci când este setat pe o " +"locație virtuala (de tip non intern), acest cont va fi folosit pentru a " +"menține valoarea produselor care sunt mutate dintr-o locatie interna in " +"aceasta locație, in locul Contulul general pentru Iesirea Stocului setat pe " +"produs. Acesta nu are niciun efect asupra locațiilor interne." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Folosit pentru evaluarea inventarului in timp-real. Atunci cand este setat " +"pe o locație virtuala (de tip non interna), acest cont va fi folosit pentru " +"a pastra valoarea produselor care sunt mutate din aceasta locație intr-o " +"locație interna, in loc de Contul general De Iesire a Stocului setat pentru " +"produse. Acesta nu are niciun efect asupra locațiilor interne." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Evaluare" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" +"Modificarea metodei de evaluare pentru categoria de produse %s: de la %s " +"până la %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Valoare" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "Valoare Svl" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Atenție" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Când este activată evaluarea automatizată a inventarului a unui produs, " +"acest cont va păstra valoarea curentă a produselor." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"La efectuarea evaluării automatizate a stocului, acesta este jurnalul " +"contabil în care intrările vor fi înregistrate automat atunci când sunt " +"procesate mișcările de stoc." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" +"Model wizard de reevaluare a unui inventar de stocuri pentru un produs" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "Nu puteți reevalua un produs cu metoda costului standard." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "Nu puteți reevalua un produs cu un stoc gol sau negativ." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" +"Nu puteți actualiza costului unui produs în metoda automatizată de evaluare " +"deoarece conduce la crearea unei note contabile, pentru care nu aveți " +"dreptul de acces." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Nu aveți niciun cont de evaluare a intrărilor definit în categoria " +"dumneavoastră de produse. Trebuie să definiți unu înainte de procedarea " +"acestei operațiuni." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"u aveți niciun jurnal de stoc definit în categoria dvs. de produse, " +"verificați dacă ați instalat un plan de conturi." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Nu aveți definit un cont de evaluare stoc în datele de baza ale produsului " +"sau în categorie. Trebuie să definiți unul înainte de a procesa această " +"operație." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "Trebuie să setați un cont de contrapartidă pe categoria de produse." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "de" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "pentru" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "locații" diff --git a/addons/stock_account/i18n/ru.po b/addons/stock_account/i18n/ru.po new file mode 100644 index 00000000..fbd12210 --- /dev/null +++ b/addons/stock_account/i18n/ru.po @@ -0,0 +1,953 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Максим Дронь , 2020 +# Denis Baranov , 2020 +# Gennady Marchenko , 2020 +# Martin Trigaux, 2020 +# Collex100, 2020 +# Ivan Yelizariev // IEL , 2020 +# Sergey Vilizhanin, 2020 +# Vasiliy Korobatov , 2020 +# ILMIR , 2020 +# Irina Fedulova , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Irina Fedulova , 2020\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Шаблон плана счетов" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "бухгалтерская проводка" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Свойства счёта запасов" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Дата сдачи отчётности" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Бухгалтерские проводки" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Учётная информация" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Влияние на дополнительные расходы на операции приема и распределение их " +"между товарами с целью обновления себестоимости." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "автоматически" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Средняя цена (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Отменить" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Не удается найти учетную запись входа в акции для продукта %s. Перед " +"обработкой этой операции необходимо определить ее в категории продукта или в" +" местоположении." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Невозможно найти учетную запись вывода запасов для продукта %s.. Перед " +"обработкой этой операции необходимо определить ее в категории продукта или в" +" местоположении." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Изменение метода расходов - это важная перемена, повлияет на оценку запасов." +" Вы уверены, что хотите внести эти изменения?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Компания" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Конфигурационные настройки" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Ошибка конфигурации. Чтобы обработать эту операцию, настройте учетную запись" +" разницы цен на продукте или его категории." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Метод ценообразования" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Корреспондирующий счет" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Создал" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Создан" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Валюта" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Текущее значение" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Дата" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Дата создания записей бухучета в случае автоматизированной оценки запасов. " +"Если она пуста, будет использована дата инвентаризации." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" +"Стандартная единица измерения, используемая для всех складских операций." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Описание" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Документация" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "First In First Out (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Группировать по…" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "Идентификатор" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Склад" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Места запасов" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Оценка запасов" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Журнал" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Запись журнала" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Элемент журнала" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Стоимость с издержками" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновил" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Последнее обновление" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Вручную" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Вручную бухгалтерьки записи для оценки состава не публикуются автоматически." +" Автоматизировано: бухгалтерская запись автоматически создается для оценки " +"состава, когда товар входит или выходит из компании." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Прочая информация" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Продукт" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Категория продукта" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Перемещение товара (Строка складского перемещения)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Шаблон продукта" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Количество" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Части" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Причина" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Оставшееся Кол-во" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "оценка остатка" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Возвратная Комплектация" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Вернуть строку комплектования" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Выберите категорию для продукта" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Стандартная цена" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Стандартная цена: товары оцениваются по их стандартной стоимости, " +"определенной на товаре. Средняя цена (AVCO): товары оцениваются по средней " +"стоимости. First In First Out (FIFO): товары оцениваются, считая, что те, " +"кто входит в компанию впервые, также оставят его сначала." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Счет стоимости входящих ТМЦ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Складской журнал" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Перемещение запасов" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Счет стоимости исходящих ТМЦ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "История складской количества" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "оценка состава" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Счёт оценки запасов" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Счёт оценки запаса (входяшего)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Счёт оценки запасов (исходящих)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Строки перемещение не являются стабильными: некоторые входят, а другие " +"оставляют компанию." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Строки перемещение не согласованы состояниями: они делают взаимодействие в " +"один шаг, пока они должны пройти через место транзита внутри компании." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Строки перемещение не являются последовательными состояниями: они не " +"разделяют одинаковую компанию происхождения и назначения." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Итоговая величина" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Перемещение" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Запускать уменьшение количества доставки / полученного количества в " +"соответствующем заказе на продажу / заказе на покупку" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Единица измерения" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Используется для оценки инвентаризации в реальном времени. Когда задан по " +"виртуальному месту хранения (не внутреннего типа), этот счёт будет " +"использован для хранения значения продуктов, перемещённых из внутреннего " +"места хранения в это место хранения, вместо заданного исходящего счёта в " +"товаре. Это не оказывает влияния на внутренние места хранения." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Используется для оценки инвентаризации в реальном времени. Когда задан по " +"виртуальному месту хранения (не внутреннего типа), этот счёт будет " +"использован для хранения значения продуктов, перемещённых из этого места " +"хранения во внутреннее место хранения, вместо заданного исходящего счёта в " +"товаре. Это не оказывает влияния на внутренние места хранения." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Оценка" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Объём" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Предупреждение" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Вы не имеете никакого журнала состава, определенного в вашей категории, " +"проверьте, установлен план счетов." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Вы не имеете каких-либо запасов учетной записи, определенной на вашей " +"категории продукта. Необходимо определить перед обработкой этой операции." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "по" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "для" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/si.po b/addons/stock_account/i18n/si.po new file mode 100644 index 00000000..6ea622f1 --- /dev/null +++ b/addons/stock_account/i18n/si.po @@ -0,0 +1,896 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/sk.po b/addons/stock_account/i18n/sk.po new file mode 100644 index 00000000..50871d03 --- /dev/null +++ b/addons/stock_account/i18n/sk.po @@ -0,0 +1,942 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Pavol Krnáč , 2020 +# Jaroslav Bosansky , 2020 +# gebri , 2020 +# Jan Prokop, 2020 +# Rastislav Brencic , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Rastislav Brencic , 2021\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Účtovná osnova" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Pohyb účtu" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Vlastnosti účtu skladu" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Účtovný dátum" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Účtovnícke vstupy" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Účtovná informácia" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Ovplyvňuje vzniknuté náklady pri príjme a rozdeľuje ich na jednotlivé " +"produkty pre aktualizáciu ceny nákladov." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Automatizovaný" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Priemerné náklady" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Zrušené" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Účet pre príjem na sklad nenájdený pre produkt %s. Musíte ho zadefinovať v " +"kategórii produktu, alebo pre lokáciu, kým možno pokračovať v operácii." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Účet pre výstup zo skladu nenájdený pre produkt %s. Musíte ho zadefinovať v " +"kategórii produktu, alebo pre lokáciu, kým možno pokračovať v operácii." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Zmena nákladovej metódy významne ovplyvní vaše ohodnotenie skladu. Ste si " +"istý že chcete vykonať túto zmenu?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Spoločnosť" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavenia konfigurácie" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Chyba konfigurácie. Nastavte prosím rozdielový účet na produkte alebo jeho " +"kategórii pre vykonanie tejto operácie." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Metóda kalkulácie" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Účet náprotivku" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Mena" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Aktuálna hodnota" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Dátum" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Dátum kedy budú vytvorené účtovné zápisy v prípade automatického ocenenia " +"skladu. Ak je prázdny, bude použitý dátum inventúry." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Predvolená merná jednotka používaná pre všetky skladové operácie." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Popis" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentácia" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "FIFO" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Zoskupiť podľa..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Sklad" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Umiestnenia inventúry" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Oceňovanie inventúry" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Účtovný denník" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Vstup účtovnej knihy" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Položka účtovnej knihy" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Dodacie náklady" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manuálne" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Iné info" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produkt" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Kategória produktu" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Pohyby produktu (riadok skladového pohybu)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Šablóna produktu" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Množstvo" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Kvanty" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Dôvod " + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Zostávajúce množstvo" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Zostávajúca hodnota" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Návratka" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Riadok návratky" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Vyberte kategóriu pre aktuálny produkt" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Štandardná cena" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Štandardná cena: Produkty sú ocenené podľa svojich štandardných nákladov definovaných na produkt.\n" +" Priemerná nákupná cena: Produkty sú ocenené podľa priemernej váženej nákupnej ceny.\n" +" First In First Out (FIFO): Produkty sú ocenené podľa zásady, že tie ktoré vstúpili na sklad prvé budú mať výstup ako prvé." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Účet vstupov skladu" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Skladová účtovná kniha" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Pohyb skladu" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Účet výstupov skladu" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "História skladového množstva" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Hodnota skladu" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Účet hodnotenia skladu" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Účet hodnotenia skladu (Prichádzajúce)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Účet hodnotenia skladu (Odchádzajúce)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Riadky pohybu nie sú v konzistentom stave; niektoré vstupujú a iné opúšťajú " +"spoločnosť." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Riadky pohybu nie sú v konzistentom stave; nemajú rovnakú zdrojovú alebo " +"cieľovú spoločnosť." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Celková hodnota" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Prevod" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Vyvolá zníženie dodaného/obdržaného množstva v príslušnej predajnej/nákupnej" +" objednávke" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Merná jednotka" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Pouźívané pre oceňovanie zásob v reálnom čase. Keď je nastavený na " +"virtuálnu lokáciu (neinterný typ), tento účet bude použitý na držanie " +"hodnoty produktu presúvaného z internej lokácie do tejto lokácie, namiesto " +"všeobecného Účtu skladových výstupov nastavenom pre tento produkt. Toto nemá" +" žiadny efekt na interné lokácie." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Pouźívané pre oceňovanie zásob v reálnom čase. Keď je nastavený na " +"virtuálnu lokáciu (neinterný typ), tento účet bude použitý na držanie " +"hodnoty produktu presúvaného z internej lokácie do tejto lokácie, namiesto " +"všeobecného Účtu skladových výstupov nastavenom pre tento produkt. Toto nemá" +" žiadny efekt na interné lokácie." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Ocenenie" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Hodnota" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Varovanie" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Keď robíte automatické ocenenie zásob, jedná sa o účtovný denník, v ktorom " +"sa záznamy automaticky zaúčtujú pri spracovaní pohybov zásob." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Nemáte definovanú žiadnu účtovnú knihu pre vaśu kategóriu produktu, " +"skontrolujte či máte nainštalovanú účtový rozvrh." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Nemáte zadefinovaný účet hodnoty skladu pre kategóriu produktu. Musíte ho " +"zadefinovať pred pokračovaním operácie." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "pomocou" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "pre" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/sl.po b/addons/stock_account/i18n/sl.po new file mode 100644 index 00000000..c8bd707a --- /dev/null +++ b/addons/stock_account/i18n/sl.po @@ -0,0 +1,919 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic , 2021 +# Vida Potočnik , 2021 +# laznikd , 2021 +# matjaz k , 2021 +# Boris Kodelja , 2021 +# Grega Vavtar , 2021 +# Jasmina Macur , 2021 +# Tadej Lupšina , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Tadej Lupšina , 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "Nastavite druge vhodno / izhodne račune za določene " + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Predloga kontnega načrta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Lastnosti konta zalog" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Knjigovodski datum" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Računovodske vknjižbe" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Računovodski podatki" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "Beležite dodatne stroške (prevoz, carina) na vrednost izdelka." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Operacije prejema naj vplivajo na odvisne stroške dobave. Stroški dobave naj" +" se razdelijo med proizvode in posodobijo njihovo lastno ceno." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Samodejno" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Povprečni stroški (POST)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Prekliči" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Spreminjanje stroškovne metode je pomembna sprememba, ki bo vplivala na " +"vrednotenje zalog. Ali ste prepričani, da želite to spremeniti?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Podjetje" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Uredi nastavitve" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Metoda stroškov" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Proti konto" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Valuta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Tekoča vrednost" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Datum" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Privzeta merska enota, ki se uporablja za vse operacije z zalogami." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Opis" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentacija" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "First In First Out (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Združi po..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Zaloga" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Lokacije inventure" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Vrednotenje zaloge" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Dnevnik" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Temeljnica" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Postavka" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Odvisni stroški dobave" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Ročno" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Ostale informacije" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Proizvod" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Kategorija proizvoda" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Predloga izdelka" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Količina" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Kvanti" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Razlog" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Preostala količina" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Vračila" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Izbira kategorije za trenutni izdelek" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Standardna cena" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Konto prejema" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Dnevnik zaloge" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Premik zaloge" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Konto izdaje zaloge" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Poročilo o polnjenju zalog" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Vrednotenje zalog" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Konto vrednotenja zaloge" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Konto vrednotenja zalog (Vhodni)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Konto vrednotenja zalog (Izhodni)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Skupna vrednost" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Prenos" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Enota mere" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Se uporablja za vrednotenje zaloge v realnem času. Če je konto nastavljen na" +" virtualni lokaicji (ne interni tip), bo na kontu knjižena vrednost " +"proizvodov, ki so prestavljani iz interne lokacije na to lokacijo; namesto " +"uporabe osnovnega Konta Izhoda Zaloge, ki je nastavljen na artiklu. To nima " +"učinka za interne lokacije." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Uporablja se za sprotno vrednotenje zalog. Nima efekta na internih " +"lokacijah." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Vrednotenje" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Vrednost" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Opozorilo" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "po" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "za" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "lokacije" diff --git a/addons/stock_account/i18n/sq.po b/addons/stock_account/i18n/sq.po new file mode 100644 index 00000000..39d5af6b --- /dev/null +++ b/addons/stock_account/i18n/sq.po @@ -0,0 +1,740 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2016-03-31 14:10+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Albanian (http://www.transifex.com/odoo/odoo-9/language/sq/)\n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "Anullo" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "Kompani" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "Krijuar nga" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "Krijuar me" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "Data" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "Emri i paraqitur" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "Grupo Nga" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Invoice" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linja Invoice-it" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "Modifikimi i fundit në" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "Modifikuar per here te fundit nga" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "Modifikuar per here te fundit me" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "Produkti" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "Shëmbull i Produktit" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Set standard price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "" + +#~ msgid "Asset Type" +#~ msgstr "Tipi i Asetit" + +#~ msgid "Deferred Revenue Type" +#~ msgstr "Tipi i të Ardhurave të Shtyra" diff --git a/addons/stock_account/i18n/sr.po b/addons/stock_account/i18n/sr.po new file mode 100644 index 00000000..30bfac9b --- /dev/null +++ b/addons/stock_account/i18n/sr.po @@ -0,0 +1,681 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:146 +#: code:addons/stock_account/models/product.py:152 +#, python-format +msgid "%s changed cost from %s to %s - %s" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +msgid "Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Računovodstveni unosi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Archived" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Available Products" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Cancel" +msgstr "Otkaži" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:510 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:512 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Category" +msgstr "Kategorija" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:405 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:587 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Cost Method" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Costing" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_cost_method +msgid "Costing Method" +msgstr "Metod obračuna troškova" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__counterpart_account_id_required +msgid "Counter-Part Account Required" +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.product_valuation_action +msgid "Create a new product valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__create_uid +msgid "Created by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventoy date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Exhausted Stock" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price__new_price +msgid "" +"If cost price is increased, stock variation account will be debited and stock output account will be credited with the value = (difference of amount * quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.product_valuation_action +msgid "If there are products, you will see its name and valuation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Include landed costs in product cost" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Popis" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_quantity_history.py:25 +#: model:ir.actions.act_window,name:stock_account.action_stock_inventory_valuation +#: model:ir.actions.act_window,name:stock_account.product_valuation_action +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Red računa" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +msgid "Journal Entries" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price____last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__write_date +msgid "Last Updated on" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +msgid "Manual" +msgstr "Ručno" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Negative Stock" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:128 +#, python-format +msgid "No difference between the standard price and the new price." +msgstr "" + +#. module: stock_account +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price__new_price +msgid "Price" +msgstr "Cena" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_procurement_group +msgid "Procurement Group" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +msgid "Product Category" +msgstr "Kategorija proizvoda" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +msgid "Product Template" +msgstr "Šablon proizvoda" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__qty_at_date +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Quantity" +msgstr "Kolicina" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Reference" +msgstr "Referenca" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history +msgid "Retrieve the inventory valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Standardna cena" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__property_cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_fifo_manual_move_ids +msgid "Stock Fifo Manual Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_fifo_real_time_aml_ids +msgid "Stock Fifo Real Time Aml" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_stock_account_input +msgid "Stock Input Account" +msgstr "Nalog ulaznih zaliha" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:26 +#: code:addons/stock_account/__init__.py:31 +#: code:addons/stock_account/models/account_chart_template.py:15 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "Dnevnik zaliha" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +msgid "Stock Move" +msgstr "Premesti skladiste" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product__property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template__property_stock_account_output +msgid "Stock Output Account" +msgstr "Izlazni nalog zaliha" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_product_tree2 +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:536 +#, python-format +msgid "" +"The cost of %s is currently equal to 0. Change the cost or the configuration" +" of your product to avoid an incorrect valuation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:358 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:369 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:367 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "To Refund (update SO/PO)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation_at_date +msgid "Unit of Measure" +msgstr "Jedinica Mere" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Update Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_product_tree2 +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:246 +#, python-format +msgid "Valuation at date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_value +#: model:ir.model.fields,field_description:stock_account.field_stock_move__value +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_account_aml +msgid "Value" +msgstr "Vrednost" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:404 +#, python-format +msgid "Warning" +msgstr "Upozorenje" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each" +" product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template__property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set" +" on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product__property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template__property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:508 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:130 +#: code:addons/stock_account/models/stock.py:514 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" diff --git a/addons/stock_account/i18n/sr@latin.po b/addons/stock_account/i18n/sr@latin.po new file mode 100644 index 00000000..11ed5008 --- /dev/null +++ b/addons/stock_account/i18n/sr@latin.po @@ -0,0 +1,615 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux , 2017 +# Nemanja Dragovic , 2017 +# Djordje Marjanovic , 2017 +# Ljubisa Jovev , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-10 11:34+0000\n" +"PO-Revision-Date: 2017-10-10 11:34+0000\n" +"Last-Translator: Ljubisa Jovev , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +msgid "Account Entry" +msgstr "Računovodstveni unos" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move_account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Stavke knjiženja" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings_module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on receipt operations and split them among products to " +"update their cost price." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +msgid "Automated" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cancel" +msgstr "Odustani" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:409 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:411 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_move_valuation_action +msgid "Click to create a stock movement." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:480 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "Cijena koštanja" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +msgid "Cost Method" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Costing" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "Metod obračuna troškova" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id_required +msgid "Counter-Part Account Required" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +msgid "Created on" +msgstr "Datum kreiranja" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and stock output account will be credited with the value = (difference of amount * quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.product_valuation_action +msgid "If there are products, you will see its name and valuation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Include landed costs in product cost" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Skladište" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.product_template_valuation_form_view +#: model_terms:ir.ui.view,arch_db:stock_account.product_valuation_form_view +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka računa" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +msgid "Last Modified on" +msgstr "Zadnja promena" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +msgid "Last Updated by" +msgstr "Promenio" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +msgid "Last Updated on" +msgstr "Vreme promene" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +msgid "Manual" +msgstr "Ručno" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation +msgid "Moves" +msgstr "Premeštanja" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:128 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Packing Operation" +msgstr "" + +#. module: stock_account +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "Cijena" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_procurement_group +msgid "Procurement Requisition" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model_terms:ir.ui.view,arch_db:stock_account.product_valuation_tree +msgid "Product" +msgstr "Proizvod" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +msgid "Product Category" +msgstr "Grupa proizvoda" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.product_valuation_action +msgid "Product Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation +msgid "Qty" +msgstr "Kol." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_valuation_tree +msgid "Quantity on Hand" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation +msgid "Reference" +msgstr "Šifra" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move_remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move_remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +msgid "Set standard cost" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "Standardna cena" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:145 +#: code:addons/stock_account/models/product.py:150 +#, python-format +msgid "Standard Price changed - %s" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "Nalog ulaznih zaliha" + +#. module: stock_account +#: code:addons/stock_account/models/account_chart_template.py:15 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "Dnevnik zaliha" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_move_stock_move_id +msgid "Stock Move" +msgstr "Skladišni prenosi" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_move_valuation_action +msgid "Stock Moves" +msgstr "Prenosnice" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "Izlazni nalog zaliha" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_valuation_tree +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.actions.server,name:stock_account.action_stock_account_valuation_report +msgid "Stock Valuation Report" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "Sabloni kontnog plana" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:435 +#, python-format +msgid "" +"The cost of %s is currently equal to 0. Change the cost or the configuration" +" of your product to avoid an incorrect valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move_to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line_to_refund +msgid "To Refund (update SO/PO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_valuation_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move_to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line_to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_tree_valuation +msgid "Unit of Measure" +msgstr "Jedinica mere" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Update Cost" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_stock_value +#: model:ir.model.fields,field_description:stock_account.field_stock_move_value +msgid "Value" +msgstr "Vrijednost" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each" +" product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set" +" on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock.py:407 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:130 +#: code:addons/stock_account/models/stock.py:413 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "res.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "stock.return.picking.line" +msgstr "" diff --git a/addons/stock_account/i18n/stock_account.pot b/addons/stock_account/i18n/stock_account.pot new file mode 100644 index 00000000..16ff3f2b --- /dev/null +++ b/addons/stock_account/i18n/stock_account.pot @@ -0,0 +1,896 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-10-02 14:11+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/sv.po b/addons/stock_account/i18n/sv.po new file mode 100644 index 00000000..c0e5b791 --- /dev/null +++ b/addons/stock_account/i18n/sv.po @@ -0,0 +1,905 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Kristoffer Grundström , 2021 +# Martin Trigaux, 2021 +# Anders Wallenquist , 2021 +# lasch a , 2021 +# Haojun Zou , 2021 +# Daniel Osser , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Daniel Osser , 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Kontoplan" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Bokföringsdatum" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Verifikat" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Konteringsinformation" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Avbryt" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Bolag" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurationsinställningar" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Metod för kostpris" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Motkonto" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Valuta" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Datum" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Beskrivning" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokumentation" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Gruppera efter ..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Lager" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Inventeringsställe" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Lagervärdering" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Journal" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Verifikat" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Transaktion" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manuell" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Annan info" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Produkt" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Produktkategori" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Produktmall" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Antal" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Kvantiteter" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Anledning" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Välj kategori för denna produkt" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Standardpris" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Lagerkonto inkommande" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Stock Journal" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Lagerflytt" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Lagerkonto utgående" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Flytt" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Måttenhet" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Värde" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Varning" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "av" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/ta.po b/addons/stock_account/i18n/ta.po new file mode 100644 index 00000000..0b7bee84 --- /dev/null +++ b/addons/stock_account/i18n/ta.po @@ -0,0 +1,736 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:06+0000\n" +"PO-Revision-Date: 2016-02-11 12:56+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Tamil (http://www.transifex.com/odoo/odoo-9/language/ta/)\n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "# of Products" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_config_settings_inherit +msgid "Accounting" +msgstr "கணக்கு" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_change_standard_price.py:62 +#, python-format +msgid "Active ID is not set in Context." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_group_stock_inventory_valuation +msgid "" +"Allows to configure inventory valuations on products and product categories." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Average Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_can_be_expensed +msgid "Can be expensed" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Cancel" +msgstr "ரத்து" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:278 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on " +"the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:280 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Price" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_view_change_standard_price +#: model:ir.model,name:stock_account.model_stock_change_standard_price +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Change Standard Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose a date in the past to get the inventory at that date." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory_accounting_date +msgid "" +"Choose the accounting date at which you want to value the stock moves " +"created by the inventory instead of the default one (the inventory end date)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Choose your date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_coeff +msgid "" +"Coefficient to convert default Unit of Measure to Unit of Sale uos = uom * " +"coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_company_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Company" +msgstr "நிறுவனம்" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Compute from average price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:351 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "Cost" +msgstr "செலவு" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_counterpart_account_id +msgid "Counter-Part Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_uid +msgid "Created by" +msgstr "உருவாக்கியவர்" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_create_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_create_date +msgid "Created on" +msgstr "" +"உருவாக்கப்பட்ட \n" +"தேதி" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_date +msgid "Date" +msgstr "தேதி" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_history_display_name +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_display_name +msgid "Display Name" +msgstr "காட்சி பெயர்" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory_accounting_date +msgid "Force Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Group By" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_id +#: model:ir.model.fields,field_description:stock_account.field_stock_history_id +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_change_standard_price_new_price +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'. The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,help:stock_account.field_product_template_property_valuation +msgid "" +"If perpetual valuation is enabled for a product, the system will " +"automatically create journal entries corresponding to stock moves, with " +"product price as specified by the 'Costing Method'The inventory variation " +"account set on the product category will represent the current inventory " +"value, and the stock input and stock output account will hold the " +"counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "Include landed costs in product costing computation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "" +"Install the module that allows to affect landed costs on pickings, and split " +"them onto the different products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_group_stock_inventory_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_inventory_value +msgid "Inventory Value" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.action_wizard_stock_valuation_history +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_choose_date +#: model:ir.ui.menu,name:stock_account.menu_action_wizard_valuation_history +msgid "Inventory at Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice +msgid "Invoice" +msgstr "விலைப்பட்டியல்" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_config_settings_module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price___last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_history___last_update +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history___last_update +msgid "Last Modified on" +msgstr "கடைசியாக திருத்திய" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_uid +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_uid +msgid "Last Updated by" +msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_write_date +#: model:ir.model.fields,field_description:stock_account.field_wizard_valuation_history_write_date +msgid "Last Updated on" +msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_location_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Location" +msgstr "" + +#. module: stock_account +#: model:res.groups,name:stock_account.group_inventory_valuation +msgid "Manage Inventory Valuation and Costing Methods" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Move" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:125 +#: code:addons/stock_account/product.py:187 +#, python-format +msgid "No difference between standard price and new price!" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,module_stock_landed_costs:0 +msgid "No landed costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_date +msgid "Operation Date" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Periodic (manual)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Periodic inventory valuation (recommended)" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_valuation:0 +#: selection:product.template,property_valuation:0 +msgid "Perpetual (automated)" +msgstr "" + +#. module: stock_account +#: selection:stock.config.settings,group_stock_inventory_valuation:0 +msgid "Perpetual inventory valuation (stock move generates accounting entries)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_change_standard_price_new_price +msgid "Price" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product" +msgstr "தயாரிப்பு" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_alert_time +msgid "Product Alert Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_categ_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_life_time +msgid "Product Life Time" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_quantity +msgid "Product Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_removal_time +msgid "Product Removal Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_history_product_template_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Product Template" +msgstr "தயாரிப்பு டெம்ப்ளேட்" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_use_time +msgid "Product Use Time" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Real Price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the Inventory Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_wizard_valuation_history +msgid "Retrieve the curent stock valuation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_serial_number +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +msgid "Serial Number" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.product_variant_easy_edit_view_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_template_property_form +msgid "Set standard price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_source +msgid "Source" +msgstr "ஆதாரம்" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_uos_id +msgid "" +"Specify a unit of measure here if invoicing is made in another unit of " +"measure than inventory. Keep empty to use the default unit of measure." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_can_be_expensed +msgid "Specify whether the product can be selected in an HR expense." +msgstr "" + +#. module: stock_account +#: selection:product.category,property_cost_method:0 +#: selection:product.template,property_cost_method:0 +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/product.py:138 +#: code:addons/stock_account/product.py:145 +#: code:addons/stock_account/product.py:199 +#: code:addons/stock_account/product.py:205 +#, python-format +msgid "Standard Price changed" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_template_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +" Average Price: The cost price is recomputed at each " +"incoming shipment and used for the product valuation.\n" +" Real Price: The cost price displayed is the price of the " +"last outgoing product (will be use in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_cost_method +msgid "" +"Standard Price: The cost price is manually updated at the end of a specific " +"period (usually once a year).\n" +"Average Price: The cost price is recomputed at each incoming shipment and " +"used for the product valuation.\n" +"Real Price: The cost price displayed is the price of the last outgoing " +"product (will be used in case of inventory loss for example)." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_input_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_input +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:464 +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_journal +#, python-format +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_stock_history_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_account_output_categ_id +#: model:ir.model.fields,field_description:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,field_description:stock_account.field_product_template_property_stock_account_output +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category_property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location_valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_history.py:31 +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_graph +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_pivot +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_search +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +#, python-format +msgid "Stock Value At Date" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:306 +#, python-format +msgid "" +"The found valuation amount for product %s is zero. Which means there is " +"probably a configuration error. Check the costing method and the standard " +"price" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_history_report_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_coeff +msgid "Unit of Measure -> UOS Coeff" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_uos_id +msgid "Unit of Sale" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location_valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_history_price_unit_on_quant +msgid "Value" +msgstr "மதிப்பு" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_alert_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before an " +"alert should be notified." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_life_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods may become dangerous and must not be consumed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_removal_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods should be removed from the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_use_time +msgid "" +"When a new a Serial Number is issued, this is the number of days before the " +"goods starts deteriorating, without being dangerous yet." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_input_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. This is the default " +"value for all products in this category. It can also directly be set on each " +"product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_input +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_input +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"incoming stock moves will be posted in this account, unless there is a " +"specific valuation account set on the source location. When not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_account_output_categ_id +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. This is the " +"default value for all products in this category. It can also directly be set " +"on each product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_product_property_stock_account_output +#: model:ir.model.fields,help:stock_account.field_product_template_property_stock_account_output +msgid "" +"When doing real-time inventory valuation, counterpart journal items for all " +"outgoing stock moves will be posted in this account, unless there is a " +"specific valuation account set on the destination location. When not set on " +"the product, the one from the product category is used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_journal +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category_property_stock_valuation_account_id +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_wizard_valuation_history +msgid "Wizard that opens the stock valuation history table" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:276 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/stock_account.py:282 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category. " +"You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_change_standard_price +msgid "_Apply" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_config_settings +msgid "stock.config.settings" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_history +msgid "stock.history" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template_valuation +msgid "unknown" +msgstr "" diff --git a/addons/stock_account/i18n/th.po b/addons/stock_account/i18n/th.po new file mode 100644 index 00000000..55483297 --- /dev/null +++ b/addons/stock_account/i18n/th.po @@ -0,0 +1,904 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Seksan Poltree , 2020 +# Khwunchai Jaengsawang , 2020 +# Pornvibool Tippayawat , 2020 +# Odoo Thaidev , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Odoo Thaidev , 2020\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "แม่แบบแผนภูมิลูกค้าองค์กร" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "วันที่ลงบัญชี" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "รายการบัญชี" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "ข้อมูลทางบัญชี" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "บริษัท" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "การตั้งค่า" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "บัญชีคู่" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "สกุลเงิน" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "วันที่" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Default unit of measure used for all stock operations." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "รายละเอียด" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "เอกสารกำกับ" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "จัดกลุ่มโดย…" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "รหัส" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "สินค้าคงคลัง" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "ตำแหน่งสินค้าคงคลัง" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "สมุดรายวัน" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "รายการบันทึกบัญชี" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "รายการสมุดบัญชีรายวัน" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Landed Costs" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "ด้วยตนเอง" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "ข้อมูลอื่น ๆ" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "สินค้า" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "หมวดหมู่สินค้า" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "เคลื่อนย้ายสินค้า ( ในสต็อค )" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "รูปแบบสินค้า" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "จำนวน" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "วิเคราะห์ปริมาณ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "เหตุผล" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "ปริมาณคงเหลือ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "มูลค่าคงเหลือ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "ส่งคืนการหยิบ" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "ราคามาตรฐาน" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "สมุดรายวันสต็อก" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "ย้ายสต็อก" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "ประวัติปริมาณสต็อค" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "การโอน" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "หน่วยวัด" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "มูลค่า" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "คำเตือน" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "โดย" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/tr.po b/addons/stock_account/i18n/tr.po new file mode 100644 index 00000000..475c0f2f --- /dev/null +++ b/addons/stock_account/i18n/tr.po @@ -0,0 +1,967 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Levent Karakaş , 2020 +# Murat Kaplan , 2020 +# Ahmet Altinisik , 2020 +# Güven YILMAZ , 2020 +# Ertuğrul Güreş , 2020 +# Gökhan Erdoğdu , 2020 +# Umur Akın , 2020 +# abc Def , 2020 +# Tugay Hatıl , 2020 +# Ediz Duman , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Ediz Duman , 2020\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Hesap Planı Şablonu" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Yevmiye Kaydı" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Muhasebe Hesapları" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Muhasebe Tarihi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Muhasebe Kayıtları" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Muhasebe Bilgisi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "Ürünün değerine ek maliyet (nakliye, gümrük, ...) ekleyin." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Malın bedelini güncellemek için, ek maliyetleri ürünler arasında bölün ve " +"ürün maliyetlerinin üzerine yükleyin." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Otomatik" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Ortalama Maliyet (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "İptal et" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Bu ürün için bir stok giriş hesabı bulunamadı %s. Ürün kategorisi veya konum" +" üzerinde bir stok giriş hesabı seçmeden bu operasyonu tamamlayamazsınız." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Bu ürün için bir stok çıkış hesabı bulunamadı %s. Ürün kategorisi veya konum" +" üzerinde bir stok giriş hesabı seçmeden bu operasyonu tamamlayamazsınız." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Maliyet yönteminizi değiştirmek, stok değerlerinize önemli etki yapabilecek " +"bir değişikliktir.Bu değişikliği yapmak istediğinizden emin misiniz?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Şirket" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Yapılandırma Ayarları" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Yapılandırma Hatası : Lütfen bu işlemi yapabilmek için öncelikle fiyat farkı" +" hesabını ürün veya ürün kategorisi üzerinde yapılandırın." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Maliyet Yöntemi" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "%s ürün kategorisi için maliyetlendirme yöntemi değişikliği: - %s- %s" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Karşı Hesap" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Oluşturulma" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Para Birimi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Güncel Değer" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Tarih" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Otomatik envanter değerlemesi durumunda muhasebe kayıtlarının oluşturulacağı" +" tarih. Boşsa, envanter tarihi kullanılacaktır." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Bütün stok hareketleri için kullanılan varsayılan ölçü birimi." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Açıklama" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Dokümantasyon" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" +"Ürün kategorisindeki bir değişiklik nedeniyle (%sile %sarasında), %sürün " +"şablonu için maliyet yöntemi değişti: %sile%s arasında." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "İlk Giren İlk Çıkar (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Grupla ..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "Hesap Hareketi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Stok" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Stok Konumları" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Envanter Yöntemi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "Anglo Saxon Satırı mı?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Yevmiye" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Yevmiye Kaydı" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Yevmiye Kalemi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Maliyet Yüklemeleri" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Son Güncelleyen" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Son Güncelleme" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "İle bağlantılı" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Manuel" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Manuel: Stok değeri veren muhasebe kayıtları,otomatik olarak postalanmaz. \n" +"Otomatik: Bir ürün şirkete girdiğinde veya şirketten ayrıldığında envantere değer vermek için otomatik olarak bir muhasebe girişi oluşturulur. " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Diğer Bilgiler" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" +"Lütfen \"%s\"(id:%d) ürünü için veya \"%s\" kategorisi için masraf hesabı " +"tanımlayın." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Ürün" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Ürün Kategorisi" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Ürün Hareketleri (Stok Hareket Satırları)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Ürün Şablonu" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "Manuel olarak değiştirilen ürün değeri (%sile %sarasında)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Miktar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "Miktar" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Stoklar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Sebep" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Kalan Miktar" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Envanter" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Ters Transfer" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Ters Transfer Satırları" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Geçerli ürün için kategori belirtin" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Standart Maliyet" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Standart Maliyet : Ürünler tanımlanan standart maliyetlerine göre değerlenir.\n" +"Ortalama Maliyet (AVCO): Ürünler ağırlıklı ortalama maliyetine göre değerlenir.\n" +"First in First Out (FIFO): Ürünler, şirkete önce girenlerin, ilk önce de bırakacaklarını var sayar." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Stok Giriş Hesabı" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Stok Yevmiyesi" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Stok Hareketi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Stok Çıkış Hesabı" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Stok Miktarının Geçmişi" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Stok İkmal Raporu" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Stok Değerleme" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Stok Değerleme Hesabı" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Stok Değerleme Hesabı (Gelen)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Stok Değerleme Hesabı (Çıkan)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "Stok Değerleme Katmanı" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "Anglo-sakson satırlarını almak için kullanılan teknik alan." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Hareket satırları istikrarlı bir durumda değildir: Bazıları girilir, " +"diğerleri şirketten ayrılır." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Hareket çizgileri tutarlı bir durumda değil: şirketler arası geçiş " +"konumundan geçmeleri gerektiğinde tek bir adımda şirketler arası ilişkiler " +"yapıyorlar." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Hareket satırları istikrarlı bir durumda değil: aynı başlangıcı ya da hedefi" +" paylaşmıyorlar. " + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"Değerleme katmanı yoktur. Değerleme katmanları, bazı ürün hareketlerinin " +"stok değerlemesini etkilemesi gerektiğinde oluşturulur." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Toplam Değer" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Aktarım" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"ilişkili Satış/Satın Alma Siparişinde ki teslimat/alınan miktarındaki düşüşü" +" tetikle." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Birim Değeri" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Ölçü Birimi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "SO/PO üzerindeki miktarları güncelle" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Gerçek zamanlı stok değerlendirmesi için kullanılır. Sanal bir konuma (iç " +"türde olmayan) ayarlandığında, bu hesap, üründe ayarlananan genel Stok " +"Çıkışı Hesabı yerine, iç konumdan taşınan ve bu konuma giren ürünlerin " +"değerini tutmakta kullanılacaktır. Bunun iç konumlara bir etkisi " +"olmayacaktır." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Gerçek zamanlı stok değerlendirmesi için kullanılır. Sanal bir konuma (iç " +"türde olmayan) ayarlandığında, bu hesap, üründe ayarlanana genel Stok " +"Çıkışı Hesabı yerine, bu konumdan taşınan ve iç konuma giren ürünlerin " +"değerini tutmakta kullanılacaktır. Bunun iç konumlara bir etkisi " +"olmayacaktır." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Değerleme" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" +"%s ürün kategorisi için değerleme yöntemi değişikliği: - %sile %sarasında." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Değer" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "Değer svl" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "İkaz" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Bir üründe otomatik envanter değerlemesi etkinleştirildiğinde, bu hesap " +"ürünlerin geçerli değerini tutacaktır." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"Gerçek-zamanlı envanter değerlemesi yaparken, hedef konuma özel bir " +"değerleme hesabı ayarlanmadıkça, çıkan tüm stok hareketlerinin yevmiye " +"kalemleri bu hesaba işlenecektir. Bu, bu kategorideki tüm ürünler için " +"varsayılan değerdir. Aynı zamanda her ürün için de doğrudan ayarlanabilir." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Otomatik envanter değerlemesi yapılırken, bu, stok hareketleri işlendiğinde " +"girişlerin otomatik olarak kaydedileceği Muhasebe Yevmiyesi'dir." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Ürün kategorinizde tanımlanmış bir giriş değerleme hesabınız yok. Bu işlemi " +"gerçekleştirmeden önce bir tane tanımlamanız gerekir." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Ürün kategorisine tanımlı bir stok yevmiyesi bulunamadı. Eğer muhasebe hesap" +" planı yüklediyseniz bunu mutlaka kontrol edin." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Ürün kategorisine tanımlı bir stok değerleme hesabı bulunamadı. Bu " +"operasyonu gerçekleştirmek için öncelikle bu hesabı tanımlamalısınız." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "Talebi karşılayan: " + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "için" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/uk.po b/addons/stock_account/i18n/uk.po new file mode 100644 index 00000000..b4df8453 --- /dev/null +++ b/addons/stock_account/i18n/uk.po @@ -0,0 +1,964 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# Bohdan Lisnenko, 2020 +# ТАрас , 2020 +# Alina Lisnenko , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Alina Lisnenko , 2021\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Шаблон плану рахунків" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Бухгалтерське проведення" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Властивості рахунку обліку записів" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Дата бухобліку" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Бухгалтерські записи" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Інформація бухобліку" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" +"Додайте додаткові витрати (транспорт, митниця, ...) у значенні товару." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Вплив на додаткові витрати на операції прийому та розподіл їх між товарами з" +" метою оновлення собівартості." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Автоматично" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Середня вартість (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Скасувати" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Не вдається знайти вхідний рахунок складу для товару %s. Перш ніж обробляти " +"цю операцію, ви повинні визначити її у категорії товару чи на " +"місцезнаходженні." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Не вдається знайти вихідний рахунок складу для товару %s. Перш ніж обробляти" +" цю операцію, ви повинні визначити її у категорії товару чи на " +"місцезнаходженні." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Зміна методу витрат - це важлива зміна, яка вплине на оцінку запасів. Ви " +"впевнені, що хочете внести ці зміни?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Компанія" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Налаштування" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Помилка налаштування. Будь ласка, налаштуйте рахунок різниці цін на товар " +"або його категорію для обробки цієї операції." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Метод розрахунку" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "Зміна методу оцінки запасів для категорії товару %s: з %s на %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Протилежний рахунок" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Створено на" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Валюта" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Поточне значення" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Дата" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Дата створення записів бухобліку у разі автоматизованої оцінки запасів. Якщо" +" вона порожня, буде використана дата інвентаризації." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" +"Стандартна одиниця вимірювання, що використовується для всіх складських " +"операцій." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Опис" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Документація" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" +"Через зміну категорії товару (з %s на %s), метод оцінки запасів змінено для " +"шаблону товару %s: з %s на %s." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "First In First Out (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Групувати за..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "Має бухгалтерське проведення" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Склад" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Місцезнаходження на складі" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Оцінка запасу" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "Це англо-саксонський рядок" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Журнал" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Запис у журналі" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Елемент журналу" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Додаткові витрати" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Останні зміни на" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "Пов'язаний до" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Вручну" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Вручну: бухгалтерькі записи для оцінки складу не публікуються автоматично.\n" +"         Автоматизовано: бухгалтерський запис автоматично створюється для оцінки складу, коли товар входить або виходить з компанії." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Інша інформація" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" +"Визначіть рахунок витрат для цього товару: \"%s\" (id:%d) - або для цієї " +"категорії: \"%s\"." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Товар" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Категорія товару" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Переміщення товару (Рядок складського переміщення)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Шаблон товару" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "Значення товару змінене вручну (з %s на %s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Кількість" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "Кількість рівня оцінки запасів" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Залишки" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Причина" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "Залишкова кількість" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Оцінка залишку" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Повернути комплектування" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Повернути рядок комплектування" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Виберіть категорію поточного товару" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Стандартна ціна" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Стандартна ціна: товари оцінюються за їх стандартною вартістю, визначеною на товарі.\n" +"         Середня вартість (AVCO): товари оцінюються за середньою вартістю.\n" +"         First In First Out (FIFO): товари оцінюються, вважаючи, що ті, хто входить до компанії вперше, також залишать його спочатку.\n" +" " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Обліковий запис надходження продукції" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Журнал запасів" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Складське переміщення " + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Рахунок списання продукції" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Історія складської кількості" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Оцінка складу" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Рахунок оцінки запасів" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Рахунок оцінки запасів (Надходження)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Рахунок оцінки запасів (Списання)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "Етап оцінювання запасу" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" +"Технічне поле використовується для отримання англо-саксонських рядків." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Рядки переміщення не є стабільними: деякі входять, а інші залишають " +"компанію." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Рядки переміщення не є узгодженими станами: вони роблять взаємодію в один " +"крок, поки вони повинні пройти через місце транзиту в середині компанії." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Рядки переміщення не є послідовними станами: вони не поділяють однакову " +"компанію походження та призначення." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"Немає рівнів оцінки. Рівні оцінки створюються, коли деякі переміщення " +"товарів мають впливати на оцінку запасів." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Загальна сума" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Переміщення" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Запускати зменшення кількості доставки/отриманої кількості у відповідному " +"замовленні на продаж/замовленні на купівлю" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Значення одиниці" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Одиниця вимірювання" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "Оновіть кількості на SO/PO" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Використовується для оцінки інвентаризації в реальному часі. Якщо встановити" +" на віртуальному розташуванні (не внутрішній тип), цей облік буде " +"використовуватися для того, щоб зберегти вартість товарів, які переміщуються" +" з внутрішнього місця розташування в це місце, замість загального обліку " +"випуску, встановленого на товарі. Це не впливає на внутрішні розташування." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Використовується для оцінки інвентаризації в реальному часі. Якщо встановити" +" на віртуальному розташуванні (не внутрішній тип), цей облік буде " +"використовуватися для того, щоб тримати вартість товарів, які переміщуються " +"з цього місця розташування та у внутрішнє місце, замість загальних обліків " +"випуску, встановлених на товарі. Це не впливає на внутрішні розташування." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Оцінка" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "Зміна методу оцінки для категорії товару %s: з %s на %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Значення" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "Рівень оцінки запасів" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Попередження" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Якщо на товарі увімкнено автоматизовану оцінку запасів, на цьому рахунку " +"буде зберігатися поточна вартість товарів." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"При автоматизованій оцінці запасів статті цього журналу для всіх вихідних переміщених запасів будуть розміщені на цьому рахунку, \n" +"якщо в місці призначення не встановлено конкретний рахунок оцінки. Це значення за замовчуванням для всіх товарів цієї категорії.\n" +" Його також можна встановити безпосередньо на кожен товар." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"При автоматизованій оцінці запасів - це Журнал бухгалтерського обліку, в " +"якому записи будуть автоматично розміщені при обробці складських переміщень." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"У вас немає рахунка вхідної оцінки, визначеної на категорії товару. Вам " +"необхідно визначити його перед початком цієї операції." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Ви не маєте жодного журналу складу, визначеного у вашій категорії товарів, " +"перевірте, чи встановлено план рахунків." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"У вас немає облікового запису про оцінку складу у вашій категорії товарів. " +"Ви повинні визначити його перед обробкою цієї операції." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "від" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "для" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/ur.po b/addons/stock_account/i18n/ur.po new file mode 100644 index 00000000..7132f71b --- /dev/null +++ b/addons/stock_account/i18n/ur.po @@ -0,0 +1,896 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/i18n/vi.po b/addons/stock_account/i18n/vi.po new file mode 100644 index 00000000..8501cf66 --- /dev/null +++ b/addons/stock_account/i18n/vi.po @@ -0,0 +1,978 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# fanha99 , 2020 +# Thang Duong Bao , 2020 +# Duy BQ , 2020 +# Trinh Tran Thi Phuong , 2020 +# Dung Nguyen Thi , 2020 +# Nancy Momoland , 2020 +# Duc Ngo , 2021 +# Trần Hà , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Trần Hà , 2021\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "Giá vốn sản phẩm được cập nhật từ %(previous)s sang %(new_cost)s." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" +"%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" +")\n" +" Use a negative added value to record a decrease in the product value" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "Set other input/output accounts on specific " + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "Bảng hệ thống tài khoản mẫu" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "Bút toán Kế toán" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "Thuộc tính tài khoản kho" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "Ngày kế toán" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "Bút toán kế toán" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "Thông tin kế toán" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "Add Manual Valuation" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "" +"Thêm chi phí bổ sung (vận chuyển, hải quan, ...) vào giá trị của sản phẩm." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "Added Value" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "Added value" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "" +"Ảnh hưởng của chi phí trên các hoạt động tiếp nhận và phân chia chúng giữa " +"các sản phẩm để cập nhật giá chi phí của chúng." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "Tự động" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "Giá Trung bình (AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "Hủy" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "" +"Không tìm thấy tài khoản kế toán để hạch toán nhập kho đối với sản phẩm %s. " +"Bạn phải xác định một tài khoản ở Nhóm sản phẩm, hoặc ở Địa điểm kho trước " +"khi xử lý hoạt động này." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "" +"Không tìm thấy tài khoản kế toán để hạch toán xuất kho đối với sản phẩm %s. " +"Ban phải xác định một tài khoản ở Nhóm sản phẩm, hoặc ở địa điểm kho, trước " +"khi xử lý hoạt động này." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "" +"Thay đổi phương thức giá vốn là một thay đổi quan trọng mà sẽ ảnh hưởng đến " +"giá trị tồn kho. Bạn có chắc chắn bạn muốn có sự thay đổi này?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "Công ty" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "Thiết lập cấu hình" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "" +"Lỗi cấu hình! Vui lòng cấu hình tài khoản chênh lệch giá trên sản phẩm hoặc " +"nhóm tương ứng của nó để xử lý hoạt động này." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "Phương pháp giá vốn" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "Thay đổi phương pháp chi phí cho danh mục sản phẩm %s: từ %s đến %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "Tài khoản đối ứng" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "Thời điểm tạo" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "Tiền tệ" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "Current Quantity" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "Giá trị hiện tại" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "Ngày" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "" +"Ngày mà các mục kế toán sẽ được tạo trong trường hợp định giá hàng tồn kho " +"tự động. Nếu trống, ngày tồn kho sẽ được sử dụng." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "Đơn vị tình mặc định dùng cho tất cả hoạt động kho." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "Mô tả" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "Tài liệu" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "" +"Do có thay đổi danh mục sản phẩm (từ %s đến %s), phương pháp tính giá" +" đã thay đổi cho mẫu sản phẩm: %s: từ %s đến " +"%s." + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "Nhập trước Xuất trước (FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "Gom nhóm..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "Là tài khoản dịch chuyển" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "Kho vận" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "Địa điểm Kiểm kê" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "Định giá tồn kho" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "Is Anglo Saxon Line" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "Sổ nhật ký" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "Bút toán sổ nhật ký" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "Bút toán" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "Landed Costs" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "Đã liên kết" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "Thủ công" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "Manual Stock Valuation: %s." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "Manual Stock Valuation: No Reason Given." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"Thủ công: Các bút toán kế toán xuất nhập kho sẽ không được tạo tự động.\n" +" Tự động: Một bút toán kế toán sẽ được tạo tự động và vào sổ khi thực hiện hoạt động xuất nhập kho." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "Giá trị mới" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "New value by quantity" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "Gía trị thực tế" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "Thông tin khác" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "" +"Hãy chỉ định tài khoản chi phí cho sản phẩm này: \"%s\" (id:%d) - hoặc cho " +"danh mục của nó: \"%s\"." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "Sản phẩm" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "Nhóm sản phẩm" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "Chuyển sản phẩm (Chi tiết phiếu kho)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "Định giá sản phẩm" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "Mẫu sản phẩm" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "Giá trị sản phẩm được chỉnh sửa thủ công (từ %s đến %s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "Số lượng" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "Số lượng Svl" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "Số lượng" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "Lý do" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "Lý do tái định giá sản phẩm" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "Related product" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "SL còn lại" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "Giá trị còn lại" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "Trả hàng" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "Chi tiết hàng trả" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "Revaluation of %s" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "Revalue" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "Chọn nhóm cho sản phẩm hiện tại" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "Giá tiêu chuẩn" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"Giá tiêu chuẩn: Sản phẩm được định giá theo giá tiêu chuẩn khai báo trên form sản phẩm.\n" +" Giá Trung bình (AVCO): Sản phẩm được định giá theo phương pháp bình quân.\n" +" Nhập trước Xuất trước (FIFO): Sản phẩm được định giá theo phương pháp thực tế với giả định nhập trước xuất trước. Khi kết hợp với sô Lô/Serial thì sẽ thành Thực tế Đích danh." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "Tài khoản nhập kho" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "Sổ nhật ký kho" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "Hoạt động kho" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "Tài khoản xuất kho" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "Lịch sử tồn kho" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "Báo cáo bổ sung hàng tồn kho" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "Định giá Tồn kho" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "Tài khoản Định giá Tồn kho" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "Tài khoản định giá tồn kho (Nhập hàng)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "Tài khoản định giá tồn kho (Xuất hàng)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "Lớp giá trị kho" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "Trường kỹ thuật được sử dụng để nhận các dòng anglo-saxon." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "The added value doesn't have any impact on the stock valuation" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "" +"Dòng di chuyển không nhất quán: một số đang nhập kho số khác đang xuất kho" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "" +"Các dòng di chuyển không ở trạng thái nhất quán: chúng đang thực hiện một " +"công ty liên kết trong một bước duy nhất trong khi chúng phải đi qua vị trí " +"trung chuyển liên công ty." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "" +"Các dòng di chuyển không ở trong trạng thái nhất quán: chúng không có cùng " +"nguồn gốc hoặc công ty đích." + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "" +"Không có lớp định giá. Các lớp định giá được tạo ra khi một số dịch chuyển " +"sản phẩm sẽ tác động đến việc định giá kho." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "Tổng giá trị" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "Điều chuyển" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "" +"Kích hoạt giảm số lượng đã Giao/Nhận được trong đơn bán/mua hàng được liên " +"kết" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "Giá trị đơn vị" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "Đơn vị tính" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "Cập nhật số lượng trên SO/PO" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Được sử dụng cho định giá tồn kho theo thời gian thực. Khi được thiết lập " +"trên một địa điểm ảo (không phải kiểu nội bộ), tài khoản này sẽ được sử dụng" +" để giữ giá trị của sản phẩm mà được di chuyển từ một địa điểm nội bộ sang " +"địa điểm này, thay cho tài khoản xuất kho được thiết lập trên sản phẩm. Việc" +" này không ảnh hưởng tới địa điểm nội bộ." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"Được sử dụng cho định giá tồn kho theo thời gian thực. Khi được thiết lập " +"trên một địa điểm ảo (không phải kiểu nội bộ), tài khoản này sẽ được sử dụng" +" để giữ giá trị của sản phẩm mà được di chuyển từ một địa điểm này sang một " +"địa điểm nội bộ, thay cho tài khoản xuất kho được thiết lập trên sản phẩm. " +"Việc này không ảnh hưởng tới địa điểm nội bộ." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "Định giá" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "Thay đổi phương pháp định giá cho danh mục sản phẩm: %s: từ%s đến %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "Giá trị" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "Giá trị Svl" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "Cảnh báo" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" +"Khi định giá hàng tồn kho tự động được bật trên một sản phẩm, tài khoản này " +"sẽ giữ giá trị hiện tại của sản phẩm." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"Khi thực hiện định giá hàng tồn kho tự động, các mục nhật ký đối tác cho tất cả các dịch chuyển kho xuất ra sẽ được ghi nhận trong tài khoản này,\n" +" trừ khi có một tài khoản định giá cụ thể được đặt trên vị trí đích. Đây là giá trị mặc định cho tất cả các sản phẩm trong danh mục này.\n" +" Nó cũng có thể được đặt trực tiếp trên mỗi sản phẩm." + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" +"Khi thực hiện định giá hàng tồn kho tự động, đây là Nhật ký kế toán, trong " +"đó các mục sẽ được tự động đăng khi dịch chuyển kho được xử lý." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "Wizard model to reavaluate a stock inventory for a product" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "You cannot revalue a product with a standard cost method." + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "Bạn không thể định giá sản phẩm khi tồn kho < 0 hoặc = 0" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Bạn không có bất kỳ tài khoản định giá đầu vào nào được xác định trên danh " +"mục sản phẩm của bạn. Bạn phải xác định một trước khi xử lý thao tác này." + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "" +"Bạn không có bất kỳ bút toán kho nào được xác định trong danh mục sản phẩm " +"của mình, hãy kiểm tra xem bạn đã cài đặt tài khoản kế toán chưa." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "" +"Bạn chưa xác định Tài khoản định giá tồn kho đối với nhóm sản phẩm. Bạn phải" +" xác định tài khoản này trước khi xử lý hoạt động này." + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "Bạn phải thiết lập một tài khoản đối ứng vào nhóm sản phẩm." + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "bởi" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "trong" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "Các địa điểm" diff --git a/addons/stock_account/i18n/zh_CN.po b/addons/stock_account/i18n/zh_CN.po new file mode 100644 index 00000000..c8f3783a --- /dev/null +++ b/addons/stock_account/i18n/zh_CN.po @@ -0,0 +1,924 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# liAnGjiA , 2020 +# 苏州远鼎 , 2020 +# bf2549c5415a9287249cba2b8a5823c7, 2020 +# guohuadeng , 2020 +# keecome <7017511@qq.com>, 2020 +# 敬雲 林 , 2020 +# Felix Yuen , 2020 +# roye w <159820@qq.com>, 2020 +# inspur qiuguodong , 2020 +# John An , 2020 +# Felix Yang - Elico Corp , 2020 +# ljsrzc007 , 2020 +# Daniel Yang , 2021 +# Jeffery CHEN Fan , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: Jeffery CHEN Fan , 2021\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "科目表模版" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "会计凭证" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "会计库存属性" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "会计日期" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "会计分录" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "会计信息" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "添加人工计价" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "在产品价值中增加额外成本(运输,海关......)。" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "增加的价值" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "增加的价值" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "影响收货作业的到岸成本,并拆分它们来更新成本价" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "自动" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "平均成本(AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "取消" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "找不到产品%s的库存入库科目。 在处理此作业之前,您必须在产品类别或产品上进行一个定义。" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "找不到产品%s的库存出库库科目。 在处理此作业之前,您必须在产品类别或产品上进行定义。" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "更改你的成本方法是一个重要的更改, 将影响您的库存评估。是否确实要进行此更改?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "公司" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "配置设置" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "配置错误。 请在产品或其类别上配置价格差异科目来处理此作业。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "成本方法" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "产品类别%s的成本定价核算方法更改:从%s 到%s。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "对方科目" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "创建人" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "币种" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "当前数量" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "当前值" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "日期" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "在自动库存评估的情况下创建会计凭证的日期。 如果为空,将使用库存日期。" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "所有库存商品的缺省单位。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "说明" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "文档" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "由于产品类别的变更(从 %s 至%s ),成本定价方法已更改为产品模板 %s:从 %s 至%s 。" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "先进先出(FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "分组" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "有会计凭证" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "库存" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "库存位置" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "库存计价" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "是昂格鲁-撒克逊行" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "日记账" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "日记账分录" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "会计分录" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "到岸成本" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "最后更新人" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "最后更新时间" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "链接到" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "手动" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"手动:盘点存货的会计凭证不会自动过账。\n" +"自动化:当产品进入或离开公司时,自动创建一个会计凭证来评估库存。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "新价值" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "New value by quantity" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "在手价值" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "其他信息" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "请为此产品定义费用科目: \"%s\" (id:%d) - 或其类别:\"%s\"." + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "产品" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "产品类别" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "产品凭证(移库明细)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "产品重新计价" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "产品模板" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "手动修改产品值(从 %s 到%s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "数量" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "库存估价层数量" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "即时库存" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "原因" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "相关产品" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "剩余数量" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "剩余价值" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "退回拣货" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "退回明细行" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "为当前产品选择一个类别" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "标准价格" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"标准价格:产品按照产品定义的标准成本进行估价。\n" +"         平均成本(AVCO):产品以加权平均成本估值。\n" +"         先入先出(First In First Out,简称FIFO):假设那些先进入公司的产品估值,它们也会先离开。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "库存进货科目" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "库存日记账" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "库存凭证" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "库存出货科目" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "库存数量历史" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "库存补货报告" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "库存计价" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "库存计价科目" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "库存计价科目(入向)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "库存计价科目(出向)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "库存估价层" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "技术字段用于检索昂格鲁-撒克逊明细行" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "凭证处于不一致状态:有些正在进入,有的正在离开公司。" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "凭证处于不一致的状态:他们在一个单一的步骤中作为一个公司的内部公司,而他们应该通过公司间中转地点。" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "凭证处于不一致的状态:它们不属于同一个来源或目标公司。" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "没有评估层。当某些产品凭证会影响股票的估值时,会创建评估层。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "总价值" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "调拨" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "触发相关销售订单/采购订单中已交货/已收货数量的减少" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "单位价值" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "计量单位" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "在SO/PO更新数量" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"用于实时库存计价。当设定在一个虚拟位置(非内部类型)时,这科目将用于记录从内部位置调拨产品的值,而非替代此产品的一般出库科目。它不影响内部位置。" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"用于实时库存计价。当设定在一个虚拟位置(非内部类型)时,这科目将用于记录从内部位置调拨产品的值,而非替代此产品的一般出库科目。它不影响内部位置。" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "计价" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "产品类别的评估方法更改 %s: 从 %s 到 %s." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "价值" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "价值库存估价层" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "警告" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "在产品上启用自动库存评估后,此账户将保留产品的当前值。" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"在进行自动库存评估时,所有外发库存凭证的对应会计分录将在此帐户中过帐,\n" +" 除非在目的地设置了特定的评估帐户。 这是此类别中所有产品的默认值。\n" +" 它也可以直接在每个产品上设置。" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "在进行自动库存评估时,这是会计日记账,其中处理库存凭证时将自动过账条目。" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "你没有在产品类别中定义任何输入评估账户。你必须在处理此作业之前定义一个。" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "没有在产品类别中设置库存日记账,检查是否安装科目表" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "您没有在您的产品类别中定义任何库存评估账户。 处理此作业之前,您必须定义一个。" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "单位" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "由于" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "位置" diff --git a/addons/stock_account/i18n/zh_TW.po b/addons/stock_account/i18n/zh_TW.po new file mode 100644 index 00000000..b1268596 --- /dev/null +++ b/addons/stock_account/i18n/zh_TW.po @@ -0,0 +1,912 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * stock_account +# +# Translators: +# Martin Trigaux, 2020 +# 敬雲 林 , 2020 +# JustinC , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:19+0000\n" +"Last-Translator: JustinC , 2021\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid " Product cost updated from %(previous)s to %(new_cost)s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s" +msgstr "%(user)s 已將成本從 %(previous)s 更改為 %(new_price)s - %(product)s" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "" +"%(user)s changed stock valuation from %(previous)s to %(new_value)s - " +"%(product)s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "" +")\n" +" Use a negative added value to record a decrease in the product value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Set other input/output accounts on specific " +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_chart_template +msgid "Account Chart Template" +msgstr "項目表模版" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids +msgid "Account Move" +msgstr "會計憑證" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "Account Stock Properties" +msgstr "會計庫存屬性" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__accounting_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date +msgid "Accounting Date" +msgstr "會計日期" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_form_inherit +#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit +msgid "Accounting Entries" +msgstr "會計分錄" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit +msgid "Accounting Information" +msgstr "會計資訊" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Add Manual Valuation" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Add additional cost (transport, customs, ...) in the value of the product." +msgstr "在產品價值中添加額外費用(運輸、海關等)。" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Added Value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__added_value +msgid "Added value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_res_config_settings__module_stock_landed_costs +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "" +"Affect landed costs on reception operations and split them among products to" +" update their cost price." +msgstr "影響接收操作的落地成本, 並在產品之間拆分以更新成本價。" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__real_time +msgid "Automated" +msgstr "自動" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__average +msgid "Average Cost (AVCO)" +msgstr "平均成本(AVCO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Cancel" +msgstr "取消" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock input account for the product %s. You must define one on" +" the product category, or on the location, before processing this operation." +msgstr "找不到產品%s的庫存入庫項目。 在處理此操作之前,您必須在產品類別或產品上進行一個定義。" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Cannot find a stock output account for the product %s. You must define one " +"on the product category, or on the location, before processing this " +"operation." +msgstr "找不到產品%s的庫存出庫庫項目。 在處理此操作之前,您必須在產品類別或產品上進行定義。" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Changing your cost method is an important change that will impact your " +"inventory valuation. Are you sure you want to make that change?" +msgstr "更改您的成本方法是一個重要的更改, 將影響您的庫存評估。是否確實要進行此更改?" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__company_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__company_id +msgid "Company" +msgstr "公司" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_res_config_settings +msgid "Config Settings" +msgstr "配置設定" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"Configuration error. Please configure the price difference account on the " +"product or its category to process this operation." +msgstr "配置錯誤。 請在產品或其類別上配置價格差異項目來處理此操作。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_product__cost_method +#: model:ir.model.fields,field_description:stock_account.field_product_template__cost_method +msgid "Costing Method" +msgstr "成本方法" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Costing method change for product category %s: from %s to %s." +msgstr "產品類別 %s 的成本計算方法更改:從 %s 更改為 %s。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_id +msgid "Counterpart Account" +msgstr "對方科目" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "" +"Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account\n" +" set on the source location. This is the default value for all products in this category. It can also directly be set on each product." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_uid +msgid "Created by" +msgstr "創立者" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__create_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__create_date +msgid "Created on" +msgstr "建立於" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__currency_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__currency_id +msgid "Currency" +msgstr "幣別" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_quantity_svl +msgid "Current Quantity" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__current_value_svl +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Current Value" +msgstr "目前值" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Date" +msgstr "日期" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_inventory__accounting_date +msgid "" +"Date at which the accounting entries will be created in case of automated " +"inventory valuation. If empty, the inventory date will be used." +msgstr "在自動清點估價的情況下創建會計分錄的日期。如果為空,將使用庫存日期。" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__uom_id +msgid "Default unit of measure used for all stock operations." +msgstr "所有庫存商品的預設單位。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description +msgid "Description" +msgstr "說明" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_category__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_product__display_name +#: model:ir.model.fields,field_description:stock_account.field_product_template__display_name +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__display_name +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_location__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__display_name +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +msgid "Documentation" +msgstr "系統使用說明" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Due to a change of product category (from %s to %s), the costing method" +" has changed for product template %s: from %s" +" to %s." +msgstr "由於產品類別變更(從 %s 更改為 %s),產品範本 %s 的成本計算方法已更改:從 %s 更改為 %s。" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__fifo +msgid "First In First Out (FIFO)" +msgstr "先進先出(FIFO)" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Group by..." +msgstr "分組由..." + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__has_account_moves +msgid "Has Account Moves" +msgstr "具有日記帳分錄" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template__id +#: model:ir.model.fields,field_description:stock_account.field_account_move__id +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_product_category__id +#: model:ir.model.fields,field_description:stock_account.field_product_product__id +#: model:ir.model.fields,field_description:stock_account.field_product_template__id +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment__id +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__id +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory__id +#: model:ir.model.fields,field_description:stock_account.field_stock_location__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move__id +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__id +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking__id +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__id +msgid "ID" +msgstr "ID" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_inventory +msgid "Inventory" +msgstr "庫存" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_location +msgid "Inventory Locations" +msgstr "盤點位置" + +#. module: stock_account +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/__init__.py:0 +#: code:addons/stock_account/models/account_chart_template.py:0 +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,field_description:stock_account.field_product_product__valuation +#: model:ir.model.fields,field_description:stock_account.field_product_template__valuation +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__property_valuation +#: model:ir.ui.menu,name:stock_account.menu_valuation +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +#, python-format +msgid "Inventory Valuation" +msgstr "庫存計價" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Is Anglo Saxon Line" +msgstr "為盎格魯撒克遜明細" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id +msgid "Journal" +msgstr "日記帳" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_id +msgid "Journal Entry" +msgstr "日記帳分錄" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_account_move_line +msgid "Journal Item" +msgstr "日記帳明細" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs +msgid "Landed Costs" +msgstr "落地成本" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_account_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_category____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_product____last_update +#: model:ir.model.fields,field_description:stock_account.field_product_template____last_update +#: model:ir.model.fields,field_description:stock_account.field_report_stock_report_product_product_replenishment____last_update +#: model:ir.model.fields,field_description:stock_account.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_inventory____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_location____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_move_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quant____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_quantity_history____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer____last_update +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_uid +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid +msgid "Last Updated by" +msgstr "最後更新者" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__write_date +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_id +msgid "Linked To" +msgstr "已連結至" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic +msgid "Manual" +msgstr "手動" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: %s." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Manual Stock Valuation: No Reason Given." +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_valuation +#: model:ir.model.fields,help:stock_account.field_product_product__valuation +#: model:ir.model.fields,help:stock_account.field_product_template__valuation +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__property_valuation +msgid "" +"Manual: The accounting entries to value the inventory are not posted automatically.\n" +" Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company.\n" +" " +msgstr "" +"手動:盤點存貨的會計輸入不會自動過帳。\n" +"自動化:當產品進入或離開公司時,自動創建一個會計輸入來評估庫存。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value +msgid "New value" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__new_value_by_qty +msgid "New value by quantity" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_product_product_replenishment +msgid "On Hand Value" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +msgid "Other Info" +msgstr "其他資訊" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"Please define an expense account for this product: \"%s\" (id:%d) - or for " +"its category: \"%s\"." +msgstr "請為此產品定義支出項目:\"%s\" (id:%d) - 或其類別:\"%s\"。" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_product +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_id +#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search +msgid "Product" +msgstr "商品" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_category +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__categ_id +msgid "Product Category" +msgstr "產品分類" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move_line +msgid "Product Moves (Stock Move Line)" +msgstr "產品移動(移庫明細)" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +#, python-format +msgid "Product Revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_product_template +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id +msgid "Product Template" +msgstr "產品模板" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Product value manually modified (from %s to %s)" +msgstr "手動修改產品價值(從 %s 到 %s)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__quantity +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__quantity +msgid "Quantity" +msgstr "數量" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__quantity_svl +msgid "Quantity Svl" +msgstr "Svl數量" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quant +msgid "Quants" +msgstr "數量" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason" +msgstr "原因" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer_revaluation__reason +msgid "Reason of the revaluation" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_id +msgid "Related product" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_qty +msgid "Remaining Qty" +msgstr "剩餘數量" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__remaining_value +msgid "Remaining Value" +msgstr "剩餘價值" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking +msgid "Return Picking" +msgstr "退回揀貨" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_return_picking_line +msgid "Return Picking Line" +msgstr "退料明細" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "Revaluation of %s" +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "Revalue" +msgstr "" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_valuation_layer__categ_id +msgid "Select category for the current product" +msgstr "為目前產品選擇一個類別" + +#. module: stock_account +#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_cost_method__standard +msgid "Standard Price" +msgstr "標準價格" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_cost_method +#: model:ir.model.fields,help:stock_account.field_product_product__cost_method +#: model:ir.model.fields,help:stock_account.field_product_template__cost_method +msgid "" +"Standard Price: The products are valued at their standard cost defined on the product.\n" +" Average Cost (AVCO): The products are valued at weighted average cost.\n" +" First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first.\n" +" " +msgstr "" +"標準價格:產品按照產品定義的標準成本進行估價。\n" +"         平均成本(AVCO):產品以加權平均成本估值。\n" +"         先入先出(First In First Out,簡稱FIFO):假設那些先進入公司的產品估值,它們也會先離開。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_input_categ_id +msgid "Stock Input Account" +msgstr "庫存進貨項目" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal +msgid "Stock Journal" +msgstr "庫存日記帳" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_move +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_move_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_move_id +msgid "Stock Move" +msgstr "庫存移動" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "Stock Output Account" +msgstr "庫存出貨項目" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_quantity_history +msgid "Stock Quantity History" +msgstr "庫存數量歷史" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_report_stock_report_product_product_replenishment +msgid "Stock Replenishment Report" +msgstr "" + +#. module: stock_account +#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action +msgid "Stock Valuation" +msgstr "庫存計價" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_valuation_account_id +msgid "Stock Valuation Account" +msgstr "庫存計價項目" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_in_account_id +msgid "Stock Valuation Account (Incoming)" +msgstr "庫存計價項目(入向)" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_location__valuation_out_account_id +msgid "Stock Valuation Account (Outgoing)" +msgstr "庫存計價項目(出向)" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer +#: model:ir.model.fields,field_description:stock_account.field_account_bank_statement_line__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_account_payment__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_product_product__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_move__stock_valuation_layer_ids +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__stock_valuation_layer_ids +msgid "Stock Valuation Layer" +msgstr "庫存估值層" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_account_move_line__is_anglo_saxon_line +msgid "Technical field used to retrieve the anglo-saxon lines." +msgstr "用於檢索盎格魯-薩克遜明細的技術欄位。" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The Stock Input and/or Output accounts cannot be the same as the Stock " +"Valuation account." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"The action leads to the creation of a journal entry, for which you don't " +"have the access rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "The added value doesn't have any impact on the stock valuation" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent state: some are entering and other " +"are leaving the company." +msgstr "移動明細的狀態不一致: 有些正在進貨, 其他的則在出貨。" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they are doing an " +"intercompany in a single step while they should go through the intercompany " +"transit location." +msgstr "移動線處於不一致的狀態:他們在一個單一的步驟中作為一個公司的內部公司,而他們應該通過公司間中轉地點。" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"The move lines are not in a consistent states: they do not share the same " +"origin or destination company." +msgstr "移動名細處於不一致的狀態:它們不屬於同一個來源或目的地之公司。" + +#. module: stock_account +#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_action +msgid "" +"There is no valuation layers. Valuation layers are created when some product" +" moves should impact the valuation of the stock." +msgstr "沒有估價層。當某些產品移動會影響股票的估值時,將創建估價層。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree +msgid "Total Value" +msgstr "總值" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_picking +msgid "Transfer" +msgstr "調撥" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,help:stock_account.field_stock_return_picking_line__to_refund +msgid "" +"Trigger a decrease of the delivered/received quantity in the associated Sale" +" Order/Purchase Order" +msgstr "觸發相關銷售訂單/採購訂單中已交貨/已收貨數量的減少" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__unit_cost +msgid "Unit Value" +msgstr "單位價值" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__uom_id +#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__product_uom_name +msgid "Unit of Measure" +msgstr "單位" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_move__to_refund +#: model:ir.model.fields,field_description:stock_account.field_stock_return_picking_line__to_refund +msgid "Update quantities on SO/PO" +msgstr "更新 SO/PO 上的數量" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_in_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved from an internal location into this location, instead of the " +"generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"用於及時庫存計價。當設定在一個虛擬庫位(非內部類型)時,這項目將用於記錄從內部庫位調撥產品的值,而非替代此產品的一般出庫項目。它不影響內部庫位。" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_stock_location__valuation_out_account_id +msgid "" +"Used for real-time inventory valuation. When set on a virtual location (non " +"internal type), this account will be used to hold the value of products " +"being moved out of this location and into an internal location, instead of " +"the generic Stock Output Account set on the product. This has no effect for " +"internal locations." +msgstr "" +"用於及時庫存計價。當設定在一個虛擬庫位(非內部類型)時,這項目將用於記錄從內部庫位調撥產品的值,而非替代此產品的一般出庫項目。它不影響內部庫位。" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking +msgid "Valuation" +msgstr "計價" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Valuation method change for product category %s: from %s to %s." +msgstr "產品類別 %s 的庫存計價方法更改:從 %s 更改為 %s。" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_stock_quant__value +msgid "Value" +msgstr "值" + +#. module: stock_account +#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl +msgid "Value Svl" +msgstr "Svl值" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "Warning" +msgstr "警告" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_valuation_account_id +msgid "" +"When automated inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "在產品上啟用自動庫存估價時,此帳戶將保留產品的當前價值。" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_account_output_categ_id +msgid "" +"When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account,\n" +" unless there is a specific valuation account set on the destination location. This is the default value for all products in this category.\n" +" It can also directly be set on each product." +msgstr "" +"執行自動庫存評估時,所有傳出庫存變動的對應日記帳物料將過帳在此項目中,\n" +" 除非在目標位置設置了特定的估價帳戶。這是此類別中所有產品的預設值。\n" +" 也可以直接在每個產品上設置。" + +#. module: stock_account +#: model:ir.model.fields,help:stock_account.field_product_category__property_stock_journal +msgid "" +"When doing automated inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "執行自動庫存評估時,這是會計日誌,其中處理庫存移動時將自動過帳分錄。" + +#. module: stock_account +#: model:ir.model,name:stock_account.model_stock_valuation_layer_revaluation +msgid "Wizard model to reavaluate a stock inventory for a product" +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with a standard cost method." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0 +#, python-format +msgid "You cannot revalue a product with an empty or negative stock." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You cannot update the cost of a product in automated valuation as it leads " +"to the creation of a journal entry, for which you don't have the access " +"rights." +msgstr "" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "" +"You don't have any input valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "您沒有在產品類別上定義任何輸入估價項目。在處理此操作之前,必須定義一個。" + +#. module: stock_account +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock journal defined on your product category, check if " +"you have installed a chart of accounts." +msgstr "您沒有在產品類別上定義的任何庫存日記帳, 請檢查是否已安裝了會計項目表。" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/product.py:0 +#: code:addons/stock_account/models/stock_move.py:0 +#, python-format +msgid "" +"You don't have any stock valuation account defined on your product category." +" You must define one before processing this operation." +msgstr "您沒有在您的產品類別中定義任何庫存評估帳戶。 處理此操作之前,您必須定義一個。" + +#. module: stock_account +#: code:addons/stock_account/models/product.py:0 +#, python-format +msgid "You must set a counterpart account on your product category." +msgstr "" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "by" +msgstr "by" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view +msgid "for" +msgstr "為" + +#. module: stock_account +#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form +msgid "locations" +msgstr "" diff --git a/addons/stock_account/models/__init__.py b/addons/stock_account/models/__init__.py new file mode 100644 index 00000000..77f0fb8d --- /dev/null +++ b/addons/stock_account/models/__init__.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import account_chart_template +from . import account_move +from . import product +from . import stock_move +from . import stock_inventory +from . import stock_location +from . import stock_move_line +from . import stock_picking +from . import stock_quant +from . import stock_valuation_layer +from . import res_config_settings diff --git a/addons/stock_account/models/account_chart_template.py b/addons/stock_account/models/account_chart_template.py new file mode 100644 index 00000000..8f6105d0 --- /dev/null +++ b/addons/stock_account/models/account_chart_template.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, models, _ + +import logging +_logger = logging.getLogger(__name__) + + +class AccountChartTemplate(models.Model): + _inherit = "account.chart.template" + + @api.model + def generate_journals(self, acc_template_ref, company, journals_dict=None): + journal_to_add = [{'name': _('Inventory Valuation'), 'type': 'general', 'code': 'STJ', 'favorite': False, 'sequence': 8}] + return super(AccountChartTemplate, self).generate_journals(acc_template_ref=acc_template_ref, company=company, journals_dict=journal_to_add) + + def generate_properties(self, acc_template_ref, company, property_list=None): + res = super(AccountChartTemplate, self).generate_properties(acc_template_ref=acc_template_ref, company=company) + PropertyObj = self.env['ir.property'] # Property Stock Journal + value = self.env['account.journal'].search([('company_id', '=', company.id), ('code', '=', 'STJ'), ('type', '=', 'general')], limit=1) + if value: + PropertyObj._set_default("property_stock_journal", "product.category", value, company) + + todo_list = [ # Property Stock Accounts + 'property_stock_account_input_categ_id', + 'property_stock_account_output_categ_id', + 'property_stock_valuation_account_id', + ] + for field in todo_list: + account = self[field] + value = acc_template_ref[account.id] if account else False + PropertyObj._set_default(field, "product.category", value, company) + + return res diff --git a/addons/stock_account/models/account_move.py b/addons/stock_account/models/account_move.py new file mode 100644 index 00000000..244c910c --- /dev/null +++ b/addons/stock_account/models/account_move.py @@ -0,0 +1,236 @@ +# -*- coding: utf-8 -*- + +from odoo import fields, models + + +class AccountMove(models.Model): + _inherit = 'account.move' + + stock_move_id = fields.Many2one('stock.move', string='Stock Move', index=True) + stock_valuation_layer_ids = fields.One2many('stock.valuation.layer', 'account_move_id', string='Stock Valuation Layer') + + # ------------------------------------------------------------------------- + # OVERRIDE METHODS + # ------------------------------------------------------------------------- + + def _get_lines_onchange_currency(self): + # OVERRIDE + return self.line_ids.filtered(lambda l: not l.is_anglo_saxon_line) + + def _reverse_move_vals(self, default_values, cancel=True): + # OVERRIDE + # Don't keep anglo-saxon lines if not cancelling an existing invoice. + move_vals = super(AccountMove, self)._reverse_move_vals(default_values, cancel=cancel) + if not cancel: + move_vals['line_ids'] = [vals for vals in move_vals['line_ids'] if not vals[2]['is_anglo_saxon_line']] + return move_vals + + def copy_data(self, default=None): + # OVERRIDE + # Don't keep anglo-saxon lines when copying a journal entry. + res = super().copy_data(default=default) + + if not self._context.get('move_reverse_cancel'): + for copy_vals in res: + if 'line_ids' in copy_vals: + copy_vals['line_ids'] = [line_vals for line_vals in copy_vals['line_ids'] + if line_vals[0] != 0 or not line_vals[2].get('is_anglo_saxon_line')] + + return res + + def _post(self, soft=True): + # OVERRIDE + + # Don't change anything on moves used to cancel another ones. + if self._context.get('move_reverse_cancel'): + return super()._post(soft) + + # Create additional COGS lines for customer invoices. + self.env['account.move.line'].create(self._stock_account_prepare_anglo_saxon_out_lines_vals()) + + # Post entries. + posted = super()._post(soft) + + # Reconcile COGS lines in case of anglo-saxon accounting with perpetual valuation. + posted._stock_account_anglo_saxon_reconcile_valuation() + return posted + + def button_draft(self): + res = super(AccountMove, self).button_draft() + + # Unlink the COGS lines generated during the 'post' method. + self.mapped('line_ids').filtered(lambda line: line.is_anglo_saxon_line).unlink() + return res + + def button_cancel(self): + # OVERRIDE + res = super(AccountMove, self).button_cancel() + + # Unlink the COGS lines generated during the 'post' method. + # In most cases it shouldn't be necessary since they should be unlinked with 'button_draft'. + # However, since it can be called in RPC, better be safe. + self.mapped('line_ids').filtered(lambda line: line.is_anglo_saxon_line).unlink() + return res + + # ------------------------------------------------------------------------- + # COGS METHODS + # ------------------------------------------------------------------------- + + def _stock_account_prepare_anglo_saxon_out_lines_vals(self): + ''' Prepare values used to create the journal items (account.move.line) corresponding to the Cost of Good Sold + lines (COGS) for customer invoices. + + Example: + + Buy a product having a cost of 9 being a storable product and having a perpetual valuation in FIFO. + Sell this product at a price of 10. The customer invoice's journal entries looks like: + + Account | Debit | Credit + --------------------------------------------------------------- + 200000 Product Sales | | 10.0 + --------------------------------------------------------------- + 101200 Account Receivable | 10.0 | + --------------------------------------------------------------- + + This method computes values used to make two additional journal items: + + --------------------------------------------------------------- + 220000 Expenses | 9.0 | + --------------------------------------------------------------- + 101130 Stock Interim Account (Delivered) | | 9.0 + --------------------------------------------------------------- + + Note: COGS are only generated for customer invoices except refund made to cancel an invoice. + + :return: A list of Python dictionary to be passed to env['account.move.line'].create. + ''' + lines_vals_list = [] + for move in self: + if not move.is_sale_document(include_receipts=True) or not move.company_id.anglo_saxon_accounting: + continue + + for line in move.invoice_line_ids: + + # Filter out lines being not eligible for COGS. + if line.product_id.type != 'product' or line.product_id.valuation != 'real_time': + continue + + # Retrieve accounts needed to generate the COGS. + accounts = ( + line.product_id.product_tmpl_id + .with_company(line.company_id) + .get_product_accounts(fiscal_pos=move.fiscal_position_id) + ) + debit_interim_account = accounts['stock_output'] + credit_expense_account = accounts['expense'] or self.journal_id.default_account_id + if not debit_interim_account or not credit_expense_account: + continue + + # Compute accounting fields. + sign = -1 if move.move_type == 'out_refund' else 1 + price_unit = line._stock_account_get_anglo_saxon_price_unit() + balance = sign * line.quantity * price_unit + + # Add interim account line. + lines_vals_list.append({ + 'name': line.name[:64], + 'move_id': move.id, + 'product_id': line.product_id.id, + 'product_uom_id': line.product_uom_id.id, + 'quantity': line.quantity, + 'price_unit': price_unit, + 'debit': balance < 0.0 and -balance or 0.0, + 'credit': balance > 0.0 and balance or 0.0, + 'account_id': debit_interim_account.id, + 'exclude_from_invoice_tab': True, + 'is_anglo_saxon_line': True, + }) + + # Add expense account line. + lines_vals_list.append({ + 'name': line.name[:64], + 'move_id': move.id, + 'product_id': line.product_id.id, + 'product_uom_id': line.product_uom_id.id, + 'quantity': line.quantity, + 'price_unit': -price_unit, + 'debit': balance > 0.0 and balance or 0.0, + 'credit': balance < 0.0 and -balance or 0.0, + 'account_id': credit_expense_account.id, + 'analytic_account_id': line.analytic_account_id.id, + 'analytic_tag_ids': [(6, 0, line.analytic_tag_ids.ids)], + 'exclude_from_invoice_tab': True, + 'is_anglo_saxon_line': True, + }) + return lines_vals_list + + def _stock_account_get_last_step_stock_moves(self): + """ To be overridden for customer invoices and vendor bills in order to + return the stock moves related to the invoices in self. + """ + return self.env['stock.move'] + + def _stock_account_anglo_saxon_reconcile_valuation(self, product=False): + """ Reconciles the entries made in the interim accounts in anglosaxon accounting, + reconciling stock valuation move lines with the invoice's. + """ + for move in self: + if not move.is_invoice(): + continue + if not move.company_id.anglo_saxon_accounting: + continue + + stock_moves = move._stock_account_get_last_step_stock_moves() + + if not stock_moves: + continue + + products = product or move.mapped('invoice_line_ids.product_id') + for prod in products: + if prod.valuation != 'real_time': + continue + + # We first get the invoices move lines (taking the invoice and the previous ones into account)... + product_accounts = prod.product_tmpl_id._get_product_accounts() + if move.is_sale_document(): + product_interim_account = product_accounts['stock_output'] + else: + product_interim_account = product_accounts['stock_input'] + + if product_interim_account.reconcile: + # Search for anglo-saxon lines linked to the product in the journal entry. + product_account_moves = move.line_ids.filtered( + lambda line: line.product_id == prod and line.account_id == product_interim_account and not line.reconciled) + + # Search for anglo-saxon lines linked to the product in the stock moves. + product_stock_moves = stock_moves.filtered(lambda stock_move: stock_move.product_id == prod) + product_account_moves += product_stock_moves.mapped('account_move_ids.line_ids')\ + .filtered(lambda line: line.account_id == product_interim_account and not line.reconciled) + + # Reconcile. + product_account_moves.reconcile() + + +class AccountMoveLine(models.Model): + _inherit = 'account.move.line' + + is_anglo_saxon_line = fields.Boolean(help="Technical field used to retrieve the anglo-saxon lines.") + + def _get_computed_account(self): + # OVERRIDE to use the stock input account by default on vendor bills when dealing + # with anglo-saxon accounting. + self.ensure_one() + if self.product_id.type == 'product' \ + and self.move_id.company_id.anglo_saxon_accounting \ + and self.move_id.is_purchase_document(): + fiscal_position = self.move_id.fiscal_position_id + accounts = self.product_id.product_tmpl_id.get_product_accounts(fiscal_pos=fiscal_position) + if accounts['stock_input']: + return accounts['stock_input'] + return super(AccountMoveLine, self)._get_computed_account() + + def _stock_account_get_anglo_saxon_price_unit(self): + self.ensure_one() + if not self.product_id: + return self.price_unit + return self.product_id._stock_account_get_anglo_saxon_price_unit(uom=self.product_uom_id) diff --git a/addons/stock_account/models/product.py b/addons/stock_account/models/product.py new file mode 100644 index 00000000..4c0b0b3c --- /dev/null +++ b/addons/stock_account/models/product.py @@ -0,0 +1,815 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, fields, models, _ +from odoo.exceptions import UserError +from odoo.tools import float_is_zero, float_repr +from odoo.exceptions import ValidationError +from collections import defaultdict + + +class ProductTemplate(models.Model): + _name = 'product.template' + _inherit = 'product.template' + + cost_method = fields.Selection(related="categ_id.property_cost_method", readonly=True) + valuation = fields.Selection(related="categ_id.property_valuation", readonly=True) + + def write(self, vals): + impacted_templates = {} + move_vals_list = [] + Product = self.env['product.product'] + SVL = self.env['stock.valuation.layer'] + + if 'categ_id' in vals: + # When a change of category implies a change of cost method, we empty out and replenish + # the stock. + new_product_category = self.env['product.category'].browse(vals.get('categ_id')) + + for product_template in self: + product_template = product_template.with_company(product_template.company_id) + valuation_impacted = False + if product_template.cost_method != new_product_category.property_cost_method: + valuation_impacted = True + if product_template.valuation != new_product_category.property_valuation: + valuation_impacted = True + if valuation_impacted is False: + continue + + # Empty out the stock with the current cost method. + description = _("Due to a change of product category (from %s to %s), the costing method\ + has changed for product template %s: from %s to %s.") %\ + (product_template.categ_id.display_name, new_product_category.display_name, + product_template.display_name, product_template.cost_method, new_product_category.property_cost_method) + out_svl_vals_list, products_orig_quantity_svl, products = Product\ + ._svl_empty_stock(description, product_template=product_template) + out_stock_valuation_layers = SVL.create(out_svl_vals_list) + if product_template.valuation == 'real_time': + move_vals_list += Product._svl_empty_stock_am(out_stock_valuation_layers) + impacted_templates[product_template] = (products, description, products_orig_quantity_svl) + + res = super(ProductTemplate, self).write(vals) + + for product_template, (products, description, products_orig_quantity_svl) in impacted_templates.items(): + # Replenish the stock with the new cost method. + in_svl_vals_list = products._svl_replenish_stock(description, products_orig_quantity_svl) + in_stock_valuation_layers = SVL.create(in_svl_vals_list) + if product_template.valuation == 'real_time': + move_vals_list += Product._svl_replenish_stock_am(in_stock_valuation_layers) + + # Check access right + if move_vals_list and not self.env['stock.valuation.layer'].check_access_rights('read', raise_exception=False): + raise UserError(_("The action leads to the creation of a journal entry, for which you don't have the access rights.")) + # Create the account moves. + if move_vals_list: + account_moves = self.env['account.move'].sudo().create(move_vals_list) + account_moves._post() + return res + + # ------------------------------------------------------------------------- + # Misc. + # ------------------------------------------------------------------------- + def _get_product_accounts(self): + """ Add the stock accounts related to product to the result of super() + @return: dictionary which contains information regarding stock accounts and super (income+expense accounts) + """ + accounts = super(ProductTemplate, self)._get_product_accounts() + res = self._get_asset_accounts() + accounts.update({ + 'stock_input': res['stock_input'] or self.categ_id.property_stock_account_input_categ_id, + 'stock_output': res['stock_output'] or self.categ_id.property_stock_account_output_categ_id, + 'stock_valuation': self.categ_id.property_stock_valuation_account_id or False, + }) + return accounts + + def get_product_accounts(self, fiscal_pos=None): + """ Add the stock journal related to product to the result of super() + @return: dictionary which contains all needed information regarding stock accounts and journal and super (income+expense accounts) + """ + accounts = super(ProductTemplate, self).get_product_accounts(fiscal_pos=fiscal_pos) + accounts.update({'stock_journal': self.categ_id.property_stock_journal or False}) + return accounts + + +class ProductProduct(models.Model): + _inherit = 'product.product' + + value_svl = fields.Float(compute='_compute_value_svl', compute_sudo=True) + quantity_svl = fields.Float(compute='_compute_value_svl', compute_sudo=True) + stock_valuation_layer_ids = fields.One2many('stock.valuation.layer', 'product_id') + valuation = fields.Selection(related="categ_id.property_valuation", readonly=True) + cost_method = fields.Selection(related="categ_id.property_cost_method", readonly=True) + + def write(self, vals): + if 'standard_price' in vals and not self.env.context.get('disable_auto_svl'): + self.filtered(lambda p: p.cost_method != 'fifo')._change_standard_price(vals['standard_price']) + return super(ProductProduct, self).write(vals) + + @api.depends('stock_valuation_layer_ids') + @api.depends_context('to_date', 'company') + def _compute_value_svl(self): + """Compute `value_svl` and `quantity_svl`.""" + company_id = self.env.company.id + domain = [ + ('product_id', 'in', self.ids), + ('company_id', '=', company_id), + ] + if self.env.context.get('to_date'): + to_date = fields.Datetime.to_datetime(self.env.context['to_date']) + domain.append(('create_date', '<=', to_date)) + groups = self.env['stock.valuation.layer'].read_group(domain, ['value:sum', 'quantity:sum'], ['product_id']) + products = self.browse() + for group in groups: + product = self.browse(group['product_id'][0]) + product.value_svl = self.env.company.currency_id.round(group['value']) + product.quantity_svl = group['quantity'] + products |= product + remaining = (self - products) + remaining.value_svl = 0 + remaining.quantity_svl = 0 + + # ------------------------------------------------------------------------- + # Actions + # ------------------------------------------------------------------------- + def action_revaluation(self): + self.ensure_one() + ctx = dict(self._context, default_product_id=self.id, default_company_id=self.env.company.id) + return { + 'name': _("Product Revaluation"), + 'view_mode': 'form', + 'res_model': 'stock.valuation.layer.revaluation', + 'view_id': self.env.ref('stock_account.stock_valuation_layer_revaluation_form_view').id, + 'type': 'ir.actions.act_window', + 'context': ctx, + 'target': 'new' + } + + # ------------------------------------------------------------------------- + # SVL creation helpers + # ------------------------------------------------------------------------- + def _prepare_in_svl_vals(self, quantity, unit_cost): + """Prepare the values for a stock valuation layer created by a receipt. + + :param quantity: the quantity to value, expressed in `self.uom_id` + :param unit_cost: the unit cost to value `quantity` + :return: values to use in a call to create + :rtype: dict + """ + self.ensure_one() + vals = { + 'product_id': self.id, + 'value': unit_cost * quantity, + 'unit_cost': unit_cost, + 'quantity': quantity, + } + if self.cost_method in ('average', 'fifo'): + vals['remaining_qty'] = quantity + vals['remaining_value'] = vals['value'] + return vals + + def _prepare_out_svl_vals(self, quantity, company): + """Prepare the values for a stock valuation layer created by a delivery. + + :param quantity: the quantity to value, expressed in `self.uom_id` + :return: values to use in a call to create + :rtype: dict + """ + self.ensure_one() + # Quantity is negative for out valuation layers. + quantity = -1 * quantity + vals = { + 'product_id': self.id, + 'value': quantity * self.standard_price, + 'unit_cost': self.standard_price, + 'quantity': quantity, + } + if self.cost_method in ('average', 'fifo'): + fifo_vals = self._run_fifo(abs(quantity), company) + vals['remaining_qty'] = fifo_vals.get('remaining_qty') + # In case of AVCO, fix rounding issue of standard price when needed. + if self.cost_method == 'average': + currency = self.env.company.currency_id + rounding_error = currency.round(self.standard_price * self.quantity_svl - self.value_svl) + if rounding_error: + # If it is bigger than the (smallest number of the currency * quantity) / 2, + # then it isn't a rounding error but a stock valuation error, we shouldn't fix it under the hood ... + if abs(rounding_error) <= (abs(quantity) * currency.rounding) / 2: + vals['value'] += rounding_error + vals['rounding_adjustment'] = '\nRounding Adjustment: %s%s %s' % ( + '+' if rounding_error > 0 else '', + float_repr(rounding_error, precision_digits=currency.decimal_places), + currency.symbol + ) + if self.cost_method == 'fifo': + vals.update(fifo_vals) + return vals + + def _change_standard_price(self, new_price): + """Helper to create the stock valuation layers and the account moves + after an update of standard price. + + :param new_price: new standard price + """ + # Handle stock valuation layers. + + if self.filtered(lambda p: p.valuation == 'real_time') and not self.env['stock.valuation.layer'].check_access_rights('read', raise_exception=False): + raise UserError(_("You cannot update the cost of a product in automated valuation as it leads to the creation of a journal entry, for which you don't have the access rights.")) + + svl_vals_list = [] + company_id = self.env.company + for product in self: + if product.cost_method not in ('standard', 'average'): + continue + quantity_svl = product.sudo().quantity_svl + if float_is_zero(quantity_svl, precision_rounding=product.uom_id.rounding): + continue + diff = new_price - product.standard_price + value = company_id.currency_id.round(quantity_svl * diff) + if company_id.currency_id.is_zero(value): + continue + + svl_vals = { + 'company_id': company_id.id, + 'product_id': product.id, + 'description': _('Product value manually modified (from %s to %s)') % (product.standard_price, new_price), + 'value': value, + 'quantity': 0, + } + svl_vals_list.append(svl_vals) + stock_valuation_layers = self.env['stock.valuation.layer'].sudo().create(svl_vals_list) + + # Handle account moves. + product_accounts = {product.id: product.product_tmpl_id.get_product_accounts() for product in self} + am_vals_list = [] + for stock_valuation_layer in stock_valuation_layers: + product = stock_valuation_layer.product_id + value = stock_valuation_layer.value + + if product.type != 'product' or product.valuation != 'real_time': + continue + + # Sanity check. + if not product_accounts[product.id].get('expense'): + raise UserError(_('You must set a counterpart account on your product category.')) + if not product_accounts[product.id].get('stock_valuation'): + raise UserError(_('You don\'t have any stock valuation account defined on your product category. You must define one before processing this operation.')) + + if value < 0: + debit_account_id = product_accounts[product.id]['expense'].id + credit_account_id = product_accounts[product.id]['stock_valuation'].id + else: + debit_account_id = product_accounts[product.id]['stock_valuation'].id + credit_account_id = product_accounts[product.id]['expense'].id + + move_vals = { + 'journal_id': product_accounts[product.id]['stock_journal'].id, + 'company_id': company_id.id, + 'ref': product.default_code, + 'stock_valuation_layer_ids': [(6, None, [stock_valuation_layer.id])], + 'move_type': 'entry', + 'line_ids': [(0, 0, { + 'name': _( + '%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s', + user=self.env.user.name, + previous=product.standard_price, + new_price=new_price, + product=product.display_name + ), + 'account_id': debit_account_id, + 'debit': abs(value), + 'credit': 0, + 'product_id': product.id, + }), (0, 0, { + 'name': _( + '%(user)s changed cost from %(previous)s to %(new_price)s - %(product)s', + user=self.env.user.name, + previous=product.standard_price, + new_price=new_price, + product=product.display_name + ), + 'account_id': credit_account_id, + 'debit': 0, + 'credit': abs(value), + 'product_id': product.id, + })], + } + am_vals_list.append(move_vals) + + account_moves = self.env['account.move'].sudo().create(am_vals_list) + if account_moves: + account_moves._post() + + def _run_fifo(self, quantity, company): + self.ensure_one() + + # Find back incoming stock valuation layers (called candidates here) to value `quantity`. + qty_to_take_on_candidates = quantity + candidates = self.env['stock.valuation.layer'].sudo().search([ + ('product_id', '=', self.id), + ('remaining_qty', '>', 0), + ('company_id', '=', company.id), + ]) + new_standard_price = 0 + tmp_value = 0 # to accumulate the value taken on the candidates + for candidate in candidates: + qty_taken_on_candidate = min(qty_to_take_on_candidates, candidate.remaining_qty) + + candidate_unit_cost = candidate.remaining_value / candidate.remaining_qty + new_standard_price = candidate_unit_cost + value_taken_on_candidate = qty_taken_on_candidate * candidate_unit_cost + value_taken_on_candidate = candidate.currency_id.round(value_taken_on_candidate) + new_remaining_value = candidate.remaining_value - value_taken_on_candidate + + candidate_vals = { + 'remaining_qty': candidate.remaining_qty - qty_taken_on_candidate, + 'remaining_value': new_remaining_value, + } + + candidate.write(candidate_vals) + + qty_to_take_on_candidates -= qty_taken_on_candidate + tmp_value += value_taken_on_candidate + + if float_is_zero(qty_to_take_on_candidates, precision_rounding=self.uom_id.rounding): + if float_is_zero(candidate.remaining_qty, precision_rounding=self.uom_id.rounding): + next_candidates = candidates.filtered(lambda svl: svl.remaining_qty > 0) + new_standard_price = next_candidates and next_candidates[0].unit_cost or new_standard_price + break + + # Update the standard price with the price of the last used candidate, if any. + if new_standard_price and self.cost_method == 'fifo': + self.sudo().with_company(company.id).with_context(disable_auto_svl=True).standard_price = new_standard_price + + # If there's still quantity to value but we're out of candidates, we fall in the + # negative stock use case. We chose to value the out move at the price of the + # last out and a correction entry will be made once `_fifo_vacuum` is called. + vals = {} + if float_is_zero(qty_to_take_on_candidates, precision_rounding=self.uom_id.rounding): + vals = { + 'value': -tmp_value, + 'unit_cost': tmp_value / quantity, + } + else: + assert qty_to_take_on_candidates > 0 + last_fifo_price = new_standard_price or self.standard_price + negative_stock_value = last_fifo_price * -qty_to_take_on_candidates + tmp_value += abs(negative_stock_value) + vals = { + 'remaining_qty': -qty_to_take_on_candidates, + 'value': -tmp_value, + 'unit_cost': last_fifo_price, + } + return vals + + def _run_fifo_vacuum(self, company=None): + """Compensate layer valued at an estimated price with the price of future receipts + if any. If the estimated price is equals to the real price, no layer is created but + the original layer is marked as compensated. + + :param company: recordset of `res.company` to limit the execution of the vacuum + """ + self.ensure_one() + if company is None: + company = self.env.company + svls_to_vacuum = self.env['stock.valuation.layer'].sudo().search([ + ('product_id', '=', self.id), + ('remaining_qty', '<', 0), + ('stock_move_id', '!=', False), + ('company_id', '=', company.id), + ], order='create_date, id') + if not svls_to_vacuum: + return + + domain = [ + ('company_id', '=', company.id), + ('product_id', '=', self.id), + ('remaining_qty', '>', 0), + ('create_date', '>=', svls_to_vacuum[0].create_date), + ] + all_candidates = self.env['stock.valuation.layer'].sudo().search(domain) + + for svl_to_vacuum in svls_to_vacuum: + # We don't use search to avoid executing _flush_search and to decrease interaction with DB + candidates = all_candidates.filtered( + lambda r: r.create_date > svl_to_vacuum.create_date + or r.create_date == svl_to_vacuum.create_date + and r.id > svl_to_vacuum.id + ) + if not candidates: + break + qty_to_take_on_candidates = abs(svl_to_vacuum.remaining_qty) + qty_taken_on_candidates = 0 + tmp_value = 0 + for candidate in candidates: + qty_taken_on_candidate = min(candidate.remaining_qty, qty_to_take_on_candidates) + qty_taken_on_candidates += qty_taken_on_candidate + + candidate_unit_cost = candidate.remaining_value / candidate.remaining_qty + value_taken_on_candidate = qty_taken_on_candidate * candidate_unit_cost + value_taken_on_candidate = candidate.currency_id.round(value_taken_on_candidate) + new_remaining_value = candidate.remaining_value - value_taken_on_candidate + + candidate_vals = { + 'remaining_qty': candidate.remaining_qty - qty_taken_on_candidate, + 'remaining_value': new_remaining_value + } + candidate.write(candidate_vals) + if not (candidate.remaining_qty > 0): + all_candidates -= candidate + + qty_to_take_on_candidates -= qty_taken_on_candidate + tmp_value += value_taken_on_candidate + if float_is_zero(qty_to_take_on_candidates, precision_rounding=self.uom_id.rounding): + break + + # Get the estimated value we will correct. + remaining_value_before_vacuum = svl_to_vacuum.unit_cost * qty_taken_on_candidates + new_remaining_qty = svl_to_vacuum.remaining_qty + qty_taken_on_candidates + corrected_value = remaining_value_before_vacuum - tmp_value + svl_to_vacuum.write({ + 'remaining_qty': new_remaining_qty, + }) + + # Don't create a layer or an accounting entry if the corrected value is zero. + if svl_to_vacuum.currency_id.is_zero(corrected_value): + continue + + corrected_value = svl_to_vacuum.currency_id.round(corrected_value) + move = svl_to_vacuum.stock_move_id + vals = { + 'product_id': self.id, + 'value': corrected_value, + 'unit_cost': 0, + 'quantity': 0, + 'remaining_qty': 0, + 'stock_move_id': move.id, + 'company_id': move.company_id.id, + 'description': 'Revaluation of %s (negative inventory)' % move.picking_id.name or move.name, + 'stock_valuation_layer_id': svl_to_vacuum.id, + } + vacuum_svl = self.env['stock.valuation.layer'].sudo().create(vals) + + # Create the account move. + if self.valuation != 'real_time': + continue + vacuum_svl.stock_move_id._account_entry_move( + vacuum_svl.quantity, vacuum_svl.description, vacuum_svl.id, vacuum_svl.value + ) + # Create the related expense entry + self._create_fifo_vacuum_anglo_saxon_expense_entry(vacuum_svl, svl_to_vacuum) + + # If some negative stock were fixed, we need to recompute the standard price. + product = self.with_company(company.id) + if product.cost_method == 'average' and not float_is_zero(product.quantity_svl, precision_rounding=self.uom_id.rounding): + product.sudo().with_context(disable_auto_svl=True).write({'standard_price': product.value_svl / product.quantity_svl}) + + + def _create_fifo_vacuum_anglo_saxon_expense_entry(self, vacuum_svl, svl_to_vacuum): + """ When product is delivered and invoiced while you don't have units in stock anymore, there are chances of that + product getting undervalued/overvalued. So, we should nevertheless take into account the fact that the product has + already been delivered and invoiced to the customer by posting the value difference in the expense account also. + Consider the below case where product is getting undervalued: + + You bought 8 units @ 10$ -> You have a stock valuation of 8 units, unit cost 10. + Then you deliver 10 units of the product. + You assumed the missing 2 should go out at a value of 10$ but you are not sure yet as it hasn't been bought in Odoo yet. + Afterwards, you buy missing 2 units of the same product at 12$ instead of expected 10$. + In case the product has been undervalued when delivered without stock, the vacuum entry is the following one (this entry already takes place): + + Account | Debit | Credit + =================================================== + Stock Valuation | 0.00 | 4.00 + Stock Interim (Delivered) | 4.00 | 0.00 + + So, on delivering product with different price, We should create additional journal items like: + Account | Debit | Credit + =================================================== + Stock Interim (Delivered) | 0.00 | 4.00 + Expenses Revaluation | 4.00 | 0.00 + """ + if not vacuum_svl.company_id.anglo_saxon_accounting or not svl_to_vacuum.stock_move_id._is_out(): + return False + AccountMove = self.env['account.move'].sudo() + account_move_lines = svl_to_vacuum.account_move_id.line_ids + # Find related customer invoice where product is delivered while you don't have units in stock anymore + reconciled_line_ids = list(set(account_move_lines._reconciled_lines()) - set(account_move_lines.ids)) + account_move = AccountMove.search([('line_ids','in', reconciled_line_ids)], limit=1) + # If delivered quantity is not invoiced then no need to create this entry + if not account_move: + return False + accounts = svl_to_vacuum.product_id.product_tmpl_id.get_product_accounts(fiscal_pos=account_move.fiscal_position_id) + if not accounts.get('stock_output') or not accounts.get('expense'): + return False + description = "Expenses %s" % (vacuum_svl.description) + move_lines = vacuum_svl.stock_move_id._prepare_account_move_line( + vacuum_svl.quantity, vacuum_svl.value * -1, + accounts['stock_output'].id, accounts['expense'].id, + description) + new_account_move = AccountMove.sudo().create({ + 'journal_id': accounts['stock_journal'].id, + 'line_ids': move_lines, + 'date': self._context.get('force_period_date', fields.Date.context_today(self)), + 'ref': description, + 'stock_move_id': vacuum_svl.stock_move_id.id, + 'move_type': 'entry', + }) + new_account_move._post() + to_reconcile_account_move_lines = vacuum_svl.account_move_id.line_ids.filtered(lambda l: not l.reconciled and l.account_id == accounts['stock_output'] and l.account_id.reconcile) + to_reconcile_account_move_lines += new_account_move.line_ids.filtered(lambda l: not l.reconciled and l.account_id == accounts['stock_output'] and l.account_id.reconcile) + return to_reconcile_account_move_lines.reconcile() + + @api.model + def _svl_empty_stock(self, description, product_category=None, product_template=None): + impacted_product_ids = [] + impacted_products = self.env['product.product'] + products_orig_quantity_svl = {} + + # get the impacted products + domain = [('type', '=', 'product')] + if product_category is not None: + domain += [('categ_id', '=', product_category.id)] + elif product_template is not None: + domain += [('product_tmpl_id', '=', product_template.id)] + else: + raise ValueError() + products = self.env['product.product'].search_read(domain, ['quantity_svl']) + for product in products: + impacted_product_ids.append(product['id']) + products_orig_quantity_svl[product['id']] = product['quantity_svl'] + impacted_products |= self.env['product.product'].browse(impacted_product_ids) + + # empty out the stock for the impacted products + empty_stock_svl_list = [] + for product in impacted_products: + # FIXME sle: why not use products_orig_quantity_svl here? + if float_is_zero(product.quantity_svl, precision_rounding=product.uom_id.rounding): + # FIXME: create an empty layer to track the change? + continue + svsl_vals = product._prepare_out_svl_vals(product.quantity_svl, self.env.company) + svsl_vals['description'] = description + svsl_vals.pop('rounding_adjustment', '') + svsl_vals['company_id'] = self.env.company.id + empty_stock_svl_list.append(svsl_vals) + return empty_stock_svl_list, products_orig_quantity_svl, impacted_products + + def _svl_replenish_stock(self, description, products_orig_quantity_svl): + refill_stock_svl_list = [] + for product in self: + quantity_svl = products_orig_quantity_svl[product.id] + if quantity_svl: + svl_vals = product._prepare_in_svl_vals(quantity_svl, product.standard_price) + svl_vals['description'] = description + svl_vals['company_id'] = self.env.company.id + refill_stock_svl_list.append(svl_vals) + return refill_stock_svl_list + + @api.model + def _svl_empty_stock_am(self, stock_valuation_layers): + move_vals_list = [] + product_accounts = {product.id: product.product_tmpl_id.get_product_accounts() for product in stock_valuation_layers.mapped('product_id')} + for out_stock_valuation_layer in stock_valuation_layers: + product = out_stock_valuation_layer.product_id + expense_account = product._get_product_accounts()['expense'] + if not expense_account: + raise UserError(_('Please define an expense account for this product: "%s" (id:%d) - or for its category: "%s".') % (product.name, product.id, self.name)) + if not product_accounts[product.id].get('stock_valuation'): + raise UserError(_('You don\'t have any stock valuation account defined on your product category. You must define one before processing this operation.')) + + debit_account_id = expense_account.id + credit_account_id = product_accounts[product.id]['stock_valuation'].id + value = out_stock_valuation_layer.value + move_vals = { + 'journal_id': product_accounts[product.id]['stock_journal'].id, + 'company_id': self.env.company.id, + 'ref': product.default_code, + 'stock_valuation_layer_ids': [(6, None, [out_stock_valuation_layer.id])], + 'line_ids': [(0, 0, { + 'name': out_stock_valuation_layer.description, + 'account_id': debit_account_id, + 'debit': abs(value), + 'credit': 0, + 'product_id': product.id, + }), (0, 0, { + 'name': out_stock_valuation_layer.description, + 'account_id': credit_account_id, + 'debit': 0, + 'credit': abs(value), + 'product_id': product.id, + })], + 'move_type': 'entry', + } + move_vals_list.append(move_vals) + return move_vals_list + + def _svl_replenish_stock_am(self, stock_valuation_layers): + move_vals_list = [] + product_accounts = {product.id: product.product_tmpl_id.get_product_accounts() for product in stock_valuation_layers.mapped('product_id')} + for out_stock_valuation_layer in stock_valuation_layers: + product = out_stock_valuation_layer.product_id + if not product_accounts[product.id].get('stock_input'): + raise UserError(_('You don\'t have any input valuation account defined on your product category. You must define one before processing this operation.')) + if not product_accounts[product.id].get('stock_valuation'): + raise UserError(_('You don\'t have any stock valuation account defined on your product category. You must define one before processing this operation.')) + + debit_account_id = product_accounts[product.id]['stock_valuation'].id + credit_account_id = product_accounts[product.id]['stock_input'].id + value = out_stock_valuation_layer.value + move_vals = { + 'journal_id': product_accounts[product.id]['stock_journal'].id, + 'company_id': self.env.company.id, + 'ref': product.default_code, + 'stock_valuation_layer_ids': [(6, None, [out_stock_valuation_layer.id])], + 'line_ids': [(0, 0, { + 'name': out_stock_valuation_layer.description, + 'account_id': debit_account_id, + 'debit': abs(value), + 'credit': 0, + 'product_id': product.id, + }), (0, 0, { + 'name': out_stock_valuation_layer.description, + 'account_id': credit_account_id, + 'debit': 0, + 'credit': abs(value), + 'product_id': product.id, + })], + 'move_type': 'entry', + } + move_vals_list.append(move_vals) + return move_vals_list + + # ------------------------------------------------------------------------- + # Anglo saxon helpers + # ------------------------------------------------------------------------- + def _stock_account_get_anglo_saxon_price_unit(self, uom=False): + price = self.standard_price + if not self or not uom or self.uom_id.id == uom.id: + return price or 0.0 + return self.uom_id._compute_price(price, uom) + + def _compute_average_price(self, qty_invoiced, qty_to_invoice, stock_moves): + """Go over the valuation layers of `stock_moves` to value `qty_to_invoice` while taking + care of ignoring `qty_invoiced`. If `qty_to_invoice` is greater than what's possible to + value with the valuation layers, use the product's standard price. + + :param qty_invoiced: quantity already invoiced + :param qty_to_invoice: quantity to invoice + :param stock_moves: recordset of `stock.move` + :returns: the anglo saxon price unit + :rtype: float + """ + self.ensure_one() + if not qty_to_invoice: + return 0.0 + + returned_quantities = defaultdict(float) + for move in stock_moves: + if move.origin_returned_move_id: + returned_quantities[move.origin_returned_move_id.id] += abs(sum(move.stock_valuation_layer_ids.mapped('quantity'))) + candidates = stock_moves\ + .sudo()\ + .filtered(lambda m: not (m.origin_returned_move_id and sum(m.stock_valuation_layer_ids.mapped('quantity')) >= 0))\ + .mapped('stock_valuation_layer_ids')\ + .sorted() + qty_to_take_on_candidates = qty_to_invoice + tmp_value = 0 # to accumulate the value taken on the candidates + for candidate in candidates: + candidate_quantity = abs(candidate.quantity) + if candidate.stock_move_id.id in returned_quantities: + candidate_quantity -= returned_quantities[candidate.stock_move_id.id] + if float_is_zero(candidate_quantity, precision_rounding=candidate.uom_id.rounding): + continue # correction entries + if not float_is_zero(qty_invoiced, precision_rounding=candidate.uom_id.rounding): + qty_ignored = min(qty_invoiced, candidate_quantity) + qty_invoiced -= qty_ignored + candidate_quantity -= qty_ignored + if float_is_zero(candidate_quantity, precision_rounding=candidate.uom_id.rounding): + continue + qty_taken_on_candidate = min(qty_to_take_on_candidates, candidate_quantity) + + qty_to_take_on_candidates -= qty_taken_on_candidate + tmp_value += qty_taken_on_candidate * \ + ((candidate.value + sum(candidate.stock_valuation_layer_ids.mapped('value'))) / candidate.quantity) + if float_is_zero(qty_to_take_on_candidates, precision_rounding=candidate.uom_id.rounding): + break + + # If there's still quantity to invoice but we're out of candidates, we chose the standard + # price to estimate the anglo saxon price unit. + if not float_is_zero(qty_to_take_on_candidates, precision_rounding=self.uom_id.rounding): + negative_stock_value = self.standard_price * qty_to_take_on_candidates + tmp_value += negative_stock_value + + return tmp_value / qty_to_invoice + + +class ProductCategory(models.Model): + _inherit = 'product.category' + + property_valuation = fields.Selection([ + ('manual_periodic', 'Manual'), + ('real_time', 'Automated')], string='Inventory Valuation', + company_dependent=True, copy=True, required=True, + help="""Manual: The accounting entries to value the inventory are not posted automatically. + Automated: An accounting entry is automatically created to value the inventory when a product enters or leaves the company. + """) + property_cost_method = fields.Selection([ + ('standard', 'Standard Price'), + ('fifo', 'First In First Out (FIFO)'), + ('average', 'Average Cost (AVCO)')], string="Costing Method", + company_dependent=True, copy=True, required=True, + help="""Standard Price: The products are valued at their standard cost defined on the product. + Average Cost (AVCO): The products are valued at weighted average cost. + First In First Out (FIFO): The products are valued supposing those that enter the company first will also leave it first. + """) + property_stock_journal = fields.Many2one( + 'account.journal', 'Stock Journal', company_dependent=True, + domain="[('company_id', '=', allowed_company_ids[0])]", check_company=True, + help="When doing automated inventory valuation, this is the Accounting Journal in which entries will be automatically posted when stock moves are processed.") + property_stock_account_input_categ_id = fields.Many2one( + 'account.account', 'Stock Input Account', company_dependent=True, + domain="[('company_id', '=', allowed_company_ids[0]), ('deprecated', '=', False)]", check_company=True, + help="""Counterpart journal items for all incoming stock moves will be posted in this account, unless there is a specific valuation account + set on the source location. This is the default value for all products in this category. It can also directly be set on each product.""") + property_stock_account_output_categ_id = fields.Many2one( + 'account.account', 'Stock Output Account', company_dependent=True, + domain="[('company_id', '=', allowed_company_ids[0]), ('deprecated', '=', False)]", check_company=True, + help="""When doing automated inventory valuation, counterpart journal items for all outgoing stock moves will be posted in this account, + unless there is a specific valuation account set on the destination location. This is the default value for all products in this category. + It can also directly be set on each product.""") + property_stock_valuation_account_id = fields.Many2one( + 'account.account', 'Stock Valuation Account', company_dependent=True, + domain="[('company_id', '=', allowed_company_ids[0]), ('deprecated', '=', False)]", check_company=True, + help="""When automated inventory valuation is enabled on a product, this account will hold the current value of the products.""",) + + @api.constrains('property_stock_valuation_account_id', 'property_stock_account_output_categ_id', 'property_stock_account_input_categ_id') + def _check_valuation_accouts(self): + # Prevent to set the valuation account as the input or output account. + for category in self: + valuation_account = category.property_stock_valuation_account_id + input_and_output_accounts = category.property_stock_account_input_categ_id | category.property_stock_account_output_categ_id + if valuation_account and valuation_account in input_and_output_accounts: + raise ValidationError(_('The Stock Input and/or Output accounts cannot be the same as the Stock Valuation account.')) + + @api.onchange('property_cost_method') + def onchange_property_valuation(self): + if not self._origin: + # don't display the warning when creating a product category + return + return { + 'warning': { + 'title': _("Warning"), + 'message': _("Changing your cost method is an important change that will impact your inventory valuation. Are you sure you want to make that change?"), + } + } + + def write(self, vals): + impacted_categories = {} + move_vals_list = [] + Product = self.env['product.product'] + SVL = self.env['stock.valuation.layer'] + + if 'property_cost_method' in vals or 'property_valuation' in vals: + # When the cost method or the valuation are changed on a product category, we empty + # out and replenish the stock for each impacted products. + new_cost_method = vals.get('property_cost_method') + new_valuation = vals.get('property_valuation') + + + for product_category in self: + valuation_impacted = False + if new_cost_method and new_cost_method != product_category.property_cost_method: + valuation_impacted = True + if new_valuation and new_valuation != product_category.property_valuation: + valuation_impacted = True + if valuation_impacted is False: + continue + + # Empty out the stock with the current cost method. + if new_cost_method: + description = _("Costing method change for product category %s: from %s to %s.") \ + % (product_category.display_name, product_category.property_cost_method, new_cost_method) + else: + description = _("Valuation method change for product category %s: from %s to %s.") \ + % (product_category.display_name, product_category.property_valuation, new_valuation) + out_svl_vals_list, products_orig_quantity_svl, products = Product\ + ._svl_empty_stock(description, product_category=product_category) + out_stock_valuation_layers = SVL.sudo().create(out_svl_vals_list) + if product_category.property_valuation == 'real_time': + move_vals_list += Product._svl_empty_stock_am(out_stock_valuation_layers) + impacted_categories[product_category] = (products, description, products_orig_quantity_svl) + + res = super(ProductCategory, self).write(vals) + + for product_category, (products, description, products_orig_quantity_svl) in impacted_categories.items(): + # Replenish the stock with the new cost method. + in_svl_vals_list = products._svl_replenish_stock(description, products_orig_quantity_svl) + in_stock_valuation_layers = SVL.sudo().create(in_svl_vals_list) + if product_category.property_valuation == 'real_time': + move_vals_list += Product._svl_replenish_stock_am(in_stock_valuation_layers) + + # Check access right + if move_vals_list and not self.env['stock.valuation.layer'].check_access_rights('read', raise_exception=False): + raise UserError(_("The action leads to the creation of a journal entry, for which you don't have the access rights.")) + # Create the account moves. + if move_vals_list: + account_moves = self.env['account.move'].sudo().create(move_vals_list) + account_moves._post() + return res diff --git a/addons/stock_account/models/res_config_settings.py b/addons/stock_account/models/res_config_settings.py new file mode 100644 index 00000000..0889e5e0 --- /dev/null +++ b/addons/stock_account/models/res_config_settings.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + module_stock_landed_costs = fields.Boolean("Landed Costs", + help="Affect landed costs on reception operations and split them among products to update their cost price.") diff --git a/addons/stock_account/models/stock_inventory.py b/addons/stock_account/models/stock_inventory.py new file mode 100644 index 00000000..6dafe449 --- /dev/null +++ b/addons/stock_account/models/stock_inventory.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class StockInventory(models.Model): + _inherit = "stock.inventory" + + accounting_date = fields.Date( + 'Accounting Date', + help="Date at which the accounting entries will be created" + " in case of automated inventory valuation." + " If empty, the inventory date will be used.") + has_account_moves = fields.Boolean(compute='_compute_has_account_moves') + + def _compute_has_account_moves(self): + for inventory in self: + if inventory.state == 'done' and inventory.move_ids: + account_move = self.env['account.move'].search_count([ + ('stock_move_id.id', 'in', inventory.move_ids.ids) + ]) + inventory.has_account_moves = account_move > 0 + else: + inventory.has_account_moves = False + + def action_get_account_moves(self): + self.ensure_one() + action_data = self.env['ir.actions.act_window']._for_xml_id('account.action_move_journal_line') + action_data['domain'] = [('stock_move_id.id', 'in', self.move_ids.ids)] + action_data['context'] = dict(self._context, create=False) + return action_data + + def post_inventory(self): + res = True + acc_inventories = self.filtered(lambda inventory: inventory.accounting_date) + for inventory in acc_inventories: + res = super(StockInventory, inventory.with_context(force_period_date=inventory.accounting_date)).post_inventory() + other_inventories = self - acc_inventories + if other_inventories: + res = super(StockInventory, other_inventories).post_inventory() + return res diff --git a/addons/stock_account/models/stock_location.py b/addons/stock_account/models/stock_location.py new file mode 100644 index 00000000..731e31b3 --- /dev/null +++ b/addons/stock_account/models/stock_location.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class StockLocation(models.Model): + _inherit = "stock.location" + + valuation_in_account_id = fields.Many2one( + 'account.account', 'Stock Valuation Account (Incoming)', + domain=[('internal_type', '=', 'other'), ('deprecated', '=', False)], + help="Used for real-time inventory valuation. When set on a virtual location (non internal type), " + "this account will be used to hold the value of products being moved from an internal location " + "into this location, instead of the generic Stock Output Account set on the product. " + "This has no effect for internal locations.") + valuation_out_account_id = fields.Many2one( + 'account.account', 'Stock Valuation Account (Outgoing)', + domain=[('internal_type', '=', 'other'), ('deprecated', '=', False)], + help="Used for real-time inventory valuation. When set on a virtual location (non internal type), " + "this account will be used to hold the value of products being moved out of this location " + "and into an internal location, instead of the generic Stock Output Account set on the product. " + "This has no effect for internal locations.") + + def _should_be_valued(self): + """ This method returns a boolean reflecting whether the products stored in `self` should + be considered when valuating the stock of a company. + """ + self.ensure_one() + if self.usage == 'internal' or (self.usage == 'transit' and self.company_id): + return True + return False + diff --git a/addons/stock_account/models/stock_move.py b/addons/stock_account/models/stock_move.py new file mode 100644 index 00000000..254a74bc --- /dev/null +++ b/addons/stock_account/models/stock_move.py @@ -0,0 +1,522 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from collections import defaultdict + +from odoo import api, fields, models, _ +from odoo.exceptions import UserError +from odoo.tools import float_is_zero, OrderedSet + +import logging +_logger = logging.getLogger(__name__) + + +class StockMove(models.Model): + _inherit = "stock.move" + + to_refund = fields.Boolean(string="Update quantities on SO/PO", copy=False, + help='Trigger a decrease of the delivered/received quantity in the associated Sale Order/Purchase Order') + account_move_ids = fields.One2many('account.move', 'stock_move_id') + stock_valuation_layer_ids = fields.One2many('stock.valuation.layer', 'stock_move_id') + + def _filter_anglo_saxon_moves(self, product): + return self.filtered(lambda m: m.product_id.id == product.id) + + def action_get_account_moves(self): + self.ensure_one() + action_data = self.env['ir.actions.act_window']._for_xml_id('account.action_move_journal_line') + action_data['domain'] = [('id', 'in', self.account_move_ids.ids)] + return action_data + + def _get_price_unit(self): + """ Returns the unit price to value this stock move """ + self.ensure_one() + price_unit = self.price_unit + precision = self.env['decimal.precision'].precision_get('Product Price') + # If the move is a return, use the original move's price unit. + if self.origin_returned_move_id and self.origin_returned_move_id.sudo().stock_valuation_layer_ids: + price_unit = self.origin_returned_move_id.sudo().stock_valuation_layer_ids[-1].unit_cost + return not float_is_zero(price_unit, precision) and price_unit or self.product_id.standard_price + + @api.model + def _get_valued_types(self): + """Returns a list of `valued_type` as strings. During `action_done`, we'll call + `_is_[valued_type]'. If the result of this method is truthy, we'll consider the move to be + valued. + + :returns: a list of `valued_type` + :rtype: list + """ + return ['in', 'out', 'dropshipped', 'dropshipped_returned'] + + def _get_in_move_lines(self): + """ Returns the `stock.move.line` records of `self` considered as incoming. It is done thanks + to the `_should_be_valued` method of their source and destionation location as well as their + owner. + + :returns: a subset of `self` containing the incoming records + :rtype: recordset + """ + self.ensure_one() + res = OrderedSet() + for move_line in self.move_line_ids: + if move_line.owner_id and move_line.owner_id != move_line.company_id.partner_id: + continue + if not move_line.location_id._should_be_valued() and move_line.location_dest_id._should_be_valued(): + res.add(move_line.id) + return self.env['stock.move.line'].browse(res) + + def _is_in(self): + """Check if the move should be considered as entering the company so that the cost method + will be able to apply the correct logic. + + :returns: True if the move is entering the company else False + :rtype: bool + """ + self.ensure_one() + if self._get_in_move_lines(): + return True + return False + + def _get_out_move_lines(self): + """ Returns the `stock.move.line` records of `self` considered as outgoing. It is done thanks + to the `_should_be_valued` method of their source and destionation location as well as their + owner. + + :returns: a subset of `self` containing the outgoing records + :rtype: recordset + """ + res = self.env['stock.move.line'] + for move_line in self.move_line_ids: + if move_line.owner_id and move_line.owner_id != move_line.company_id.partner_id: + continue + if move_line.location_id._should_be_valued() and not move_line.location_dest_id._should_be_valued(): + res |= move_line + return res + + def _is_out(self): + """Check if the move should be considered as leaving the company so that the cost method + will be able to apply the correct logic. + + :returns: True if the move is leaving the company else False + :rtype: bool + """ + self.ensure_one() + if self._get_out_move_lines(): + return True + return False + + def _is_dropshipped(self): + """Check if the move should be considered as a dropshipping move so that the cost method + will be able to apply the correct logic. + + :returns: True if the move is a dropshipping one else False + :rtype: bool + """ + self.ensure_one() + return self.location_id.usage == 'supplier' and self.location_dest_id.usage == 'customer' + + def _is_dropshipped_returned(self): + """Check if the move should be considered as a returned dropshipping move so that the cost + method will be able to apply the correct logic. + + :returns: True if the move is a returned dropshipping one else False + :rtype: bool + """ + self.ensure_one() + return self.location_id.usage == 'customer' and self.location_dest_id.usage == 'supplier' + + def _prepare_common_svl_vals(self): + """When a `stock.valuation.layer` is created from a `stock.move`, we can prepare a dict of + common vals. + + :returns: the common values when creating a `stock.valuation.layer` from a `stock.move` + :rtype: dict + """ + self.ensure_one() + return { + 'stock_move_id': self.id, + 'company_id': self.company_id.id, + 'product_id': self.product_id.id, + 'description': self.reference and '%s - %s' % (self.reference, self.product_id.name) or self.product_id.name, + } + + def _create_in_svl(self, forced_quantity=None): + """Create a `stock.valuation.layer` from `self`. + + :param forced_quantity: under some circunstances, the quantity to value is different than + the initial demand of the move (Default value = None) + """ + svl_vals_list = [] + for move in self: + move = move.with_company(move.company_id) + valued_move_lines = move._get_in_move_lines() + valued_quantity = 0 + for valued_move_line in valued_move_lines: + valued_quantity += valued_move_line.product_uom_id._compute_quantity(valued_move_line.qty_done, move.product_id.uom_id) + unit_cost = abs(move._get_price_unit()) # May be negative (i.e. decrease an out move). + if move.product_id.cost_method == 'standard': + unit_cost = move.product_id.standard_price + svl_vals = move.product_id._prepare_in_svl_vals(forced_quantity or valued_quantity, unit_cost) + svl_vals.update(move._prepare_common_svl_vals()) + if forced_quantity: + svl_vals['description'] = 'Correction of %s (modification of past move)' % move.picking_id.name or move.name + svl_vals_list.append(svl_vals) + return self.env['stock.valuation.layer'].sudo().create(svl_vals_list) + + def _create_out_svl(self, forced_quantity=None): + """Create a `stock.valuation.layer` from `self`. + + :param forced_quantity: under some circunstances, the quantity to value is different than + the initial demand of the move (Default value = None) + """ + svl_vals_list = [] + for move in self: + move = move.with_company(move.company_id) + valued_move_lines = move._get_out_move_lines() + valued_quantity = 0 + for valued_move_line in valued_move_lines: + valued_quantity += valued_move_line.product_uom_id._compute_quantity(valued_move_line.qty_done, move.product_id.uom_id) + if float_is_zero(forced_quantity or valued_quantity, precision_rounding=move.product_id.uom_id.rounding): + continue + svl_vals = move.product_id._prepare_out_svl_vals(forced_quantity or valued_quantity, move.company_id) + svl_vals.update(move._prepare_common_svl_vals()) + if forced_quantity: + svl_vals['description'] = 'Correction of %s (modification of past move)' % move.picking_id.name or move.name + svl_vals['description'] += svl_vals.pop('rounding_adjustment', '') + svl_vals_list.append(svl_vals) + return self.env['stock.valuation.layer'].sudo().create(svl_vals_list) + + def _create_dropshipped_svl(self, forced_quantity=None): + """Create a `stock.valuation.layer` from `self`. + + :param forced_quantity: under some circunstances, the quantity to value is different than + the initial demand of the move (Default value = None) + """ + svl_vals_list = [] + for move in self: + move = move.with_company(move.company_id) + valued_move_lines = move.move_line_ids + valued_quantity = 0 + for valued_move_line in valued_move_lines: + valued_quantity += valued_move_line.product_uom_id._compute_quantity(valued_move_line.qty_done, move.product_id.uom_id) + quantity = forced_quantity or valued_quantity + + unit_cost = move._get_price_unit() + if move.product_id.cost_method == 'standard': + unit_cost = move.product_id.standard_price + + common_vals = dict(move._prepare_common_svl_vals(), remaining_qty=0) + + # create the in + in_vals = { + 'unit_cost': unit_cost, + 'value': unit_cost * quantity, + 'quantity': quantity, + } + in_vals.update(common_vals) + svl_vals_list.append(in_vals) + + # create the out + out_vals = { + 'unit_cost': unit_cost, + 'value': unit_cost * quantity * -1, + 'quantity': quantity * -1, + } + out_vals.update(common_vals) + svl_vals_list.append(out_vals) + return self.env['stock.valuation.layer'].sudo().create(svl_vals_list) + + def _create_dropshipped_returned_svl(self, forced_quantity=None): + """Create a `stock.valuation.layer` from `self`. + + :param forced_quantity: under some circunstances, the quantity to value is different than + the initial demand of the move (Default value = None) + """ + return self._create_dropshipped_svl(forced_quantity=forced_quantity) + + def _action_done(self, cancel_backorder=False): + # Init a dict that will group the moves by valuation type, according to `move._is_valued_type`. + valued_moves = {valued_type: self.env['stock.move'] for valued_type in self._get_valued_types()} + for move in self: + if float_is_zero(move.quantity_done, precision_rounding=move.product_uom.rounding): + continue + for valued_type in self._get_valued_types(): + if getattr(move, '_is_%s' % valued_type)(): + valued_moves[valued_type] |= move + + # AVCO application + valued_moves['in'].product_price_update_before_done() + + res = super(StockMove, self)._action_done(cancel_backorder=cancel_backorder) + + # '_action_done' might have created an extra move to be valued + for move in res - self: + for valued_type in self._get_valued_types(): + if getattr(move, '_is_%s' % valued_type)(): + valued_moves[valued_type] |= move + + stock_valuation_layers = self.env['stock.valuation.layer'].sudo() + # Create the valuation layers in batch by calling `moves._create_valued_type_svl`. + for valued_type in self._get_valued_types(): + todo_valued_moves = valued_moves[valued_type] + if todo_valued_moves: + todo_valued_moves._sanity_check_for_valuation() + stock_valuation_layers |= getattr(todo_valued_moves, '_create_%s_svl' % valued_type)() + + + for svl in stock_valuation_layers: + if not svl.product_id.valuation == 'real_time': + continue + if svl.currency_id.is_zero(svl.value): + continue + svl.stock_move_id._account_entry_move(svl.quantity, svl.description, svl.id, svl.value) + + stock_valuation_layers._check_company() + + # For every in move, run the vacuum for the linked product. + products_to_vacuum = valued_moves['in'].mapped('product_id') + company = valued_moves['in'].mapped('company_id') and valued_moves['in'].mapped('company_id')[0] or self.env.company + for product_to_vacuum in products_to_vacuum: + product_to_vacuum._run_fifo_vacuum(company) + + return res + + def _sanity_check_for_valuation(self): + for move in self: + # Apply restrictions on the stock move to be able to make + # consistent accounting entries. + if move._is_in() and move._is_out(): + raise UserError(_("The move lines are not in a consistent state: some are entering and other are leaving the company.")) + company_src = move.mapped('move_line_ids.location_id.company_id') + company_dst = move.mapped('move_line_ids.location_dest_id.company_id') + try: + if company_src: + company_src.ensure_one() + if company_dst: + company_dst.ensure_one() + except ValueError: + raise UserError(_("The move lines are not in a consistent states: they do not share the same origin or destination company.")) + if company_src and company_dst and company_src.id != company_dst.id: + raise UserError(_("The move lines are not in a consistent states: they are doing an intercompany in a single step while they should go through the intercompany transit location.")) + + def product_price_update_before_done(self, forced_qty=None): + tmpl_dict = defaultdict(lambda: 0.0) + # adapt standard price on incomming moves if the product cost_method is 'average' + std_price_update = {} + for move in self.filtered(lambda move: move._is_in() and move.with_company(move.company_id).product_id.cost_method == 'average'): + product_tot_qty_available = move.product_id.sudo().with_company(move.company_id).quantity_svl + tmpl_dict[move.product_id.id] + rounding = move.product_id.uom_id.rounding + + valued_move_lines = move._get_in_move_lines() + qty_done = 0 + for valued_move_line in valued_move_lines: + qty_done += valued_move_line.product_uom_id._compute_quantity(valued_move_line.qty_done, move.product_id.uom_id) + + qty = forced_qty or qty_done + if float_is_zero(product_tot_qty_available, precision_rounding=rounding): + new_std_price = move._get_price_unit() + elif float_is_zero(product_tot_qty_available + move.product_qty, precision_rounding=rounding) or \ + float_is_zero(product_tot_qty_available + qty, precision_rounding=rounding): + new_std_price = move._get_price_unit() + else: + # Get the standard price + amount_unit = std_price_update.get((move.company_id.id, move.product_id.id)) or move.product_id.with_company(move.company_id).standard_price + new_std_price = ((amount_unit * product_tot_qty_available) + (move._get_price_unit() * qty)) / (product_tot_qty_available + qty) + + tmpl_dict[move.product_id.id] += qty_done + # Write the standard price, as SUPERUSER_ID because a warehouse manager may not have the right to write on products + move.product_id.with_company(move.company_id.id).with_context(disable_auto_svl=True).sudo().write({'standard_price': new_std_price}) + std_price_update[move.company_id.id, move.product_id.id] = new_std_price + + # adapt standard price on incomming moves if the product cost_method is 'fifo' + for move in self.filtered(lambda move: + move.with_company(move.company_id).product_id.cost_method == 'fifo' + and float_is_zero(move.product_id.sudo().quantity_svl, precision_rounding=move.product_id.uom_id.rounding)): + move.product_id.with_company(move.company_id.id).sudo().write({'standard_price': move._get_price_unit()}) + + def _get_accounting_data_for_valuation(self): + """ Return the accounts and journal to use to post Journal Entries for + the real-time valuation of the quant. """ + self.ensure_one() + self = self.with_company(self.company_id) + accounts_data = self.product_id.product_tmpl_id.get_product_accounts() + + acc_src = self._get_src_account(accounts_data) + acc_dest = self._get_dest_account(accounts_data) + + acc_valuation = accounts_data.get('stock_valuation', False) + if acc_valuation: + acc_valuation = acc_valuation.id + if not accounts_data.get('stock_journal', False): + raise UserError(_('You don\'t have any stock journal defined on your product category, check if you have installed a chart of accounts.')) + if not acc_src: + raise UserError(_('Cannot find a stock input account for the product %s. You must define one on the product category, or on the location, before processing this operation.') % (self.product_id.display_name)) + if not acc_dest: + raise UserError(_('Cannot find a stock output account for the product %s. You must define one on the product category, or on the location, before processing this operation.') % (self.product_id.display_name)) + if not acc_valuation: + raise UserError(_('You don\'t have any stock valuation account defined on your product category. You must define one before processing this operation.')) + journal_id = accounts_data['stock_journal'].id + return journal_id, acc_src, acc_dest, acc_valuation + + def _get_src_account(self, accounts_data): + return self.location_id.valuation_out_account_id.id or accounts_data['stock_input'].id + + def _get_dest_account(self, accounts_data): + return self.location_dest_id.valuation_in_account_id.id or accounts_data['stock_output'].id + + def _prepare_account_move_line(self, qty, cost, credit_account_id, debit_account_id, description): + """ + Generate the account.move.line values to post to track the stock valuation difference due to the + processing of the given quant. + """ + self.ensure_one() + + # the standard_price of the product may be in another decimal precision, or not compatible with the coinage of + # the company currency... so we need to use round() before creating the accounting entries. + debit_value = self.company_id.currency_id.round(cost) + credit_value = debit_value + + valuation_partner_id = self._get_partner_id_for_valuation_lines() + res = [(0, 0, line_vals) for line_vals in self._generate_valuation_lines_data(valuation_partner_id, qty, debit_value, credit_value, debit_account_id, credit_account_id, description).values()] + + return res + + def _generate_valuation_lines_data(self, partner_id, qty, debit_value, credit_value, debit_account_id, credit_account_id, description): + # This method returns a dictionary to provide an easy extension hook to modify the valuation lines (see purchase for an example) + self.ensure_one() + debit_line_vals = { + 'name': description, + 'product_id': self.product_id.id, + 'quantity': qty, + 'product_uom_id': self.product_id.uom_id.id, + 'ref': description, + 'partner_id': partner_id, + 'debit': debit_value if debit_value > 0 else 0, + 'credit': -debit_value if debit_value < 0 else 0, + 'account_id': debit_account_id, + } + + credit_line_vals = { + 'name': description, + 'product_id': self.product_id.id, + 'quantity': qty, + 'product_uom_id': self.product_id.uom_id.id, + 'ref': description, + 'partner_id': partner_id, + 'credit': credit_value if credit_value > 0 else 0, + 'debit': -credit_value if credit_value < 0 else 0, + 'account_id': credit_account_id, + } + + rslt = {'credit_line_vals': credit_line_vals, 'debit_line_vals': debit_line_vals} + if credit_value != debit_value: + # for supplier returns of product in average costing method, in anglo saxon mode + diff_amount = debit_value - credit_value + price_diff_account = self.product_id.property_account_creditor_price_difference + + if not price_diff_account: + price_diff_account = self.product_id.categ_id.property_account_creditor_price_difference_categ + if not price_diff_account: + raise UserError(_('Configuration error. Please configure the price difference account on the product or its category to process this operation.')) + + rslt['price_diff_line_vals'] = { + 'name': self.name, + 'product_id': self.product_id.id, + 'quantity': qty, + 'product_uom_id': self.product_id.uom_id.id, + 'ref': description, + 'partner_id': partner_id, + 'credit': diff_amount > 0 and diff_amount or 0, + 'debit': diff_amount < 0 and -diff_amount or 0, + 'account_id': price_diff_account.id, + } + return rslt + + def _get_partner_id_for_valuation_lines(self): + return (self.picking_id.partner_id and self.env['res.partner']._find_accounting_partner(self.picking_id.partner_id).id) or False + + def _prepare_move_split_vals(self, uom_qty): + vals = super(StockMove, self)._prepare_move_split_vals(uom_qty) + vals['to_refund'] = self.to_refund + return vals + + def _create_account_move_line(self, credit_account_id, debit_account_id, journal_id, qty, description, svl_id, cost): + self.ensure_one() + AccountMove = self.env['account.move'].with_context(default_journal_id=journal_id) + + move_lines = self._prepare_account_move_line(qty, cost, credit_account_id, debit_account_id, description) + if move_lines: + date = self._context.get('force_period_date', fields.Date.context_today(self)) + new_account_move = AccountMove.sudo().create({ + 'journal_id': journal_id, + 'line_ids': move_lines, + 'date': date, + 'ref': description, + 'stock_move_id': self.id, + 'stock_valuation_layer_ids': [(6, None, [svl_id])], + 'move_type': 'entry', + }) + new_account_move._post() + + def _account_entry_move(self, qty, description, svl_id, cost): + """ Accounting Valuation Entries """ + self.ensure_one() + if self.product_id.type != 'product': + # no stock valuation for consumable products + return False + if self.restrict_partner_id: + # if the move isn't owned by the company, we don't make any valuation + return False + + company_from = self._is_out() and self.mapped('move_line_ids.location_id.company_id') or False + company_to = self._is_in() and self.mapped('move_line_ids.location_dest_id.company_id') or False + + journal_id, acc_src, acc_dest, acc_valuation = self._get_accounting_data_for_valuation() + # Create Journal Entry for products arriving in the company; in case of routes making the link between several + # warehouse of the same company, the transit location belongs to this company, so we don't need to create accounting entries + if self._is_in(): + if self._is_returned(valued_type='in'): + self.with_company(company_to)._create_account_move_line(acc_dest, acc_valuation, journal_id, qty, description, svl_id, cost) + else: + self.with_company(company_to)._create_account_move_line(acc_src, acc_valuation, journal_id, qty, description, svl_id, cost) + + # Create Journal Entry for products leaving the company + if self._is_out(): + cost = -1 * cost + if self._is_returned(valued_type='out'): + self.with_company(company_from)._create_account_move_line(acc_valuation, acc_src, journal_id, qty, description, svl_id, cost) + else: + self.with_company(company_from)._create_account_move_line(acc_valuation, acc_dest, journal_id, qty, description, svl_id, cost) + + if self.company_id.anglo_saxon_accounting: + # Creates an account entry from stock_input to stock_output on a dropship move. https://github.com/odoo/odoo/issues/12687 + if self._is_dropshipped(): + if cost > 0: + self.with_company(self.company_id)._create_account_move_line(acc_src, acc_valuation, journal_id, qty, description, svl_id, cost) + else: + cost = -1 * cost + self.with_company(self.company_id)._create_account_move_line(acc_valuation, acc_dest, journal_id, qty, description, svl_id, cost) + elif self._is_dropshipped_returned(): + if cost > 0: + self.with_company(self.company_id)._create_account_move_line(acc_valuation, acc_src, journal_id, qty, description, svl_id, cost) + else: + cost = -1 * cost + self.with_company(self.company_id)._create_account_move_line(acc_dest, acc_valuation, journal_id, qty, description, svl_id, cost) + + if self.company_id.anglo_saxon_accounting: + # Eventually reconcile together the invoice and valuation accounting entries on the stock interim accounts + self._get_related_invoices()._stock_account_anglo_saxon_reconcile_valuation(product=self.product_id) + + def _get_related_invoices(self): # To be overridden in purchase and sale_stock + """ This method is overrided in both purchase and sale_stock modules to adapt + to the way they mix stock moves with invoices. + """ + return self.env['account.move'] + + def _is_returned(self, valued_type): + self.ensure_one() + if valued_type == 'in': + return self.location_id and self.location_id.usage == 'customer' # goods returned from customer + if valued_type == 'out': + return self.location_dest_id and self.location_dest_id.usage == 'supplier' # goods returned to supplier diff --git a/addons/stock_account/models/stock_move_line.py b/addons/stock_account/models/stock_move_line.py new file mode 100644 index 00000000..4187f201 --- /dev/null +++ b/addons/stock_account/models/stock_move_line.py @@ -0,0 +1,62 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, models +from odoo.tools import float_is_zero + + +class StockMoveLine(models.Model): + _inherit = 'stock.move.line' + + # ------------------------------------------------------------------------- + # CRUD + # ------------------------------------------------------------------------- + @api.model_create_multi + def create(self, vals_list): + move_lines = super(StockMoveLine, self).create(vals_list) + for move_line in move_lines: + if move_line.state != 'done': + continue + move = move_line.move_id + rounding = move.product_id.uom_id.rounding + diff = move_line.qty_done + if float_is_zero(diff, precision_rounding=rounding): + continue + self._create_correction_svl(move, diff) + return move_lines + + def write(self, vals): + if 'qty_done' in vals: + for move_line in self: + if move_line.state != 'done': + continue + move = move_line.move_id + rounding = move.product_id.uom_id.rounding + diff = vals['qty_done'] - move_line.qty_done + if float_is_zero(diff, precision_rounding=rounding): + continue + self._create_correction_svl(move, diff) + return super(StockMoveLine, self).write(vals) + + # ------------------------------------------------------------------------- + # SVL creation helpers + # ------------------------------------------------------------------------- + @api.model + def _create_correction_svl(self, move, diff): + stock_valuation_layers = self.env['stock.valuation.layer'] + if move._is_in() and diff > 0 or move._is_out() and diff < 0: + move.product_price_update_before_done(forced_qty=diff) + stock_valuation_layers |= move._create_in_svl(forced_quantity=abs(diff)) + if move.product_id.cost_method in ('average', 'fifo'): + move.product_id._run_fifo_vacuum(move.company_id) + elif move._is_in() and diff < 0 or move._is_out() and diff > 0: + stock_valuation_layers |= move._create_out_svl(forced_quantity=abs(diff)) + elif move._is_dropshipped() and diff > 0 or move._is_dropshipped_returned() and diff < 0: + stock_valuation_layers |= move._create_dropshipped_svl(forced_quantity=abs(diff)) + elif move._is_dropshipped() and diff < 0 or move._is_dropshipped_returned() and diff > 0: + stock_valuation_layers |= move._create_dropshipped_returned_svl(forced_quantity=abs(diff)) + + for svl in stock_valuation_layers: + if not svl.product_id.valuation == 'real_time': + continue + svl.stock_move_id._account_entry_move(svl.quantity, svl.description, svl.id, svl.value) diff --git a/addons/stock_account/models/stock_picking.py b/addons/stock_account/models/stock_picking.py new file mode 100644 index 00000000..df5a3e07 --- /dev/null +++ b/addons/stock_account/models/stock_picking.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from ast import literal_eval + +from odoo import models + + +class StockPicking(models.Model): + _inherit = 'stock.picking' + + def action_view_stock_valuation_layers(self): + self.ensure_one() + scraps = self.env['stock.scrap'].search([('picking_id', '=', self.id)]) + domain = [('id', 'in', (self.move_lines + scraps.move_id).stock_valuation_layer_ids.ids)] + action = self.env["ir.actions.actions"]._for_xml_id("stock_account.stock_valuation_layer_action") + context = literal_eval(action['context']) + context.update(self.env.context) + context['no_at_date'] = True + return dict(action, domain=domain, context=context) + diff --git a/addons/stock_account/models/stock_quant.py b/addons/stock_account/models/stock_quant.py new file mode 100644 index 00000000..c8724bf9 --- /dev/null +++ b/addons/stock_account/models/stock_quant.py @@ -0,0 +1,57 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, fields, models +from odoo.tools.float_utils import float_is_zero + + +class StockQuant(models.Model): + _inherit = 'stock.quant' + + value = fields.Monetary('Value', compute='_compute_value', groups='stock.group_stock_manager') + currency_id = fields.Many2one('res.currency', compute='_compute_value', groups='stock.group_stock_manager') + + @api.depends('company_id', 'location_id', 'owner_id', 'product_id', 'quantity') + def _compute_value(self): + """ For standard and AVCO valuation, compute the current accounting + valuation of the quants by multiplying the quantity by + the standard price. Instead for FIFO, use the quantity times the + average cost (valuation layers are not manage by location so the + average cost is the same for all location and the valuation field is + a estimation more than a real value). + """ + for quant in self: + quant.currency_id = quant.company_id.currency_id + # If the user didn't enter a location yet while enconding a quant. + if not quant.location_id: + quant.value = 0 + return + + if not quant.location_id._should_be_valued() or\ + (quant.owner_id and quant.owner_id != quant.company_id.partner_id): + quant.value = 0 + continue + if quant.product_id.cost_method == 'fifo': + quantity = quant.product_id.quantity_svl + if float_is_zero(quantity, precision_rounding=quant.product_id.uom_id.rounding): + quant.value = 0.0 + continue + average_cost = quant.product_id.with_company(quant.company_id).value_svl / quantity + quant.value = quant.quantity * average_cost + else: + quant.value = quant.quantity * quant.product_id.with_company(quant.company_id).standard_price + + @api.model + def read_group(self, domain, fields, groupby, offset=0, limit=None, orderby=False, lazy=True): + """ This override is done in order for the grouped list view to display the total value of + the quants inside a location. This doesn't work out of the box because `value` is a computed + field. + """ + if 'value' not in fields: + return super(StockQuant, self).read_group(domain, fields, groupby, offset=offset, limit=limit, orderby=orderby, lazy=lazy) + res = super(StockQuant, self).read_group(domain, fields, groupby, offset=offset, limit=limit, orderby=orderby, lazy=lazy) + for group in res: + if group.get('__domain'): + quants = self.search(group['__domain']) + group['value'] = sum(quant.value for quant in quants) + return res diff --git a/addons/stock_account/models/stock_valuation_layer.py b/addons/stock_account/models/stock_valuation_layer.py new file mode 100644 index 00000000..ffb96e4b --- /dev/null +++ b/addons/stock_account/models/stock_valuation_layer.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models, tools + + +class StockValuationLayer(models.Model): + """Stock Valuation Layer""" + + _name = 'stock.valuation.layer' + _description = 'Stock Valuation Layer' + _order = 'create_date, id' + + _rec_name = 'product_id' + + company_id = fields.Many2one('res.company', 'Company', readonly=True, required=True) + product_id = fields.Many2one('product.product', 'Product', readonly=True, required=True, check_company=True) + categ_id = fields.Many2one('product.category', related='product_id.categ_id') + product_tmpl_id = fields.Many2one('product.template', related='product_id.product_tmpl_id') + quantity = fields.Float('Quantity', digits=0, help='Quantity', readonly=True) + uom_id = fields.Many2one(related='product_id.uom_id', readonly=True, required=True) + currency_id = fields.Many2one('res.currency', 'Currency', related='company_id.currency_id', readonly=True, required=True) + unit_cost = fields.Monetary('Unit Value', readonly=True) + value = fields.Monetary('Total Value', readonly=True) + remaining_qty = fields.Float(digits=0, readonly=True) + remaining_value = fields.Monetary('Remaining Value', readonly=True) + description = fields.Char('Description', readonly=True) + stock_valuation_layer_id = fields.Many2one('stock.valuation.layer', 'Linked To', readonly=True, check_company=True) + stock_valuation_layer_ids = fields.One2many('stock.valuation.layer', 'stock_valuation_layer_id') + stock_move_id = fields.Many2one('stock.move', 'Stock Move', readonly=True, check_company=True, index=True) + account_move_id = fields.Many2one('account.move', 'Journal Entry', readonly=True, check_company=True) + + def init(self): + tools.create_index( + self._cr, 'stock_valuation_layer_index', + self._table, ['product_id', 'remaining_qty', 'stock_move_id', 'company_id', 'create_date'] + ) + diff --git a/addons/stock_account/report/__init__.py b/addons/stock_account/report/__init__.py new file mode 100644 index 00000000..2f702c8d --- /dev/null +++ b/addons/stock_account/report/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import report_stock_forecasted diff --git a/addons/stock_account/report/report_stock_forecasted.py b/addons/stock_account/report/report_stock_forecasted.py new file mode 100644 index 00000000..79d3f4b1 --- /dev/null +++ b/addons/stock_account/report/report_stock_forecasted.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models +from odoo.tools.float_utils import float_is_zero, float_repr + + +class ReplenishmentReport(models.AbstractModel): + _inherit = 'report.stock.report_product_product_replenishment' + + def _compute_draft_quantity_count(self, product_template_ids, product_variant_ids, wh_location_ids): + """ Overrides to computes the valuations of the stock. """ + res = super()._compute_draft_quantity_count(product_template_ids, product_variant_ids, wh_location_ids) + domain = self._product_domain(product_template_ids, product_variant_ids) + company = self.env['stock.location'].browse(wh_location_ids).mapped('company_id') + svl = self.env['stock.valuation.layer'].search(domain + [('company_id', '=', company.id)]) + currency = svl.currency_id or self.env.company.currency_id + total_quantity = sum(svl.mapped('quantity')) + # Because we can have negative quantities, `total_quantity` may be equal to zero even if the warehouse's `quantity` is positive. + if svl and not float_is_zero(total_quantity, precision_rounding=svl.product_id.uom_id.rounding): + def filter_on_locations(layer): + return layer.stock_move_id.location_dest_id.id in wh_location_ids or layer.stock_move_id.location_id.id in wh_location_ids + quantity = sum(svl.filtered(filter_on_locations).mapped('quantity')) + value = sum(svl.mapped('value')) * (quantity / total_quantity) + else: + value = 0 + value = float_repr(value, precision_digits=currency.decimal_places) + if currency.position == 'after': + value = '%s %s' % (value, currency.symbol) + else: + value = '%s %s' % (currency.symbol, value) + res['value'] = value + return res diff --git a/addons/stock_account/report/report_stock_forecasted.xml b/addons/stock_account/report/report_stock_forecasted.xml new file mode 100644 index 00000000..0bfe7876 --- /dev/null +++ b/addons/stock_account/report/report_stock_forecasted.xml @@ -0,0 +1,13 @@ + + + + diff --git a/addons/stock_account/security/ir.model.access.csv b/addons/stock_account/security/ir.model.access.csv new file mode 100644 index 00000000..f1c43927 --- /dev/null +++ b/addons/stock_account/security/ir.model.access.csv @@ -0,0 +1,9 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_account_account_stock_manager,account.account stock manager,account.model_account_account,stock.group_stock_manager,1,0,0,0 +access_account_journal_stock_manager,account.journal stock manager,account.model_account_journal,stock.group_stock_manager,1,0,0,0 +access_stock_picking_invoicing_payments_readonly,stock.picking,stock.model_stock_picking,account.group_account_readonly,1,0,0,0 +access_stock_picking_invoicing_payments,stock.picking,stock.model_stock_picking,account.group_account_invoice,1,1,1,0 +access_stock_move_invoicing_payments_readonly,stock.move,model_stock_move,account.group_account_readonly,1,0,0,0 +access_stock_move_invoicing_payments,stock.move,model_stock_move,account.group_account_invoice,1,1,1,0 +access_stock_valuation_layer,access_stock_valuation_layer,model_stock_valuation_layer,stock.group_stock_manager,1,1,1,0 +access_stock_valuation_layer_revaluation,access_stock_valuation_layer_revaluation,model_stock_valuation_layer_revaluation,stock.group_stock_manager,1,1,1,0 \ No newline at end of file diff --git a/addons/stock_account/security/stock_account_security.xml b/addons/stock_account/security/stock_account_security.xml new file mode 100644 index 00000000..1e47996b --- /dev/null +++ b/addons/stock_account/security/stock_account_security.xml @@ -0,0 +1,11 @@ + + + + + Stock Valuation Layer Multicompany + + [('company_id', 'in', company_ids)] + + + + diff --git a/addons/stock_account/tests/__init__.py b/addons/stock_account/tests/__init__.py new file mode 100644 index 00000000..a396f09d --- /dev/null +++ b/addons/stock_account/tests/__init__.py @@ -0,0 +1,5 @@ +from . import test_account_move +from . import test_anglo_saxon_valuation_reconciliation_common +from . import test_stockvaluation +from . import test_stockvaluationlayer +from . import test_stock_valuation_layer_revaluation diff --git a/addons/stock_account/tests/test_account_move.py b/addons/stock_account/tests/test_account_move.py new file mode 100644 index 00000000..7b260700 --- /dev/null +++ b/addons/stock_account/tests/test_account_move.py @@ -0,0 +1,120 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.addons.account.tests.common import AccountTestInvoicingCommon +from odoo.addons.stock_account.tests.test_stockvaluation import _create_accounting_data +from odoo.tests.common import tagged, Form + + +@tagged("post_install", "-at_install") +class TestAccountMove(AccountTestInvoicingCommon): + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + + ( + cls.stock_input_account, + cls.stock_output_account, + cls.stock_valuation_account, + cls.expense_account, + cls.stock_journal, + ) = _create_accounting_data(cls.env) + + cls.product_A = cls.env["product.product"].create( + { + "name": "Product A", + "type": "product", + "default_code": "prda", + "categ_id": cls.env.ref("product.product_category_all").id, + "taxes_id": [(5, 0, 0)], + "supplier_taxes_id": [(5, 0, 0)], + "lst_price": 100.0, + "standard_price": 10.0, + "property_account_income_id": cls.company_data["default_account_revenue"].id, + "property_account_expense_id": cls.company_data["default_account_expense"].id, + } + ) + cls.product_A.categ_id.write( + { + "property_stock_account_input_categ_id": cls.stock_input_account.id, + "property_stock_account_output_categ_id": cls.stock_output_account.id, + "property_stock_valuation_account_id": cls.stock_valuation_account.id, + "property_stock_journal": cls.stock_journal.id, + "property_valuation": "real_time", + "property_cost_method": "standard", + } + ) + + def test_standard_perpetual_01_mc_01(self): + rate = self.currency_data["rates"].sorted()[0].rate + + move_form = Form(self.env["account.move"].with_context(default_move_type="out_invoice")) + move_form.partner_id = self.partner_a + move_form.currency_id = self.currency_data["currency"] + with move_form.invoice_line_ids.new() as line_form: + line_form.product_id = self.product_A + line_form.tax_ids.clear() + invoice = move_form.save() + + self.assertAlmostEqual(self.product_A.lst_price * rate, invoice.amount_total) + self.assertAlmostEqual(self.product_A.lst_price * rate, invoice.amount_residual) + self.assertEqual(len(invoice.mapped("line_ids")), 2) + self.assertEqual(len(invoice.mapped("line_ids.currency_id")), 1) + + invoice._post() + + self.assertAlmostEqual(self.product_A.lst_price * rate, invoice.amount_total) + self.assertAlmostEqual(self.product_A.lst_price * rate, invoice.amount_residual) + self.assertEqual(len(invoice.mapped("line_ids")), 4) + self.assertEqual(len(invoice.mapped("line_ids").filtered("is_anglo_saxon_line")), 2) + self.assertEqual(len(invoice.mapped("line_ids.currency_id")), 2) + + def test_fifo_perpetual_01_mc_01(self): + self.product_A.categ_id.property_cost_method = "fifo" + rate = self.currency_data["rates"].sorted()[0].rate + + move_form = Form(self.env["account.move"].with_context(default_move_type="out_invoice")) + move_form.partner_id = self.partner_a + move_form.currency_id = self.currency_data["currency"] + with move_form.invoice_line_ids.new() as line_form: + line_form.product_id = self.product_A + line_form.tax_ids.clear() + invoice = move_form.save() + + self.assertAlmostEqual(self.product_A.lst_price * rate, invoice.amount_total) + self.assertAlmostEqual(self.product_A.lst_price * rate, invoice.amount_residual) + self.assertEqual(len(invoice.mapped("line_ids")), 2) + self.assertEqual(len(invoice.mapped("line_ids.currency_id")), 1) + + invoice._post() + + self.assertAlmostEqual(self.product_A.lst_price * rate, invoice.amount_total) + self.assertAlmostEqual(self.product_A.lst_price * rate, invoice.amount_residual) + self.assertEqual(len(invoice.mapped("line_ids")), 4) + self.assertEqual(len(invoice.mapped("line_ids").filtered("is_anglo_saxon_line")), 2) + self.assertEqual(len(invoice.mapped("line_ids.currency_id")), 2) + + def test_average_perpetual_01_mc_01(self): + self.product_A.categ_id.property_cost_method = "average" + rate = self.currency_data["rates"].sorted()[0].rate + + move_form = Form(self.env["account.move"].with_context(default_move_type="out_invoice")) + move_form.partner_id = self.partner_a + move_form.currency_id = self.currency_data["currency"] + with move_form.invoice_line_ids.new() as line_form: + line_form.product_id = self.product_A + line_form.tax_ids.clear() + invoice = move_form.save() + + self.assertAlmostEqual(self.product_A.lst_price * rate, invoice.amount_total) + self.assertAlmostEqual(self.product_A.lst_price * rate, invoice.amount_residual) + self.assertEqual(len(invoice.mapped("line_ids")), 2) + self.assertEqual(len(invoice.mapped("line_ids.currency_id")), 1) + + invoice._post() + + self.assertAlmostEqual(self.product_A.lst_price * rate, invoice.amount_total) + self.assertAlmostEqual(self.product_A.lst_price * rate, invoice.amount_residual) + self.assertEqual(len(invoice.mapped("line_ids")), 4) + self.assertEqual(len(invoice.mapped("line_ids").filtered("is_anglo_saxon_line")), 2) + self.assertEqual(len(invoice.mapped("line_ids.currency_id")), 2) diff --git a/addons/stock_account/tests/test_anglo_saxon_valuation_reconciliation_common.py b/addons/stock_account/tests/test_anglo_saxon_valuation_reconciliation_common.py new file mode 100644 index 00000000..0af2a63c --- /dev/null +++ b/addons/stock_account/tests/test_anglo_saxon_valuation_reconciliation_common.py @@ -0,0 +1,119 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo.addons.account.tests.common import AccountTestInvoicingCommon +from odoo.tests import tagged +from odoo import fields + + +@tagged('-at_install', 'post_install') +class ValuationReconciliationTestCommon(AccountTestInvoicingCommon): + """ Base class for tests checking interim accounts reconciliation works + in anglosaxon accounting. It sets up everything we need in the tests, and is + extended in both sale_stock and purchase modules to run the 'true' tests. + """ + + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + + cls.stock_account_product_categ = cls.env['product.category'].create({ + 'name': 'Test category', + 'property_valuation': 'real_time', + 'property_cost_method': 'fifo', + 'property_stock_valuation_account_id': cls.company_data['default_account_stock_valuation'].id, + 'property_stock_account_input_categ_id': cls.company_data['default_account_stock_in'].id, + 'property_stock_account_output_categ_id': cls.company_data['default_account_stock_out'].id, + }) + + uom_unit = cls.env.ref('uom.product_uom_unit') + + cls.test_product_order = cls.env['product.product'].create({ + 'name': "Test product template invoiced on order", + 'standard_price': 42.0, + 'type': 'product', + 'categ_id': cls.stock_account_product_categ.id, + 'uom_id': uom_unit.id, + 'uom_po_id': uom_unit.id, + }) + cls.test_product_delivery = cls.env['product.product'].create({ + 'name': 'Test product template invoiced on delivery', + 'standard_price': 42.0, + 'type': 'product', + 'categ_id': cls.stock_account_product_categ.id, + 'uom_id': uom_unit.id, + 'uom_po_id': uom_unit.id, + }) + + @classmethod + def setup_company_data(cls, company_name, chart_template=None, **kwargs): + company_data = super().setup_company_data(company_name, chart_template=chart_template, **kwargs) + + # Create stock config. + company_data.update({ + 'default_account_stock_in': cls.env['account.account'].create({ + 'name': 'default_account_stock_in', + 'code': 'STOCKIN', + 'reconcile': True, + 'user_type_id': cls.env.ref('account.data_account_type_current_assets').id, + 'company_id': company_data['company'].id, + }), + 'default_account_stock_out': cls.env['account.account'].create({ + 'name': 'default_account_stock_out', + 'code': 'STOCKOUT', + 'reconcile': True, + 'user_type_id': cls.env.ref('account.data_account_type_current_assets').id, + 'company_id': company_data['company'].id, + }), + 'default_account_stock_valuation': cls.env['account.account'].create({ + 'name': 'default_account_stock_valuation', + 'code': 'STOCKVAL', + 'reconcile': True, + 'user_type_id': cls.env.ref('account.data_account_type_current_assets').id, + 'company_id': company_data['company'].id, + }), + 'default_warehouse': cls.env['stock.warehouse'].search( + [('company_id', '=', company_data['company'].id)], + limit=1, + ), + }) + return company_data + + def check_reconciliation(self, invoice, picking, full_reconcile=True, operation='purchase'): + interim_account_id = self.company_data['default_account_stock_in'].id if operation == 'purchase' else self.company_data['default_account_stock_out'].id + invoice_line = invoice.line_ids.filtered(lambda line: line.account_id.id == interim_account_id) + + stock_moves = picking.move_lines + + valuation_line = stock_moves.mapped('account_move_ids.line_ids').filtered(lambda x: x.account_id.id == interim_account_id) + + if invoice.is_purchase_document() and any(l.is_anglo_saxon_line for l in invoice_line): + self.assertEqual(len(invoice_line), 2, "Only two line2 should have been written by invoice in stock input account") + self.assertTrue(valuation_line.reconciled or invoice_line[0].reconciled or invoice_line[1].reconciled, "The valuation and invoice line should have been reconciled together.") + else: + self.assertEqual(len(invoice_line), 1, "Only one line should have been written by invoice in stock input account") + self.assertTrue(valuation_line.reconciled or invoice_line.reconciled, "The valuation and invoice line should have been reconciled together.") + + if invoice.move_type not in ('out_refund', 'in_refund'): + self.assertEqual(len(valuation_line), 1, "Only one line should have been written for stock valuation in stock input account") + + if full_reconcile: + self.assertTrue(valuation_line.full_reconcile_id, "The reconciliation should be total at that point.") + else: + self.assertFalse(valuation_line.full_reconcile_id, "The reconciliation should not be total at that point.") + + def _process_pickings(self, pickings, date=False, quantity=False): + if not date: + date = fields.Date.today() + pickings.action_confirm() + pickings.action_assign() + for picking in pickings: + for ml in picking.move_line_ids: + ml.qty_done = quantity or ml.product_qty + pickings._action_done() + self._change_pickings_date(pickings, date) + + def _change_pickings_date(self, pickings, date): + pickings.mapped('move_lines').write({'date': date}) + pickings.mapped('move_lines.account_move_ids').write({'name': '/', 'state': 'draft'}) + pickings.mapped('move_lines.account_move_ids').write({'date': date}) + pickings.move_lines.account_move_ids.action_post() diff --git a/addons/stock_account/tests/test_stock_valuation_layer_revaluation.py b/addons/stock_account/tests/test_stock_valuation_layer_revaluation.py new file mode 100644 index 00000000..d84f8652 --- /dev/null +++ b/addons/stock_account/tests/test_stock_valuation_layer_revaluation.py @@ -0,0 +1,173 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.exceptions import UserError +from odoo.tests import Form +from odoo.addons.stock_account.tests.test_stockvaluation import _create_accounting_data +from odoo.addons.stock_account.tests.test_stockvaluationlayer import TestStockValuationCommon + + +class TestStockValuationLayerRevaluation(TestStockValuationCommon): + @classmethod + def setUpClass(cls): + super(TestStockValuationLayerRevaluation, cls).setUpClass() + cls.stock_input_account, cls.stock_output_account, cls.stock_valuation_account, cls.expense_account, cls.stock_journal = _create_accounting_data(cls.env) + cls.product1.write({ + 'property_account_expense_id': cls.expense_account.id, + }) + cls.product1.categ_id.write({ + 'property_stock_account_input_categ_id': cls.stock_input_account.id, + 'property_stock_account_output_categ_id': cls.stock_output_account.id, + 'property_stock_valuation_account_id': cls.stock_valuation_account.id, + 'property_stock_journal': cls.stock_journal.id, + }) + + cls.product1.categ_id.property_valuation = 'real_time' + + def test_stock_valuation_layer_revaluation_avco(self): + self.product1.categ_id.property_cost_method = 'average' + context = { + 'default_product_id': self.product1.id, + 'default_company_id': self.env.company.id, + 'default_added_value': 0.0 + } + # Quantity of product1 is zero, raise + with self.assertRaises(UserError): + Form(self.env['stock.valuation.layer.revaluation'].with_context(context)).save() + + self._make_in_move(self.product1, 10, unit_cost=2) + self._make_in_move(self.product1, 10, unit_cost=4) + + self.assertEqual(self.product1.standard_price, 3) + self.assertEqual(self.product1.quantity_svl, 20) + + old_layers = self.env['stock.valuation.layer'].search([('product_id', '=', self.product1.id)], order="create_date desc, id desc") + + self.assertEqual(len(old_layers), 2) + self.assertEqual(old_layers[0].remaining_value, 40) + + revaluation_wizard = Form(self.env['stock.valuation.layer.revaluation'].with_context(context)) + revaluation_wizard.added_value = 20 + revaluation_wizard.account_id = self.stock_valuation_account + revaluation_wizard.save().action_validate_revaluation() + + # Check standard price change + self.assertEqual(self.product1.standard_price, 4) + self.assertEqual(self.product1.quantity_svl, 20) + + # Check the creation of stock.valuation.layer + new_layer = self.env['stock.valuation.layer'].search([('product_id', '=', self.product1.id)], order="create_date desc, id desc", limit=1) + self.assertEqual(new_layer.value, 20) + + # Check the remaing value of current layers + self.assertEqual(old_layers[0].remaining_value, 50) + self.assertEqual(sum(slv.remaining_value for slv in old_layers), 80) + + # Check account move + self.assertTrue(bool(new_layer.account_move_id)) + self.assertEqual(len(new_layer.account_move_id.line_ids), 2) + + self.assertEqual(sum(new_layer.account_move_id.line_ids.mapped("debit")), 20) + self.assertEqual(sum(new_layer.account_move_id.line_ids.mapped("credit")), 20) + + credit_lines = [l for l in new_layer.account_move_id.line_ids if l.credit > 0] + self.assertEqual(len(credit_lines), 1) + self.assertEqual(credit_lines[0].account_id.id, self.stock_valuation_account.id) + + def test_stock_valuation_layer_revaluation_avco_rounding(self): + self.product1.categ_id.property_cost_method = 'average' + context = { + 'default_product_id': self.product1.id, + 'default_company_id': self.env.company.id, + 'default_added_value': 0.0 + } + # Quantity of product1 is zero, raise + with self.assertRaises(UserError): + Form(self.env['stock.valuation.layer.revaluation'].with_context(context)).save() + + self._make_in_move(self.product1, 1, unit_cost=1) + self._make_in_move(self.product1, 1, unit_cost=1) + self._make_in_move(self.product1, 1, unit_cost=1) + + self.assertEqual(self.product1.standard_price, 1) + self.assertEqual(self.product1.quantity_svl, 3) + + old_layers = self.env['stock.valuation.layer'].search([('product_id', '=', self.product1.id)], order="create_date desc, id desc") + + self.assertEqual(len(old_layers), 3) + self.assertEqual(old_layers[0].remaining_value, 1) + + revaluation_wizard = Form(self.env['stock.valuation.layer.revaluation'].with_context(context)) + revaluation_wizard.added_value = 1 + revaluation_wizard.account_id = self.stock_valuation_account + revaluation_wizard.save().action_validate_revaluation() + + # Check standard price change + self.assertEqual(self.product1.standard_price, 1.33) + self.assertEqual(self.product1.quantity_svl, 3) + + # Check the creation of stock.valuation.layer + new_layer = self.env['stock.valuation.layer'].search([('product_id', '=', self.product1.id)], order="create_date desc, id desc", limit=1) + self.assertEqual(new_layer.value, 1) + + # Check the remaing value of current layers + self.assertEqual(sum(slv.remaining_value for slv in old_layers), 4) + self.assertTrue(1.34 in old_layers.mapped("remaining_value")) + + # Check account move + self.assertTrue(bool(new_layer.account_move_id)) + self.assertEqual(len(new_layer.account_move_id.line_ids), 2) + + self.assertEqual(sum(new_layer.account_move_id.line_ids.mapped("debit")), 1) + self.assertEqual(sum(new_layer.account_move_id.line_ids.mapped("credit")), 1) + + credit_lines = [l for l in new_layer.account_move_id.line_ids if l.credit > 0] + self.assertEqual(len(credit_lines), 1) + self.assertEqual(credit_lines[0].account_id.id, self.stock_valuation_account.id) + + def test_stock_valuation_layer_revaluation_fifo(self): + self.product1.categ_id.property_cost_method = 'fifo' + context = { + 'default_product_id': self.product1.id, + 'default_company_id': self.env.company.id, + 'default_added_value': 0.0 + } + # Quantity of product1 is zero, raise + with self.assertRaises(UserError): + Form(self.env['stock.valuation.layer.revaluation'].with_context(context)).save() + + self._make_in_move(self.product1, 10, unit_cost=2) + self._make_in_move(self.product1, 10, unit_cost=4) + + self.assertEqual(self.product1.standard_price, 2) + self.assertEqual(self.product1.quantity_svl, 20) + + old_layers = self.env['stock.valuation.layer'].search([('product_id', '=', self.product1.id)], order="create_date desc, id desc") + + self.assertEqual(len(old_layers), 2) + self.assertEqual(old_layers[0].remaining_value, 40) + + revaluation_wizard = Form(self.env['stock.valuation.layer.revaluation'].with_context(context)) + revaluation_wizard.added_value = 20 + revaluation_wizard.account_id = self.stock_valuation_account + revaluation_wizard.save().action_validate_revaluation() + + self.assertEqual(self.product1.standard_price, 2) + + # Check the creation of stock.valuation.layer + new_layer = self.env['stock.valuation.layer'].search([('product_id', '=', self.product1.id)], order="create_date desc, id desc", limit=1) + self.assertEqual(new_layer.value, 20) + + # Check the remaing value of current layers + self.assertEqual(old_layers[0].remaining_value, 50) + self.assertEqual(sum(slv.remaining_value for slv in old_layers), 80) + + # Check account move + self.assertTrue(bool(new_layer.account_move_id)) + self.assertTrue(len(new_layer.account_move_id.line_ids), 2) + + self.assertEqual(sum(new_layer.account_move_id.line_ids.mapped("debit")), 20) + self.assertEqual(sum(new_layer.account_move_id.line_ids.mapped("credit")), 20) + + credit_lines = [l for l in new_layer.account_move_id.line_ids if l.credit > 0] + self.assertEqual(len(credit_lines), 1) diff --git a/addons/stock_account/tests/test_stockvaluation.py b/addons/stock_account/tests/test_stockvaluation.py new file mode 100644 index 00000000..2d0d6036 --- /dev/null +++ b/addons/stock_account/tests/test_stockvaluation.py @@ -0,0 +1,3748 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from datetime import timedelta + +from odoo.exceptions import UserError +from odoo.fields import Datetime +from odoo.tests.common import Form, SavepointCase + + +def _create_accounting_data(env): + """Create the accounts and journals used in stock valuation. + + :param env: environment used to create the records + :return: an input account, an output account, a valuation account, an expense account, a stock journal + """ + stock_input_account = env['account.account'].create({ + 'name': 'Stock Input', + 'code': 'StockIn', + 'user_type_id': env.ref('account.data_account_type_current_assets').id, + 'reconcile': True, + }) + stock_output_account = env['account.account'].create({ + 'name': 'Stock Output', + 'code': 'StockOut', + 'user_type_id': env.ref('account.data_account_type_current_assets').id, + 'reconcile': True, + }) + stock_valuation_account = env['account.account'].create({ + 'name': 'Stock Valuation', + 'code': 'Stock Valuation', + 'user_type_id': env.ref('account.data_account_type_current_assets').id, + 'reconcile': True, + }) + expense_account = env['account.account'].create({ + 'name': 'Expense Account', + 'code': 'Expense Account', + 'user_type_id': env.ref('account.data_account_type_expenses').id, + 'reconcile': True, + }) + stock_journal = env['account.journal'].create({ + 'name': 'Stock Journal', + 'code': 'STJTEST', + 'type': 'general', + }) + return stock_input_account, stock_output_account, stock_valuation_account, expense_account, stock_journal + + +class TestStockValuation(SavepointCase): + @classmethod + def setUpClass(cls): + super(TestStockValuation, cls).setUpClass() + cls.stock_location = cls.env.ref('stock.stock_location_stock') + cls.customer_location = cls.env.ref('stock.stock_location_customers') + cls.supplier_location = cls.env.ref('stock.stock_location_suppliers') + cls.partner = cls.env['res.partner'].create({'name': 'xxx'}) + cls.owner1 = cls.env['res.partner'].create({'name': 'owner1'}) + cls.uom_unit = cls.env.ref('uom.product_uom_unit') + cls.product1 = cls.env['product.product'].create({ + 'name': 'Product A', + 'type': 'product', + 'default_code': 'prda', + 'categ_id': cls.env.ref('product.product_category_all').id, + }) + cls.product2 = cls.env['product.product'].create({ + 'name': 'Product B', + 'type': 'product', + 'categ_id': cls.env.ref('product.product_category_all').id, + }) + cls.inventory_user = cls.env['res.users'].create({ + 'name': 'Pauline Poivraisselle', + 'login': 'pauline', + 'email': 'p.p@example.com', + 'notification_type': 'inbox', + 'groups_id': [(6, 0, [cls.env.ref('stock.group_stock_user').id])] + }) + + cls.stock_input_account, cls.stock_output_account, cls.stock_valuation_account, cls.expense_account, cls.stock_journal = _create_accounting_data(cls.env) + cls.product1.categ_id.property_valuation = 'real_time' + cls.product2.categ_id.property_valuation = 'real_time' + cls.product1.write({ + 'property_account_expense_id': cls.expense_account.id, + }) + cls.product1.categ_id.write({ + 'property_stock_account_input_categ_id': cls.stock_input_account.id, + 'property_stock_account_output_categ_id': cls.stock_output_account.id, + 'property_stock_valuation_account_id': cls.stock_valuation_account.id, + 'property_stock_journal': cls.stock_journal.id, + }) + + def _get_stock_input_move_lines(self): + return self.env['account.move.line'].search([ + ('account_id', '=', self.stock_input_account.id), + ], order='date, id') + + def _get_stock_output_move_lines(self): + return self.env['account.move.line'].search([ + ('account_id', '=', self.stock_output_account.id), + ], order='date, id') + + def _get_stock_valuation_move_lines(self): + return self.env['account.move.line'].search([ + ('account_id', '=', self.stock_valuation_account.id), + ], order='date, id') + + + def _make_in_move(self, product, quantity, unit_cost=None): + """ Helper to create and validate a receipt move. + """ + unit_cost = unit_cost or product.standard_price + in_move = self.env['stock.move'].create({ + 'name': 'in %s units @ %s per unit' % (str(quantity), str(unit_cost)), + 'product_id': product.id, + 'location_id': self.env.ref('stock.stock_location_suppliers').id, + 'location_dest_id': self.env.ref('stock.stock_location_stock').id, + 'product_uom': self.env.ref('uom.product_uom_unit').id, + 'product_uom_qty': quantity, + 'price_unit': unit_cost, + 'picking_type_id': self.env.ref('stock.picking_type_in').id, + }) + + in_move._action_confirm() + in_move._action_assign() + in_move.move_line_ids.qty_done = quantity + in_move._action_done() + + return in_move.with_context(svl=True) + + def _make_out_move(self, product, quantity): + """ Helper to create and validate a delivery move. + """ + out_move = self.env['stock.move'].create({ + 'name': 'out %s units' % str(quantity), + 'product_id': product.id, + 'location_id': self.env.ref('stock.stock_location_stock').id, + 'location_dest_id': self.env.ref('stock.stock_location_customers').id, + 'product_uom': self.env.ref('uom.product_uom_unit').id, + 'product_uom_qty': quantity, + 'picking_type_id': self.env.ref('stock.picking_type_out').id, + }) + out_move._action_confirm() + out_move._action_assign() + out_move.move_line_ids.qty_done = quantity + out_move._action_done() + return out_move.with_context(svl=True) + + def test_realtime(self): + """ Stock moves update stock value with product x cost price, + price change updates the stock value based on current stock level. + """ + # Enter 10 products while price is 5.0 + self.product1.standard_price = 5.0 + move1 = self.env['stock.move'].create({ + 'name': 'IN 10 units @ 10.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + + # Set price to 6.0 + self.product1.standard_price = 6.0 + stock_aml, price_change_aml = self._get_stock_valuation_move_lines() + self.assertEqual(stock_aml.debit, 50) + self.assertEqual(price_change_aml.debit, 10) + self.assertEqual(price_change_aml.ref, 'prda') + self.assertEqual(price_change_aml.product_id, self.product1) + + def test_fifo_perpetual_1(self): + self.product1.categ_id.property_cost_method = 'fifo' + + # --------------------------------------------------------------------- + # receive 10 units @ 10.00 per unit + # --------------------------------------------------------------------- + move1 = self.env['stock.move'].create({ + 'name': 'IN 10 units @ 10.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10.0, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + + # stock_account values for move1 + self.assertEqual(move1.stock_valuation_layer_ids.unit_cost, 10.0) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 10.0) + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + + # account values for move1 + input_aml = self._get_stock_input_move_lines() + self.assertEqual(len(input_aml), 1) + move1_input_aml = input_aml[-1] + self.assertEqual(move1_input_aml.debit, 0) + self.assertEqual(move1_input_aml.credit, 100) + + valuation_aml = self._get_stock_valuation_move_lines() + move1_valuation_aml = valuation_aml[-1] + self.assertEqual(len(valuation_aml), 1) + self.assertEqual(move1_valuation_aml.debit, 100) + self.assertEqual(move1_valuation_aml.credit, 0) + self.assertEqual(move1_valuation_aml.product_id.id, self.product1.id) + self.assertEqual(move1_valuation_aml.quantity, 10) + self.assertEqual(move1_valuation_aml.product_uom_id.id, self.uom_unit.id) + + output_aml = self._get_stock_output_move_lines() + self.assertEqual(len(output_aml), 0) + + # --------------------------------------------------------------------- + # receive 10 units @ 8.00 per unit + # --------------------------------------------------------------------- + move2 = self.env['stock.move'].create({ + 'name': 'IN 10 units @ 8.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 8.0, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 10.0 + move2._action_done() + + # stock_account values for move2 + self.assertEqual(move2.stock_valuation_layer_ids.unit_cost, 8.0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 10.0) + self.assertEqual(move2.stock_valuation_layer_ids.value, 80.0) + + # account values for move2 + input_aml = self._get_stock_input_move_lines() + self.assertEqual(len(input_aml), 2) + move2_input_aml = input_aml[-1] + self.assertEqual(move2_input_aml.debit, 0) + self.assertEqual(move2_input_aml.credit, 80) + + valuation_aml = self._get_stock_valuation_move_lines() + move2_valuation_aml = valuation_aml[-1] + self.assertEqual(len(valuation_aml), 2) + self.assertEqual(move2_valuation_aml.debit, 80) + self.assertEqual(move2_valuation_aml.credit, 0) + self.assertEqual(move2_valuation_aml.product_id.id, self.product1.id) + self.assertEqual(move2_valuation_aml.quantity, 10) + self.assertEqual(move2_valuation_aml.product_uom_id.id, self.uom_unit.id) + + output_aml = self._get_stock_output_move_lines() + self.assertEqual(len(output_aml), 0) + + # --------------------------------------------------------------------- + # sale 3 units + # --------------------------------------------------------------------- + move3 = self.env['stock.move'].create({ + 'name': 'Sale 3 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 3.0, + }) + move3._action_confirm() + move3._action_assign() + move3.move_line_ids.qty_done = 3.0 + move3._action_done() + + # stock_account values for move3 + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out move + self.assertEqual(move3.stock_valuation_layer_ids.value, -30.0) # took 3 items from move 1 @ 10.00 per unit + + # account values for move3 + input_aml = self._get_stock_input_move_lines() + self.assertEqual(len(input_aml), 2) + + valuation_aml = self._get_stock_valuation_move_lines() + move3_valuation_aml = valuation_aml[-1] + self.assertEqual(len(valuation_aml), 3) + self.assertEqual(move3_valuation_aml.debit, 0) + self.assertEqual(move3_valuation_aml.credit, 30) + self.assertEqual(move3_valuation_aml.product_id.id, self.product1.id) + # FIXME sle + #self.assertEqual(move3_valuation_aml.quantity, -3) + self.assertEqual(move3_valuation_aml.product_uom_id.id, self.uom_unit.id) + + output_aml = self._get_stock_output_move_lines() + move3_output_aml = output_aml[-1] + self.assertEqual(len(output_aml), 1) + self.assertEqual(move3_output_aml.debit, 30) + self.assertEqual(move3_output_aml.credit, 0) + + # --------------------------------------------------------------------- + # Increase received quantity of move1 from 10 to 12, it should create + # a new stock layer at the top of the queue. + # --------------------------------------------------------------------- + move1.quantity_done = 12 + + # stock_account values for move3 + self.assertEqual(move1.stock_valuation_layer_ids.sorted()[-1].unit_cost, 10.0) + self.assertEqual(sum(move1.stock_valuation_layer_ids.mapped('remaining_qty')), 9.0) + self.assertEqual(sum(move1.stock_valuation_layer_ids.mapped('value')), 120.0) # move 1 is now 10@10 + 2@10 + + # account values for move1 + input_aml = self._get_stock_input_move_lines() + self.assertEqual(len(input_aml), 3) + move1_correction_input_aml = input_aml[-1] + self.assertEqual(move1_correction_input_aml.debit, 0) + self.assertEqual(move1_correction_input_aml.credit, 20) + + valuation_aml = self._get_stock_valuation_move_lines() + move1_correction_valuation_aml = valuation_aml[-1] + self.assertEqual(len(valuation_aml), 4) + self.assertEqual(move1_correction_valuation_aml.debit, 20) + self.assertEqual(move1_correction_valuation_aml.credit, 0) + self.assertEqual(move1_correction_valuation_aml.product_id.id, self.product1.id) + self.assertEqual(move1_correction_valuation_aml.quantity, 2) + self.assertEqual(move1_correction_valuation_aml.product_uom_id.id, self.uom_unit.id) + + output_aml = self._get_stock_output_move_lines() + self.assertEqual(len(output_aml), 1) + + # --------------------------------------------------------------------- + # Sale 9 units, the units available from the previous increase are not sent + # immediately as the new layer is at the top of the queue. + # --------------------------------------------------------------------- + move4 = self.env['stock.move'].create({ + 'name': 'Sale 9 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 9.0, + }) + move4._action_confirm() + move4._action_assign() + move4.move_line_ids.qty_done = 9.0 + move4._action_done() + + # stock_account values for move4 + self.assertEqual(move4.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out move + self.assertEqual(move4.stock_valuation_layer_ids.value, -86.0) # took 9 items from move 1 @ 10.00 per unit + + # account values for move4 + input_aml = self._get_stock_input_move_lines() + self.assertEqual(len(input_aml), 3) + + valuation_aml = self._get_stock_valuation_move_lines() + move4_valuation_aml = valuation_aml[-1] + self.assertEqual(len(valuation_aml), 5) + self.assertEqual(move4_valuation_aml.debit, 0) + self.assertEqual(move4_valuation_aml.credit, 86) + self.assertEqual(move4_valuation_aml.product_id.id, self.product1.id) + # FIXME sle + #self.assertEqual(move4_valuation_aml.quantity, -9) + self.assertEqual(move4_valuation_aml.product_uom_id.id, self.uom_unit.id) + + output_aml = self._get_stock_output_move_lines() + move4_output_aml = output_aml[-1] + self.assertEqual(len(output_aml), 2) + self.assertEqual(move4_output_aml.debit, 86) + self.assertEqual(move4_output_aml.credit, 0) + + # --------------------------------------------------------------------- + # Sale 20 units, we fall in negative stock for 10 units. Theses are + # valued at the last FIFO cost and the total is negative. + # --------------------------------------------------------------------- + move5 = self.env['stock.move'].create({ + 'name': 'Sale 20 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 20.0, + }) + move5._action_confirm() + move5._action_assign() + move5.move_line_ids.qty_done = 20.0 + move5._action_done() + + # stock_account values for move5 + # (took 8 from the second receipt and 2 from the increase of the first receipt) + self.assertEqual(move5.stock_valuation_layer_ids.remaining_qty, -10.0) + self.assertEqual(move5.stock_valuation_layer_ids.value, -184.0) + + # account values for move5 + input_aml = self._get_stock_input_move_lines() + self.assertEqual(len(input_aml), 3) + + valuation_aml = self._get_stock_valuation_move_lines() + move5_valuation_aml = valuation_aml[-1] + self.assertEqual(len(valuation_aml), 6) + self.assertEqual(move5_valuation_aml.debit, 0) + self.assertEqual(move5_valuation_aml.credit, 184) + self.assertEqual(move5_valuation_aml.product_id.id, self.product1.id) + #self.assertEqual(move5_valuation_aml.quantity, -20) + self.assertEqual(move5_valuation_aml.product_uom_id.id, self.uom_unit.id) + + output_aml = self._get_stock_output_move_lines() + move5_output_aml = output_aml[-1] + self.assertEqual(len(output_aml), 3) + self.assertEqual(move5_output_aml.debit, 184) + self.assertEqual(move5_output_aml.credit, 0) + + # --------------------------------------------------------------------- + # Receive 10 units @ 12.00 to counterbalance the negative, the vacuum + # will be called directly: 10@10 should be revalued 10@12 + # --------------------------------------------------------------------- + move6 = self.env['stock.move'].create({ + 'name': 'IN 10 units @ 12.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 12.0, + }) + move6._action_confirm() + move6._action_assign() + move6.move_line_ids.qty_done = 10.0 + move6._action_done() + + # stock_account values for move6 + self.assertEqual(move6.stock_valuation_layer_ids.unit_cost, 12.0) + self.assertEqual(move6.stock_valuation_layer_ids.remaining_qty, 0.0) # already consumed by the next vacuum + self.assertEqual(move6.stock_valuation_layer_ids.value, 120) + + # vacuum aml, 10@10 should have been 10@12, get rid of 20 + valuation_aml = self._get_stock_valuation_move_lines() + vacuum_valuation_aml = valuation_aml[-1] + self.assertEqual(len(valuation_aml), 8) + self.assertEqual(vacuum_valuation_aml.balance, -20) + self.assertEqual(vacuum_valuation_aml.product_id.id, self.product1.id) + self.assertEqual(vacuum_valuation_aml.quantity, 0) + self.assertEqual(vacuum_valuation_aml.product_uom_id.id, self.uom_unit.id) + + output_aml = self._get_stock_output_move_lines() + vacuum_output_aml = output_aml[-1] + self.assertEqual(len(output_aml), 4) + self.assertEqual(vacuum_output_aml.balance, 20) + + # --------------------------------------------------------------------- + # Edit move6, receive less: 2 in negative stock + # --------------------------------------------------------------------- + move6.quantity_done = 8 + + # stock_account values for move6 + self.assertEqual(move6.stock_valuation_layer_ids.sorted()[-1].remaining_qty, -2) + self.assertEqual(move6.stock_valuation_layer_ids.sorted()[-1].value, -20) + + # account values for move1 + input_aml = self._get_stock_input_move_lines() + move6_correction_input_aml = input_aml[-1] + self.assertEqual(move6_correction_input_aml.debit, 20) + self.assertEqual(move6_correction_input_aml.credit, 0) + + valuation_aml = self._get_stock_valuation_move_lines() + move6_correction_valuation_aml = valuation_aml[-1] + self.assertEqual(move6_correction_valuation_aml.debit, 0) + self.assertEqual(move6_correction_valuation_aml.credit, 20) + self.assertEqual(move6_correction_valuation_aml.product_id.id, self.product1.id) + # FIXME sle + #self.assertEqual(move6_correction_valuation_aml.quantity, -2) + self.assertEqual(move6_correction_valuation_aml.product_uom_id.id, self.uom_unit.id) + + # ----------------------------------------------------------- + # receive 4 to counterbalance now + # ----------------------------------------------------------- + move7 = self.env['stock.move'].create({ + 'name': 'IN 4 units @ 15.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 4.0, + 'price_unit': 15.0, + }) + move7._action_confirm() + move7._action_assign() + move7.move_line_ids.qty_done = 4.0 + move7._action_done() + + # account values after vacuum + input_aml = self._get_stock_input_move_lines() + self.assertEqual(len(input_aml), 7) + move6_correction2_input_aml = input_aml[-1] + self.assertEqual(move6_correction2_input_aml.debit, 10) + self.assertEqual(move6_correction2_input_aml.credit, 0) + + valuation_aml = self._get_stock_valuation_move_lines() + move6_correction2_valuation_aml = valuation_aml[-1] + self.assertEqual(len(valuation_aml), 11) + self.assertEqual(move6_correction2_valuation_aml.debit, 0) + self.assertEqual(move6_correction2_valuation_aml.credit, 10) + self.assertEqual(move6_correction2_valuation_aml.product_id.id, self.product1.id) + self.assertEqual(move6_correction2_valuation_aml.quantity, 0) + self.assertEqual(move6_correction_valuation_aml.product_uom_id.id, self.uom_unit.id) + + # --------------------------------------------------------------------- + # Ending + # --------------------------------------------------------------------- + self.assertEqual(self.product1.quantity_svl, 2) + self.assertEqual(self.product1.value_svl, 30) + # check on accounting entries + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('debit')), 30) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('credit')), 380) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 380) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 350) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('debit')), 320) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('credit')), 0) + + def test_fifo_perpetual_2(self): + """ Normal fifo flow (no negative handling) """ + # http://accountingexplained.com/financial/inventories/fifo-method + self.product1.categ_id.property_cost_method = 'fifo' + + # Beginning Inventory: 68 units @ 15.00 per unit + move1 = self.env['stock.move'].create({ + 'name': '68 units @ 15.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 68.0, + 'price_unit': 15, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 68.0 + move1._action_done() + + self.assertEqual(move1.stock_valuation_layer_ids.value, 1020.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 68.0) + + # Purchase 140 units @ 15.50 per unit + move2 = self.env['stock.move'].create({ + 'name': '140 units @ 15.50 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 140.0, + 'price_unit': 15.50, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 140.0 + move2._action_done() + + self.assertEqual(move2.stock_valuation_layer_ids.value, 2170.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 68.0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 140.0) + + # Sale 94 units @ 19.00 per unit + move3 = self.env['stock.move'].create({ + 'name': 'Sale 94 units @ 19.00 per unit', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 94.0, + }) + move3._action_confirm() + move3._action_assign() + move3.move_line_ids.qty_done = 94.0 + move3._action_done() + + + # note: it' ll have to get 68 units from the first batch and 26 from the second one + # so its value should be -((68*15) + (26*15.5)) = -1423 + self.assertEqual(move3.stock_valuation_layer_ids.value, -1423.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 114) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + + # Purchase 40 units @ 16.00 per unit + move4 = self.env['stock.move'].create({ + 'name': '140 units @ 15.50 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 40.0, + 'price_unit': 16, + }) + move4._action_confirm() + move4._action_assign() + move4.move_line_ids.qty_done = 40.0 + move4._action_done() + + self.assertEqual(move4.stock_valuation_layer_ids.value, 640.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 114) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move4.stock_valuation_layer_ids.remaining_qty, 40.0) + + # Purchase 78 units @ 16.50 per unit + move5 = self.env['stock.move'].create({ + 'name': 'Purchase 78 units @ 16.50 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 78.0, + 'price_unit': 16.5, + }) + move5._action_confirm() + move5._action_assign() + move5.move_line_ids.qty_done = 78.0 + move5._action_done() + + self.assertEqual(move5.stock_valuation_layer_ids.value, 1287.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 114) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move4.stock_valuation_layer_ids.remaining_qty, 40.0) + self.assertEqual(move5.stock_valuation_layer_ids.remaining_qty, 78.0) + + # Sale 116 units @ 19.50 per unit + move6 = self.env['stock.move'].create({ + 'name': 'Sale 116 units @ 19.50 per unit', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 116.0, + }) + move6._action_confirm() + move6._action_assign() + move6.move_line_ids.qty_done = 116.0 + move6._action_done() + + # note: it' ll have to get 114 units from the move2 and 2 from move4 + # so its value should be -((114*15.5) + (2*16)) = 1735 + self.assertEqual(move6.stock_valuation_layer_ids.value, -1799.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move4.stock_valuation_layer_ids.remaining_qty, 38.0) + self.assertEqual(move5.stock_valuation_layer_ids.remaining_qty, 78.0) + self.assertEqual(move6.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + + # Sale 62 units @ 21 per unit + move7 = self.env['stock.move'].create({ + 'name': 'Sale 62 units @ 21 per unit', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 62.0, + }) + move7._action_confirm() + move7._action_assign() + move7.move_line_ids.qty_done = 62.0 + move7._action_done() + + # note: it' ll have to get 38 units from the move4 and 24 from move5 + # so its value should be -((38*16) + (24*16.5)) = 608 + 396 + self.assertEqual(move7.stock_valuation_layer_ids.value, -1004.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move4.stock_valuation_layer_ids.remaining_qty, 0.0) + self.assertEqual(move5.stock_valuation_layer_ids.remaining_qty, 54.0) + self.assertEqual(move6.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move7.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + + # send 10 units in our transit location, the valorisation should not be impacted + transit_location = self.env['stock.location'].search([ + ('company_id', '=', self.env.company.id), + ('usage', '=', 'transit'), + ('active', '=', False) + ], limit=1) + transit_location.active = True + move8 = self.env['stock.move'].create({ + 'name': 'Send 10 units in transit', + 'location_id': self.stock_location.id, + 'location_dest_id': transit_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + }) + move8._action_confirm() + move8._action_assign() + move8.move_line_ids.qty_done = 10.0 + move8._action_done() + + self.assertEqual(move8.stock_valuation_layer_ids.value, 0.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move4.stock_valuation_layer_ids.remaining_qty, 0.0) + self.assertEqual(move5.stock_valuation_layer_ids.remaining_qty, 54.0) + self.assertEqual(move6.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move7.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move8.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in internal moves + + # Sale 10 units @ 16.5 per unit + move9 = self.env['stock.move'].create({ + 'name': 'Sale 10 units @ 16.5 per unit', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + }) + move9._action_confirm() + move9._action_assign() + move9.move_line_ids.qty_done = 10.0 + move9._action_done() + + # note: it' ll have to get 10 units from move5 so its value should + # be -(10*16.50) = -165 + self.assertEqual(move9.stock_valuation_layer_ids.value, -165.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move4.stock_valuation_layer_ids.remaining_qty, 0.0) + self.assertEqual(move5.stock_valuation_layer_ids.remaining_qty, 44.0) + self.assertEqual(move6.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move7.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move8.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in internal moves + self.assertEqual(move9.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + + def test_fifo_perpetual_3(self): + """ Normal fifo flow (no negative handling) """ + self.product1.categ_id.property_cost_method = 'fifo' + + # in 10 @ 100 + move1 = self.env['stock.move'].create({ + 'name': 'in 10 @ 100', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 100, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + + self.assertEqual(move1.stock_valuation_layer_ids.value, 1000.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 10.0) + + # in 10 @ 80 + move2 = self.env['stock.move'].create({ + 'name': 'in 10 @ 80', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 80, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 10.0 + move2._action_done() + + self.assertEqual(move2.stock_valuation_layer_ids.value, 800.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 10.0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 10.0) + + # out 15 + move3 = self.env['stock.move'].create({ + 'name': 'out 15', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 15.0, + }) + move3._action_confirm() + move3._action_assign() + move3.move_line_ids.qty_done = 15.0 + move3._action_done() + + + # note: it' ll have to get 10 units from move1 and 5 from move2 + # so its value should be -((10*100) + (5*80)) = -1423 + self.assertEqual(move3.stock_valuation_layer_ids.value, -1400.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 5) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + + # in 5 @ 60 + move4 = self.env['stock.move'].create({ + 'name': 'in 5 @ 60', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 5.0, + 'price_unit': 60, + }) + move4._action_confirm() + move4._action_assign() + move4.move_line_ids.qty_done = 5.0 + move4._action_done() + + self.assertEqual(move4.stock_valuation_layer_ids.value, 300.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 5) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move4.stock_valuation_layer_ids.remaining_qty, 5.0) + + # out 7 + move5 = self.env['stock.move'].create({ + 'name': 'out 7', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 7.0, + }) + move5._action_confirm() + move5._action_assign() + move5.move_line_ids.qty_done = 7.0 + move5._action_done() + + # note: it' ll have to get 5 units from the move2 and 2 from move4 + # so its value should be -((5*80) + (2*60)) = 520 + self.assertEqual(move5.stock_valuation_layer_ids.value, -520.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move4.stock_valuation_layer_ids.remaining_qty, 3.0) + self.assertEqual(move5.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + + def test_fifo_perpetual_4(self): + """ Fifo and return handling. """ + self.product1.categ_id.property_cost_method = 'fifo' + + # in 8 @ 10 + move1 = self.env['stock.move'].create({ + 'name': 'in 8 @ 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 8.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 8.0 + move1._action_done() + + self.assertEqual(move1.stock_valuation_layer_ids.value, 80.0) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 8.0) + + # in 4 @ 16 + move2 = self.env['stock.move'].create({ + 'name': 'in 4 @ 16', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 4.0, + 'price_unit': 16, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 4.0 + move2._action_done() + + + self.assertEqual(move2.stock_valuation_layer_ids.value, 64) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 4.0) + + # out 10 + out_pick = self.env['stock.picking'].create({ + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'partner_id': self.env['res.partner'].search([], limit=1).id, + 'picking_type_id': self.env.ref('stock.picking_type_out').id, + }) + move3 = self.env['stock.move'].create({ + 'name': 'out 10', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'picking_id': out_pick.id, + }) + move3._action_confirm() + move3._action_assign() + move3.move_line_ids.qty_done = 10.0 + move3._action_done() + + + # note: it' ll have to get 8 units from move1 and 2 from move2 + # so its value should be -((8*10) + (2*16)) = -116 + self.assertEqual(move3.stock_valuation_layer_ids.value, -112.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 2) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + + # in 2 @ 6 + move4 = self.env['stock.move'].create({ + 'name': 'in 2 @ 6', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 2.0, + 'price_unit': 6, + }) + move4._action_confirm() + move4._action_assign() + move4.move_line_ids.qty_done = 2.0 + move4._action_done() + + self.assertEqual(move4.stock_valuation_layer_ids.value, 12.0) + + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 2) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in out moves + self.assertEqual(move4.stock_valuation_layer_ids.remaining_qty, 2.0) + + self.assertEqual(self.product1.standard_price, 16) + + # return + stock_return_picking_form = Form(self.env['stock.return.picking'] + .with_context(active_ids=out_pick.ids, active_id=out_pick.ids[0], + active_model='stock.picking')) + stock_return_picking = stock_return_picking_form.save() + stock_return_picking.product_return_moves.quantity = 1.0 # Return only 2 + stock_return_picking_action = stock_return_picking.create_returns() + return_pick = self.env['stock.picking'].browse(stock_return_picking_action['res_id']) + return_pick.move_lines[0].move_line_ids[0].qty_done = 1.0 + return_pick.with_user(self.inventory_user)._action_done() + + self.assertEqual(self.product1.standard_price, 16) + + self.assertAlmostEqual(return_pick.move_lines.stock_valuation_layer_ids.unit_cost, 11.2) + + def test_fifo_negative_1(self): + """ Send products that you do not have. Value the first outgoing move to the standard + price, receive in multiple times the delivered quantity and run _fifo_vacuum to compensate. + """ + self.product1.categ_id.property_cost_method = 'fifo' + + # We expect the user to set manually set a standard price to its products if its first + # transfer is sending products that he doesn't have. + self.product1.product_tmpl_id.standard_price = 8.0 + + # --------------------------------------------------------------------- + # Send 50 units you don't have + # --------------------------------------------------------------------- + move1 = self.env['stock.move'].create({ + 'name': '50 out', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 50.0, + 'price_unit': 0, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 50.0, + })] + }) + move1._action_confirm() + move1._action_done() + + # stock values for move1 + self.assertEqual(move1.stock_valuation_layer_ids.value, -400.0) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, -50.0) # normally unused in out moves, but as it moved negative stock we mark it + self.assertEqual(move1.stock_valuation_layer_ids.unit_cost, 8) + + # account values for move1 + valuation_aml = self._get_stock_valuation_move_lines() + move1_valuation_aml = valuation_aml[-1] + self.assertEqual(move1_valuation_aml.debit, 0) + self.assertEqual(move1_valuation_aml.credit, 400) + output_aml = self._get_stock_output_move_lines() + move1_output_aml = output_aml[-1] + self.assertEqual(move1_output_aml.debit, 400) + self.assertEqual(move1_output_aml.credit, 0) + + # --------------------------------------------------------------------- + # Receive 40 units @ 15 + # --------------------------------------------------------------------- + move2 = self.env['stock.move'].create({ + 'name': '40 in @15', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 40.0, + 'price_unit': 15.0, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 40.0, + })] + }) + move2._action_confirm() + move2._action_done() + + # stock values for move2 + self.assertEqual(move2.stock_valuation_layer_ids.value, 600.0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 0) + self.assertEqual(move2.stock_valuation_layer_ids.unit_cost, 15.0) + + # --------------------------------------------------------------------- + # The vacuum ran + # --------------------------------------------------------------------- + # account values after vacuum + valuation_aml = self._get_stock_valuation_move_lines() + vacuum1_valuation_aml = valuation_aml[-1] + self.assertEqual(vacuum1_valuation_aml.debit, 0) + # 280 was credited more in valuation (we compensated 40 items here, so initially 40 were + # valued at 8 -> 320 in credit but now we actually sent 40@15 = 600, so the difference is + # 280 more credited) + self.assertEqual(vacuum1_valuation_aml.credit, 280) + output_aml = self._get_stock_output_move_lines() + vacuum1_output_aml = output_aml[-1] + self.assertEqual(vacuum1_output_aml.debit, 280) + self.assertEqual(vacuum1_output_aml.credit, 0) + + # --------------------------------------------------------------------- + # Receive 20 units @ 25 + # --------------------------------------------------------------------- + move3 = self.env['stock.move'].create({ + 'name': '20 in @25', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 20.0, + 'price_unit': 25.0, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 20.0 + })] + }) + move3._action_confirm() + move3._action_done() + + # --------------------------------------------------------------------- + # The vacuum ran + # --------------------------------------------------------------------- + + # stock values for move1-3 + self.assertEqual(sum(move1.stock_valuation_layer_ids.mapped('value')), -850.0) # 40@15 + 10@25 + self.assertEqual(sum(move1.stock_valuation_layer_ids.mapped('remaining_qty')), 0.0) + self.assertEqual(sum(move2.stock_valuation_layer_ids.mapped('value')), 600.0) + self.assertEqual(sum(move2.stock_valuation_layer_ids.mapped('remaining_qty')), 0.0) + self.assertEqual(sum(move3.stock_valuation_layer_ids.mapped('value')), 500.0) + self.assertEqual(sum(move3.stock_valuation_layer_ids.mapped('remaining_qty')), 10.0) + + # account values after vacuum + valuation_aml = self._get_stock_valuation_move_lines() + vacuum2_valuation_aml = valuation_aml[-1] + self.assertEqual(vacuum2_valuation_aml.debit, 0) + # there is still 10@8 to compensate with 10@25 -> 170 to credit more in the valuation account + self.assertEqual(vacuum2_valuation_aml.credit, 170) + output_aml = self._get_stock_output_move_lines() + vacuum2_output_aml = output_aml[-1] + self.assertEqual(vacuum2_output_aml.debit, 170) + self.assertEqual(vacuum2_output_aml.credit, 0) + + # --------------------------------------------------------------------- + # Ending + # --------------------------------------------------------------------- + self.assertEqual(self.product1.quantity_svl, 10) + self.assertEqual(self.product1.value_svl, 250) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('debit')), 0) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('credit')), 1100) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 1100) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 850) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('debit')), 850) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('credit')), 0) + + def test_fifo_negative_2(self): + """ Receives 10 units, send more, the extra quantity should be valued at the last fifo + price, running the vacuum should not do anything. Receive 2 units at the price the two + extra units were sent, check that no accounting entries are created. + """ + self.product1.categ_id.property_cost_method = 'fifo' + + # --------------------------------------------------------------------- + # Receive 10@10 + # --------------------------------------------------------------------- + move1 = self.env['stock.move'].create({ + 'name': '10 in', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 10.0, + })] + }) + move1._action_confirm() + move1._action_done() + + # stock values for move1 + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 10.0) + self.assertEqual(move1.stock_valuation_layer_ids.unit_cost, 10.0) + + # account values for move1 + valuation_aml = self._get_stock_valuation_move_lines() + move1_valuation_aml = valuation_aml[-1] + self.assertEqual(move1_valuation_aml.debit, 100) + self.assertEqual(move1_valuation_aml.credit, 0) + input_aml = self._get_stock_input_move_lines() + move1_input_aml = input_aml[-1] + self.assertEqual(move1_input_aml.debit, 0) + self.assertEqual(move1_input_aml.credit, 100) + + self.assertEqual(len(move1.account_move_ids), 1) + + # --------------------------------------------------------------------- + # Send 12 + # --------------------------------------------------------------------- + move2 = self.env['stock.move'].create({ + 'name': '12 out (2 negative)', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 12.0, + 'price_unit': 0, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 12.0, + })] + }) + move2._action_confirm() + move2._action_done() + + # stock values for move2 + self.assertEqual(move2.stock_valuation_layer_ids.value, -120.0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, -2.0) + + # account values for move2 + valuation_aml = self._get_stock_valuation_move_lines() + move2_valuation_aml = valuation_aml[-1] + self.assertEqual(move2_valuation_aml.debit, 0) + self.assertEqual(move2_valuation_aml.credit, 120) + output_aml = self._get_stock_output_move_lines() + move2_output_aml = output_aml[-1] + self.assertEqual(move2_output_aml.debit, 120) + self.assertEqual(move2_output_aml.credit, 0) + + self.assertEqual(len(move2.account_move_ids), 1) + + # --------------------------------------------------------------------- + # Run the vacuum + # --------------------------------------------------------------------- + self.product1._run_fifo_vacuum() + + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0.0) + self.assertEqual(move1.stock_valuation_layer_ids.unit_cost, 10.0) + self.assertEqual(move2.stock_valuation_layer_ids.value, -120.0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, -2.0) + + self.assertEqual(len(move1.account_move_ids), 1) + self.assertEqual(len(move2.account_move_ids), 1) + + self.assertEqual(self.product1.quantity_svl, -2) + self.assertEqual(self.product1.value_svl, -20) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('debit')), 0) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('credit')), 100) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 100) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 120) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('debit')), 120) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('credit')), 0) + + # Now receive exactly the extra units at exactly the price sent, no + # accounting entries should be created after the vacuum. + # --------------------------------------------------------------------- + # Receive 2@10 + # --------------------------------------------------------------------- + move3 = self.env['stock.move'].create({ + 'name': '10 in', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 2.0, + 'price_unit': 10, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 2.0, + })] + }) + move3._action_confirm() + move3._action_done() + + # --------------------------------------------------------------------- + # Ending + # --------------------------------------------------------------------- + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0.0) + self.assertEqual(move1.stock_valuation_layer_ids.unit_cost, 10.0) + self.assertEqual(sum(move2.stock_valuation_layer_ids.mapped('value')), -120.0) + self.assertEqual(sum(move2.stock_valuation_layer_ids.mapped('remaining_qty')), 0) + self.assertEqual(move3.stock_valuation_layer_ids.value, 20) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) + self.assertEqual(move3.stock_valuation_layer_ids.unit_cost, 10.0) + + self.assertEqual(len(move1.account_move_ids), 1) + self.assertEqual(len(move2.account_move_ids), 1) + self.assertEqual(len(move3.account_move_ids), 1) # the created account move is due to the receipt + + # nothing should have changed in the accounting regarding the output + self.assertEqual(self.product1.quantity_svl, 0) + self.assertEqual(self.product1.value_svl, 0) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('debit')), 0) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('credit')), 120) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 120) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 120) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('debit')), 120) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('credit')), 0) + + def test_fifo_negative_3(self): + """ Receives 10 units, send 10 units, then send more: the extra quantity should be valued + at the last fifo price, running the vacuum should not do anything. + """ + self.product1.categ_id.property_cost_method = 'fifo' + + # --------------------------------------------------------------------- + # Receive 10@10 + # --------------------------------------------------------------------- + move1 = self.env['stock.move'].create({ + 'name': '10 in', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 10.0, + })] + }) + move1._action_confirm() + move1._action_done() + + # stock values for move1 + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 10.0) + self.assertEqual(move1.stock_valuation_layer_ids.unit_cost, 10.0) + + # account values for move1 + valuation_aml = self._get_stock_valuation_move_lines() + move1_valuation_aml = valuation_aml[-1] + self.assertEqual(move1_valuation_aml.debit, 100) + self.assertEqual(move1_valuation_aml.credit, 0) + input_aml = self._get_stock_input_move_lines() + move1_input_aml = input_aml[-1] + self.assertEqual(move1_input_aml.debit, 0) + self.assertEqual(move1_input_aml.credit, 100) + + self.assertEqual(len(move1.account_move_ids), 1) + + # --------------------------------------------------------------------- + # Send 10 + # --------------------------------------------------------------------- + move2 = self.env['stock.move'].create({ + 'name': '10 out', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 10.0, + })] + }) + move2._action_confirm() + move2._action_done() + + # stock values for move2 + self.assertEqual(move2.stock_valuation_layer_ids.value, -100.0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 0.0) + + # account values for move2 + valuation_aml = self._get_stock_valuation_move_lines() + move2_valuation_aml = valuation_aml[-1] + self.assertEqual(move2_valuation_aml.debit, 0) + self.assertEqual(move2_valuation_aml.credit, 100) + output_aml = self._get_stock_output_move_lines() + move2_output_aml = output_aml[-1] + self.assertEqual(move2_output_aml.debit, 100) + self.assertEqual(move2_output_aml.credit, 0) + + self.assertEqual(len(move2.account_move_ids), 1) + + # --------------------------------------------------------------------- + # Send 21 + # --------------------------------------------------------------------- + # FIXME sle last fifo price not updated on the product? + move3 = self.env['stock.move'].create({ + 'name': '10 in', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 21.0, + 'price_unit': 0, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 21.0, + })] + }) + move3._action_confirm() + move3._action_done() + + # stock values for move3 + self.assertEqual(move3.stock_valuation_layer_ids.value, -210.0) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, -21.0) + + # account values for move3 + valuation_aml = self._get_stock_valuation_move_lines() + move3_valuation_aml = valuation_aml[-1] + self.assertEqual(move3_valuation_aml.debit, 0) + self.assertEqual(move3_valuation_aml.credit, 210) + output_aml = self._get_stock_output_move_lines() + move3_output_aml = output_aml[-1] + self.assertEqual(move3_output_aml.debit, 210) + self.assertEqual(move3_output_aml.credit, 0) + + self.assertEqual(len(move3.account_move_ids), 1) + + # --------------------------------------------------------------------- + # Run the vacuum + # --------------------------------------------------------------------- + self.product1._run_fifo_vacuum() + self.assertEqual(len(move3.account_move_ids), 1) + + # the vacuum shouldn't do anything in this case + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 0.0) + self.assertEqual(move1.stock_valuation_layer_ids.unit_cost, 10.0) + self.assertEqual(move2.stock_valuation_layer_ids.value, -100.0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 0.0) + self.assertEqual(move3.stock_valuation_layer_ids.value, -210.0) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, -21.0) + + self.assertEqual(len(move1.account_move_ids), 1) + self.assertEqual(len(move2.account_move_ids), 1) + self.assertEqual(len(move3.account_move_ids), 1) + + # --------------------------------------------------------------------- + # Ending + # --------------------------------------------------------------------- + self.assertEqual(self.product1.quantity_svl, -21) + self.assertEqual(self.product1.value_svl, -210) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('debit')), 0) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('credit')), 100) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 100) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 310) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('debit')), 310) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('credit')), 0) + + def test_fifo_add_move_in_done_picking_1(self): + """ The flow is: + + product2 std price = 20 + IN01 10@10 product1 + IN01 10@20 product2 + IN01 correction 10@20 -> 11@20 (product2) + DO01 11 product2 + DO02 1 product2 + DO02 correction 1 -> 2 (negative stock) + IN03 2@30 product2 + vacuum + """ + self.product1.categ_id.property_cost_method = 'fifo' + + # --------------------------------------------------------------------- + # Receive 10@10 + # --------------------------------------------------------------------- + receipt = self.env['stock.picking'].create({ + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'partner_id': self.partner.id, + 'picking_type_id': self.env.ref('stock.picking_type_in').id, + }) + + move1 = self.env['stock.move'].create({ + 'picking_id': receipt.id, + 'name': '10 in', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 10.0, + })] + }) + move1._action_confirm() + move1._action_done() + + # stock values for move1 + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 10.0) + self.assertEqual(move1.stock_valuation_layer_ids.unit_cost, 10.0) + + # --------------------------------------------------------------------- + # Add a stock move, receive 10@20 of another product + # --------------------------------------------------------------------- + self.product2.categ_id.property_cost_method = 'fifo' + self.product2.standard_price = 20 + move2 = self.env['stock.move'].create({ + 'picking_id': receipt.id, + 'name': '10 in', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product2.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'move_line_ids': [(0, 0, { + 'product_id': self.product2.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 10.0, + })] + }) + move2._action_done() + + self.assertEqual(move2.stock_valuation_layer_ids.value, 200.0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 10.0) + self.assertEqual(move2.stock_valuation_layer_ids.unit_cost, 20.0) + + self.assertEqual(self.product1.quantity_svl, 10) + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product2.quantity_svl, 10) + self.assertEqual(self.product2.value_svl, 200) + + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 300) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 0) + + # --------------------------------------------------------------------- + # Edit the previous stock move, receive 11 + # --------------------------------------------------------------------- + move2.quantity_done = 11 + + self.assertEqual(sum(move2.stock_valuation_layer_ids.mapped('value')), 220.0) # after correction, the move should be valued at 11@20 + self.assertEqual(sum(move2.stock_valuation_layer_ids.mapped('remaining_qty')), 11.0) + self.assertEqual(move2.stock_valuation_layer_ids.sorted()[-1].unit_cost, 20.0) + + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 320) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 0) + + # --------------------------------------------------------------------- + # Send 11 product 2 + # --------------------------------------------------------------------- + delivery = self.env['stock.picking'].create({ + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'partner_id': self.partner.id, + 'picking_type_id': self.env.ref('stock.picking_type_out').id, + }) + move3 = self.env['stock.move'].create({ + 'picking_id': delivery.id, + 'name': '11 out', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product2.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 11.0, + 'move_line_ids': [(0, 0, { + 'product_id': self.product2.id, + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 11.0, + })] + }) + + move3._action_confirm() + move3._action_done() + + self.assertEqual(move3.stock_valuation_layer_ids.value, -220.0) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) + self.assertEqual(move3.stock_valuation_layer_ids.unit_cost, 20.0) + self.assertEqual(self.product2.qty_available, 0) + self.assertEqual(self.product2.quantity_svl, 0) + + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 320) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 220) + + # --------------------------------------------------------------------- + # Add one move of product 2, this'll make some negative stock. + # --------------------------------------------------------------------- + + # FIXME: uncomment when negative stock is handled + #move4 = self.env['stock.move'].create({ + # 'picking_id': delivery.id, + # 'name': '1 out', + # 'location_id': self.stock_location.id, + # 'location_dest_id': self.customer_location.id, + # 'product_id': self.product2.id, + # 'product_uom': self.uom_unit.id, + # 'product_uom_qty': 1.0, + # 'state': 'done', # simulate default_get override + # 'move_line_ids': [(0, 0, { + # 'product_id': self.product2.id, + # 'location_id': self.stock_location.id, + # 'location_dest_id': self.customer_location.id, + # 'product_uom_id': self.uom_unit.id, + # 'qty_done': 1.0, + # })] + #}) + #self.assertEqual(move4.value, -20.0) + #self.assertEqual(move4.remaining_qty, -1.0) + #self.assertEqual(move4.price_unit, -20.0) + + #self.assertEqual(self.product2.qty_available, -1) + + #self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 320) + #self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 240) + + ## --------------------------------------------------------------------- + ## edit the created move, add 1 + ## --------------------------------------------------------------------- + #move4.quantity_done = 2 + + #self.assertEqual(self.product2.qty_available, -2) + #self.assertEqual(move4.value, -40.0) + #self.assertEqual(move4.remaining_qty, -2.0) + #self.assertEqual(move4.price_unit, -20.0) + + #self.assertEqual(sum(self._get_stock_input_move_lines().mapped('debit')), 0) + #self.assertEqual(sum(self._get_stock_input_move_lines().mapped('credit')), 320) # 10*10 + 11*20 + #self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 320) + #self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 260) + #self.assertEqual(sum(self._get_stock_output_move_lines().mapped('debit')), 260) + #self.assertEqual(sum(self._get_stock_output_move_lines().mapped('credit')), 0) + + #self.env['stock.move']._run_fifo_vacuum() + + #self.assertEqual(sum(self._get_stock_input_move_lines().mapped('debit')), 0) + #self.assertEqual(sum(self._get_stock_input_move_lines().mapped('credit')), 320) # 10*10 + 11*20 + #self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 320) + #self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 260) + #self.assertEqual(sum(self._get_stock_output_move_lines().mapped('debit')), 260) + #self.assertEqual(sum(self._get_stock_output_move_lines().mapped('credit')), 0) + + ## --------------------------------------------------------------------- + ## receive 2 products 2 @ 30 + ## --------------------------------------------------------------------- + #move5 = self.env['stock.move'].create({ + # 'picking_id': receipt.id, + # 'name': '10 in', + # 'location_id': self.supplier_location.id, + # 'location_dest_id': self.stock_location.id, + # 'product_id': self.product2.id, + # 'product_uom': self.uom_unit.id, + # 'product_uom_qty': 2.0, + # 'price_unit': 30, + # 'move_line_ids': [(0, 0, { + # 'product_id': self.product2.id, + # 'location_id': self.supplier_location.id, + # 'location_dest_id': self.stock_location.id, + # 'product_uom_id': self.uom_unit.id, + # 'qty_done': 2.0, + # })] + #}) + #move5._action_confirm() + #move5._action_done() + + #self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 380) + #self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 260) + + ## --------------------------------------------------------------------- + ## run vacuum + ## --------------------------------------------------------------------- + #self.env['stock.move']._run_fifo_vacuum() + + #self.assertEqual(sum(self._get_stock_input_move_lines().mapped('debit')), 0) + #self.assertEqual(sum(self._get_stock_input_move_lines().mapped('credit')), 380) # 10*10 + 11*20 + #self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 380) + #self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 280) # 260/ + #self.assertEqual(sum(self._get_stock_output_move_lines().mapped('debit')), 280) + #self.assertEqual(sum(self._get_stock_output_move_lines().mapped('credit')), 0) + + #self.assertEqual(self.product2.qty_available, 0) + #self.assertEqual(self.product2.stock_value, 0) + #self.assertEqual(move4.remaining_value, 0) + #self.assertEqual(move4.value, -60) # after correction, the move is valued -(2*30) + + def test_fifo_add_moveline_in_done_move_1(self): + self.product1.categ_id.property_cost_method = 'fifo' + + # --------------------------------------------------------------------- + # Receive 10@10 + # --------------------------------------------------------------------- + move1 = self.env['stock.move'].create({ + 'name': '10 in', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 10.0, + })] + }) + move1._action_confirm() + move1._action_done() + + # stock values for move1 + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 10.0) + self.assertEqual(move1.stock_valuation_layer_ids.unit_cost, 10.0) + + self.assertEqual(len(move1.account_move_ids), 1) + + # --------------------------------------------------------------------- + # Add a new move line to receive 10 more + # --------------------------------------------------------------------- + self.assertEqual(len(move1.move_line_ids), 1) + self.env['stock.move.line'].create({ + 'move_id': move1.id, + 'product_id': move1.product_id.id, + 'qty_done': 10, + 'product_uom_id': move1.product_uom.id, + 'location_id': move1.location_id.id, + 'location_dest_id': move1.location_dest_id.id, + }) + self.assertEqual(sum(move1.stock_valuation_layer_ids.mapped('value')), 200.0) + self.assertEqual(sum(move1.stock_valuation_layer_ids.mapped('remaining_qty')), 20.0) + self.assertEqual(move1.stock_valuation_layer_ids.sorted()[-1].unit_cost, 10.0) + + self.assertEqual(len(move1.account_move_ids), 2) + + self.assertEqual(self.product1.quantity_svl, 20) + self.assertEqual(self.product1.value_svl, 200) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('debit')), 0) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('credit')), 200) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 200) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 0) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('debit')), 0) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('credit')), 0) + + def test_fifo_edit_done_move1(self): + """ Increase OUT done move while quantities are available. + """ + self.product1.categ_id.property_cost_method = 'fifo' + + # --------------------------------------------------------------------- + # Receive 10@10 + # --------------------------------------------------------------------- + move1 = self.env['stock.move'].create({ + 'name': 'receive 10@10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 10.0, + })] + }) + move1._action_confirm() + move1._action_done() + + # stock values for move1 + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 10.0) + self.assertEqual(move1.stock_valuation_layer_ids.unit_cost, 10.0) + + # account values for move1 + valuation_aml = self._get_stock_valuation_move_lines() + move1_valuation_aml = valuation_aml[-1] + self.assertEqual(move1_valuation_aml.debit, 100) + self.assertEqual(move1_valuation_aml.credit, 0) + input_aml = self._get_stock_input_move_lines() + move1_input_aml = input_aml[-1] + self.assertEqual(move1_input_aml.debit, 0) + self.assertEqual(move1_input_aml.credit, 100) + + self.assertEqual(len(move1.account_move_ids), 1) + + self.assertAlmostEqual(self.product1.quantity_svl, 10.0) + self.assertEqual(self.product1.value_svl, 100) + + # --------------------------------------------------------------------- + # Receive 10@12 + # --------------------------------------------------------------------- + move2 = self.env['stock.move'].create({ + 'name': 'receive 10@12', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 12, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 10.0, + })] + }) + move2._action_confirm() + move2._action_done() + + # stock values for move2 + self.assertEqual(move2.stock_valuation_layer_ids.value, 120.0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 10.0) + self.assertEqual(move2.stock_valuation_layer_ids.unit_cost, 12.0) + + # account values for move2 + valuation_aml = self._get_stock_valuation_move_lines() + move2_valuation_aml = valuation_aml[-1] + self.assertEqual(move2_valuation_aml.debit, 120) + self.assertEqual(move2_valuation_aml.credit, 0) + input_aml = self._get_stock_input_move_lines() + move2_input_aml = input_aml[-1] + self.assertEqual(move2_input_aml.debit, 0) + self.assertEqual(move2_input_aml.credit, 120) + + self.assertEqual(len(move2.account_move_ids), 1) + + self.assertAlmostEqual(self.product1.qty_available, 20.0) + self.assertAlmostEqual(self.product1.quantity_svl, 20.0) + self.assertEqual(self.product1.value_svl, 220) + + # --------------------------------------------------------------------- + # Send 8 + # --------------------------------------------------------------------- + move3 = self.env['stock.move'].create({ + 'name': '12 out (2 negative)', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 8.0, + 'price_unit': 0, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 8.0, + })] + }) + move3._action_confirm() + move3._action_done() + + # stock values for move3 + self.assertEqual(move3.stock_valuation_layer_ids.value, -80.0) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, 0.0) + + # account values for move3 + valuation_aml = self._get_stock_valuation_move_lines() + move3_valuation_aml = valuation_aml[-1] + self.assertEqual(move3_valuation_aml.debit, 0) # FIXME sle shiiiiiiieeeeet with_context out move doesn't work? + output_aml = self._get_stock_output_move_lines() + move3_output_aml = output_aml[-1] + self.assertEqual(move3_output_aml.debit, 80) + self.assertEqual(move3_output_aml.credit, 0) + + self.assertEqual(len(move3.account_move_ids), 1) + + self.assertAlmostEqual(self.product1.qty_available, 12.0) + self.assertAlmostEqual(self.product1.quantity_svl, 12.0) + self.assertEqual(self.product1.value_svl, 140) + + # --------------------------------------------------------------------- + # Edit last move, send 14 instead + # it should send 2@10 and 4@12 + # --------------------------------------------------------------------- + move3.quantity_done = 14 + self.assertEqual(move3.product_qty, 14) + # old value: -80 -(8@10) + # new value: -148 => -(10@10 + 4@12) + self.assertEqual(sum(move3.stock_valuation_layer_ids.mapped('value')), -148) + + # account values for move3 + valuation_aml = self._get_stock_valuation_move_lines() + move3_valuation_aml = valuation_aml[-1] + self.assertEqual(move3_valuation_aml.debit, 0) + output_aml = self._get_stock_output_move_lines() + move3_output_aml = output_aml[-1] + self.assertEqual(move3_output_aml.debit, 68) + self.assertEqual(move3_output_aml.credit, 0) + + self.assertEqual(len(move3.account_move_ids), 2) + + self.assertEqual(self.product1.value_svl, 72) + + # --------------------------------------------------------------------- + # Ending + # --------------------------------------------------------------------- + self.assertEqual(self.product1.qty_available, 6) + self.assertAlmostEqual(self.product1.quantity_svl, 6.0) + self.assertEqual(self.product1.value_svl, 72) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('debit')), 0) + self.assertEqual(sum(self._get_stock_input_move_lines().mapped('credit')), 220) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('debit')), 220) + self.assertEqual(sum(self._get_stock_valuation_move_lines().mapped('credit')), 148) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('debit')), 148) + self.assertEqual(sum(self._get_stock_output_move_lines().mapped('credit')), 0) + + def test_fifo_edit_done_move2(self): + """ Decrease, then increase OUT done move while quantities are available. + """ + self.product1.categ_id.property_cost_method = 'fifo' + + # --------------------------------------------------------------------- + # Receive 10@10 + # --------------------------------------------------------------------- + move1 = self.env['stock.move'].create({ + 'name': 'receive 10@10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 10.0, + })] + }) + move1._action_confirm() + move1._action_done() + + # stock values for move1 + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 10.0) + self.assertEqual(move1.stock_valuation_layer_ids.unit_cost, 10.0) + + # --------------------------------------------------------------------- + # Send 10 + # --------------------------------------------------------------------- + move2 = self.env['stock.move'].create({ + 'name': '12 out (2 negative)', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 0, + 'move_line_ids': [(0, 0, { + 'product_id': self.product1.id, + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_uom_id': self.uom_unit.id, + 'qty_done': 10.0, + })] + }) + move2._action_confirm() + move2._action_done() + + # stock values for move2 + self.assertEqual(move2.stock_valuation_layer_ids.value, -100.0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 0.0) + + # --------------------------------------------------------------------- + # Actually, send 8 in the last move + # --------------------------------------------------------------------- + move2.quantity_done = 8 + + self.assertEqual(sum(move2.stock_valuation_layer_ids.mapped('value')), -80.0) # the move actually sent 8@10 + + self.assertEqual(sum(self.product1.stock_valuation_layer_ids.mapped('remaining_qty')), 2) + + self.product1.qty_available = 2 + self.product1.value_svl = 20 + self.product1.quantity_svl = 2 + + # --------------------------------------------------------------------- + # Actually, send 10 in the last move + # --------------------------------------------------------------------- + move2.quantity_done = 10 + + self.assertEqual(sum(move2.stock_valuation_layer_ids.mapped('value')), -100.0) # the move actually sent 10@10 + self.assertEqual(sum(self.product1.stock_valuation_layer_ids.mapped('remaining_qty')), 0) + + self.assertEqual(self.product1.quantity_svl, 0) + self.assertEqual(self.product1.value_svl, 0) + + def test_fifo_standard_price_upate_1(self): + product = self.env['product.product'].create({ + 'name': 'product1', + 'type': 'product', + 'categ_id': self.env.ref('product.product_category_all').id, + }) + product.product_tmpl_id.categ_id.property_cost_method = 'fifo' + self._make_in_move(product, 3, unit_cost=17) + self._make_in_move(product, 1, unit_cost=23) + self._make_out_move(product, 3) + self.assertEqual(product.standard_price, 23) + + def test_fifo_standard_price_upate_2(self): + product = self.env['product.product'].create({ + 'name': 'product1', + 'type': 'product', + 'categ_id': self.env.ref('product.product_category_all').id, + }) + product.product_tmpl_id.categ_id.property_cost_method = 'fifo' + self._make_in_move(product, 5, unit_cost=17) + self._make_in_move(product, 1, unit_cost=23) + self._make_out_move(product, 4) + self.assertEqual(product.standard_price, 17) + + def test_fifo_standard_price_upate_3(self): + """Standard price must be set on move in if no product and if first move.""" + product = self.env['product.product'].create({ + 'name': 'product1', + 'type': 'product', + 'categ_id': self.env.ref('product.product_category_all').id, + }) + product.product_tmpl_id.categ_id.property_cost_method = 'fifo' + self._make_in_move(product, 5, unit_cost=17) + self._make_in_move(product, 1, unit_cost=23) + self.assertEqual(product.standard_price, 17) + self._make_out_move(product, 4) + self.assertEqual(product.standard_price, 17) + self._make_out_move(product, 1) + self.assertEqual(product.standard_price, 23) + self._make_out_move(product, 1) + self.assertEqual(product.standard_price, 23) + self._make_in_move(product, 1, unit_cost=77) + self.assertEqual(product.standard_price, 77) + + def test_average_perpetual_1(self): + # http://accountingexplained.com/financial/inventories/avco-method + self.product1.categ_id.property_cost_method = 'average' + + # Beginning Inventory: 60 units @ 15.00 per unit + move1 = self.env['stock.move'].create({ + 'name': '60 units @ 15.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 60.0, + 'price_unit': 15, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 60.0 + move1._action_done() + + self.assertEqual(move1.stock_valuation_layer_ids.value, 900.0) + + # Purchase 140 units @ 15.50 per unit + move2 = self.env['stock.move'].create({ + 'name': '140 units @ 15.50 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 140.0, + 'price_unit': 15.50, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 140.0 + move2._action_done() + + self.assertEqual(move2.stock_valuation_layer_ids.value, 2170.0) + + # Sale 190 units @ 15.35 per unit + move3 = self.env['stock.move'].create({ + 'name': 'Sale 190 units @ 19.00 per unit', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 190.0, + }) + move3._action_confirm() + move3._action_assign() + move3.move_line_ids.qty_done = 190.0 + move3._action_done() + + self.assertEqual(move3.stock_valuation_layer_ids.value, -2916.5) + + # Purchase 70 units @ $16.00 per unit + move4 = self.env['stock.move'].create({ + 'name': '70 units @ $16.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 70.0, + 'price_unit': 16.00, + }) + move4._action_confirm() + move4._action_assign() + move4.move_line_ids.qty_done = 70.0 + move4._action_done() + + self.assertEqual(move4.stock_valuation_layer_ids.value, 1120.0) + + # Sale 30 units @ $19.50 per unit + move5 = self.env['stock.move'].create({ + 'name': '30 units @ $19.50 per unit', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 30.0, + }) + move5._action_confirm() + move5._action_assign() + move5.move_line_ids.qty_done = 30.0 + move5._action_done() + + self.assertEqual(move5.stock_valuation_layer_ids.value, -477.5) + + # Receives 10 units but assign them to an owner, the valuation should not be impacted. + move6 = self.env['stock.move'].create({ + 'name': '10 units to an owner', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 99, + }) + move6._action_confirm() + move6._action_assign() + move6.move_line_ids.owner_id = self.owner1.id + move6.move_line_ids.qty_done = 10.0 + move6._action_done() + + self.assertEqual(move6.stock_valuation_layer_ids.value, 0) + + # Sale 50 units @ $19.50 per unit (no stock anymore) + move7 = self.env['stock.move'].create({ + 'name': '50 units @ $19.50 per unit', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 50.0, + }) + move7._action_confirm() + move7._action_assign() + move7.move_line_ids.qty_done = 50.0 + move7._action_done() + + self.assertEqual(move7.stock_valuation_layer_ids.value, -796.0) + self.assertAlmostEqual(self.product1.quantity_svl, 0.0) + self.assertAlmostEqual(self.product1.value_svl, 0.0) + + def test_average_perpetual_2(self): + self.product1.categ_id.property_cost_method = 'average' + + move1 = self.env['stock.move'].create({ + 'name': 'Receive 10 units at 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + self.assertEqual(self.product1.standard_price, 10) + + move2 = self.env['stock.move'].create({ + 'name': 'Receive 10 units at 15', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 15, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 10.0 + move2._action_done() + self.assertEqual(self.product1.standard_price, 12.5) + + move3 = self.env['stock.move'].create({ + 'name': 'Deliver 15 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 15.0, + }) + move3._action_confirm() + move3._action_assign() + move3.move_line_ids.qty_done = 15.0 + move3._action_done() + self.assertEqual(self.product1.standard_price, 12.5) + + move4 = self.env['stock.move'].create({ + 'name': 'Deliver 10 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + }) + move4._action_confirm() + move4._action_assign() + move4.move_line_ids.qty_done = 10.0 + move4._action_done() + # note: 5 units were sent estimated at 12.5 (negative stock) + self.assertEqual(self.product1.standard_price, 12.5) + self.assertEqual(self.product1.quantity_svl, -5) + self.assertEqual(self.product1.value_svl, -62.5) + + move2.move_line_ids.qty_done = 20 + # incrementing the receipt triggered the vacuum, the negative stock is corrected + self.assertEqual(self.product1.stock_valuation_layer_ids[-1].value, -12.5) + + self.assertEqual(self.product1.quantity_svl, 5) + self.assertEqual(self.product1.value_svl, 75) + self.assertEqual(self.product1.standard_price, 15) + + def test_average_perpetual_3(self): + self.product1.categ_id.property_cost_method = 'average' + + move1 = self.env['stock.move'].create({ + 'name': 'Receive 10 units at 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + + move2 = self.env['stock.move'].create({ + 'name': 'Receive 10 units at 15', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 15, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 10.0 + move2._action_done() + + move3 = self.env['stock.move'].create({ + 'name': 'Deliver 15 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 15.0, + }) + move3._action_confirm() + move3._action_assign() + move3.move_line_ids.qty_done = 15.0 + move3._action_done() + + move4 = self.env['stock.move'].create({ + 'name': 'Deliver 10 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + }) + move4._action_confirm() + move4._action_assign() + move4.move_line_ids.qty_done = 10.0 + move4._action_done() + move2.move_line_ids.qty_done = 0 + self.assertEqual(self.product1.value_svl, -187.5) + + def test_average_perpetual_4(self): + """receive 1@10, receive 1@5 insteadof 3@5""" + self.product1.categ_id.property_cost_method = 'average' + + move1 = self.env['stock.move'].create({ + 'name': 'Receive 1 unit at 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 1.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 1.0 + move1._action_done() + + move2 = self.env['stock.move'].create({ + 'name': 'Receive 3 units at 5', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 3.0, + 'price_unit': 5, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 1.0 + move2._action_done() + + self.assertAlmostEqual(self.product1.quantity_svl, 2.0) + self.assertAlmostEqual(self.product1.standard_price, 7.5) + + def test_average_perpetual_5(self): + ''' Set owner on incoming move => no valuation ''' + self.product1.categ_id.property_cost_method = 'average' + + move1 = self.env['stock.move'].create({ + 'name': 'Receive 1 unit at 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 1.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 1.0 + move1.move_line_ids.owner_id = self.owner1.id + move1._action_done() + + self.assertAlmostEqual(self.product1.quantity_svl, 0.0) + self.assertAlmostEqual(self.product1.value_svl, 0.0) + + def test_average_perpetual_6(self): + """ Batch validation of moves """ + self.product1.product_tmpl_id.categ_id.property_cost_method = 'average' + + move1 = self.env['stock.move'].create({ + 'name': 'Receive 1 unit at 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 1.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 1.0 + + move2 = self.env['stock.move'].create({ + 'name': 'Receive 1 units at 5', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 1.0, + 'price_unit': 5, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 1.0 + + # Receive both at the same time + (move1 | move2)._action_done() + + self.assertAlmostEqual(self.product1.standard_price, 7.5) + self.assertEqual(self.product1.quantity_svl, 2) + self.assertEqual(self.product1.value_svl, 15) + + def test_average_perpetual_7(self): + """ Test edit in the past. Receive 5@10, receive 10@20, edit the first move to receive + 15 instead. + """ + self.product1.categ_id.property_cost_method = 'average' + + move1 = self.env['stock.move'].create({ + 'name': 'IN 5@10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 5, + 'price_unit': 10, + }) + move1._action_confirm() + move1.quantity_done = 5 + move1._action_done() + + self.assertAlmostEqual(self.product1.standard_price, 10) + self.assertAlmostEqual(move1.stock_valuation_layer_ids.value, 50) + self.assertAlmostEqual(self.product1.quantity_svl, 5) + self.assertAlmostEqual(self.product1.value_svl, 50) + + move2 = self.env['stock.move'].create({ + 'name': 'IN 10@20', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10, + 'price_unit': 20, + }) + move2._action_confirm() + move2.quantity_done = 10 + move2._action_done() + + self.assertAlmostEqual(self.product1.standard_price, 16.67) + self.assertAlmostEqual(move2.stock_valuation_layer_ids.value, 200) + self.assertAlmostEqual(self.product1.quantity_svl, 15) + self.assertAlmostEqual(self.product1.value_svl, 250) + + move1.move_line_ids.qty_done = 15 + + self.assertAlmostEqual(self.product1.standard_price, 14.0) + self.assertAlmostEqual(len(move1.stock_valuation_layer_ids), 2) + self.assertAlmostEqual(move1.stock_valuation_layer_ids.sorted()[-1].value, 100) + self.assertAlmostEqual(self.product1.quantity_svl, 25) + self.assertAlmostEqual(self.product1.value_svl, 350) + + def test_average_perpetual_8(self): + """ Receive 1@10, then dropship 1@20, finally return the dropship. Dropship should not + impact the price. + """ + self.product1.categ_id.property_cost_method = 'average' + + move1 = self.env['stock.move'].create({ + 'name': 'IN 1@10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 1, + 'price_unit': 10, + }) + move1._action_confirm() + move1.quantity_done = 1 + move1._action_done() + + self.assertAlmostEqual(self.product1.standard_price, 10) + + move2 = self.env['stock.move'].create({ + 'name': 'IN 1@20', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 1, + 'price_unit': 20, + }) + move2._action_confirm() + move2.quantity_done = 1 + move2._action_done() + + self.assertAlmostEqual(self.product1.standard_price, 10.0) + + move3 = self.env['stock.move'].create({ + 'name': 'IN 1@20', + 'location_id': self.customer_location.id, + 'location_dest_id': self.supplier_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 1, + 'price_unit': 20, + }) + move3._action_confirm() + move3.quantity_done = 1 + move3._action_done() + + self.assertAlmostEqual(self.product1.standard_price, 10.0) + + def test_average_perpetual_9(self): + """ When a product has an available quantity of -5, edit an incoming shipment and increase + the received quantity by 5 units. + """ + self.product1.categ_id.property_cost_method = 'average' + # receive 10 + move1 = self.env['stock.move'].create({ + 'name': 'IN 5@10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10, + 'price_unit': 10, + }) + move1._action_confirm() + move1.quantity_done = 10 + move1._action_done() + + # deliver 15 + move2 = self.env['stock.move'].create({ + 'name': 'Deliver 10 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 15.0, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 15.0 + move2._action_done() + + # increase the receipt to 15 + move1.move_line_ids.qty_done = 15 + + def test_average_stock_user(self): + """ deliver an average product as a stock user. """ + self.product1.categ_id.property_cost_method = 'average' + # receive 10 + move1 = self.env['stock.move'].create({ + 'name': 'IN 5@10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10, + 'price_unit': 10, + }) + move1._action_confirm() + move1.quantity_done = 10 + move1._action_done() + + # sell 15 + move2 = self.env['stock.move'].create({ + 'name': 'Deliver 10 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 15.0, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 15.0 + move2.with_user(self.inventory_user)._action_done() + + def test_average_negative_1(self): + """ Test edit in the past. Receive 10, send 20, edit the second move to only send 10. + """ + self.product1.categ_id.property_cost_method = 'average' + + move1 = self.env['stock.move'].create({ + 'name': 'Receive 10 units at 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + + move2 = self.env['stock.move'].create({ + 'name': 'send 20 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 20.0, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 20.0 + move2._action_done() + + valuation_aml = self._get_stock_valuation_move_lines() + move2_valuation_aml = valuation_aml[-1] + self.assertEqual(len(valuation_aml), 2) + self.assertEqual(move2_valuation_aml.debit, 0) + self.assertEqual(move2_valuation_aml.credit, 200) + + move2.quantity_done = 10.0 + + valuation_aml = self._get_stock_valuation_move_lines() + move2_valuation_aml = valuation_aml[-1] + self.assertEqual(len(valuation_aml), 3) + self.assertEqual(move2_valuation_aml.debit, 100) + self.assertEqual(move2_valuation_aml.credit, 0) + + move2.quantity_done = 11.0 + + valuation_aml = self._get_stock_valuation_move_lines() + move2_valuation_aml = valuation_aml[-1] + self.assertEqual(len(valuation_aml), 4) + self.assertEqual(move2_valuation_aml.debit, 0) + self.assertEqual(move2_valuation_aml.credit, 10) + + def test_average_negative_2(self): + """ Send goods that you don't have in stock and never received any unit. + """ + self.product1.categ_id.property_cost_method = 'average' + + # set a standard price + self.product1.standard_price = 99 + + # send 10 units that we do not have + self.assertEqual(self.env['stock.quant']._get_available_quantity(self.product1, self.stock_location), 0) + move1 = self.env['stock.move'].create({ + 'name': 'test_average_negative_1', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + }) + move1._action_confirm() + move1.quantity_done = 10.0 + move1._action_done() + self.assertEqual(move1.stock_valuation_layer_ids.value, -990.0) # as no move out were done for this product, fallback on the standard price + + def test_average_negative_3(self): + """ Send goods that you don't have in stock but received and send some units before. + """ + self.product1.categ_id.property_cost_method= 'average' + + # set a standard price + self.product1.standard_price = 99 + + # Receives 10 produts at 10 + move1 = self.env['stock.move'].create({ + 'name': '68 units @ 15.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + + # send 10 products + move2 = self.env['stock.move'].create({ + 'name': 'Sale 94 units @ 19.00 per unit', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 10.0 + move2._action_done() + + self.assertEqual(move2.stock_valuation_layer_ids.value, -100.0) + self.assertEqual(move2.stock_valuation_layer_ids.remaining_qty, 0.0) # unused in average move + + # send 10 products again + move3 = self.env['stock.move'].create({ + 'name': 'Sale 94 units @ 19.00 per unit', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + }) + move3._action_confirm() + move3.quantity_done = 10.0 + move3._action_done() + + self.assertEqual(move3.stock_valuation_layer_ids.value, -100.0) # as no move out were done for this product, fallback on latest cost + + def test_average_negative_4(self): + self.product1.categ_id.property_cost_method = 'average' + + # set a standard price + self.product1.standard_price = 99 + + # Receives 10 produts at 10 + move1 = self.env['stock.move'].create({ + 'name': '68 units @ 15.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + + def test_average_negative_5(self): + self.product1.categ_id.property_cost_method = 'average' + + # in 10 @ 10 + move1 = self.env['stock.move'].create({ + 'name': '10 units @ 10.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + + self.assertEqual(move1.stock_valuation_layer_ids.value, 100.0) + self.assertEqual(self.product1.standard_price, 10) + + # in 10 @ 20 + move2 = self.env['stock.move'].create({ + 'name': '10 units @ 20.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 20, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 10.0 + move2._action_done() + + self.assertEqual(move2.stock_valuation_layer_ids.value, 200.0) + self.assertEqual(self.product1.standard_price, 15) + + # send 5 + move3 = self.env['stock.move'].create({ + 'name': 'Sale 5 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 5.0, + }) + move3._action_confirm() + move3.quantity_done = 5.0 + move3._action_done() + + self.assertEqual(move3.stock_valuation_layer_ids.value, -75.0) + self.assertEqual(self.product1.standard_price, 15) + + # send 30 + move4 = self.env['stock.move'].create({ + 'name': 'Sale 5 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 30.0, + }) + move4._action_confirm() + move4.quantity_done = 30.0 + move4._action_done() + + self.assertEqual(move4.stock_valuation_layer_ids.value, -450.0) + self.assertEqual(self.product1.standard_price, 15) + + # in 20 @ 20 + move5 = self.env['stock.move'].create({ + 'name': '20 units @ 20.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 20.0, + 'price_unit': 20, + }) + move5._action_confirm() + move5._action_assign() + move5.move_line_ids.qty_done = 20.0 + move5._action_done() + self.assertEqual(move5.stock_valuation_layer_ids.value, 400.0) + + # Move 4 is now fixed, it initially sent 30@15 but the 5 last units were negative and estimated + # at 15 (1125). The new receipt made these 5 units sent at 20 (1500), so a 450 value is added + # to move4. + self.assertEqual(move4.stock_valuation_layer_ids[0].value, -450) + + # So we have 5@20 in stock. + self.assertEqual(self.product1.quantity_svl, 5) + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.standard_price, 20) + + # send 5 products to empty the inventory, the average price should not go to 0 + move6 = self.env['stock.move'].create({ + 'name': 'Sale 5 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 5.0, + }) + move6._action_confirm() + move6.quantity_done = 5.0 + move6._action_done() + + self.assertEqual(move6.stock_valuation_layer_ids.value, -100.0) + self.assertEqual(self.product1.standard_price, 20) + + # in 10 @ 10, the new average price should be 10 + move7 = self.env['stock.move'].create({ + 'name': '10 units @ 10.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + }) + move7._action_confirm() + move7._action_assign() + move7.move_line_ids.qty_done = 10.0 + move7._action_done() + + self.assertEqual(move7.stock_valuation_layer_ids.value, 100.0) + self.assertEqual(self.product1.standard_price, 10) + + def test_average_manual_1(self): + ''' Set owner on incoming move => no valuation ''' + self.product1.categ_id.property_cost_method = 'average' + self.product1.categ_id.property_valuation = 'manual_periodic' + + move1 = self.env['stock.move'].create({ + 'name': 'Receive 1 unit at 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 1.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 1.0 + move1.move_line_ids.owner_id = self.owner1.id + move1._action_done() + + self.assertAlmostEqual(self.product1.quantity_svl, 0.0) + self.assertAlmostEqual(self.product1.value_svl, 0.0) + + def test_standard_perpetual_1(self): + ''' Set owner on incoming move => no valuation ''' + self.product1.categ_id.property_cost_method = 'standard' + + move1 = self.env['stock.move'].create({ + 'name': 'Receive 1 unit at 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 1.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 1.0 + move1.move_line_ids.owner_id = self.owner1.id + move1._action_done() + + self.assertAlmostEqual(self.product1.qty_available, 1.0) + self.assertAlmostEqual(self.product1.quantity_svl, 0.0) + self.assertAlmostEqual(self.product1.value_svl, 0.0) + + def test_standard_manual_1(self): + ''' Set owner on incoming move => no valuation ''' + self.product1.categ_id.property_cost_method = 'standard' + self.product1.categ_id.property_valuation = 'manual_periodic' + + move1 = self.env['stock.move'].create({ + 'name': 'Receive 1 unit at 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 1.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 1.0 + move1.move_line_ids.owner_id = self.owner1.id + move1._action_done() + + self.assertAlmostEqual(self.product1.qty_available, 1.0) + self.assertAlmostEqual(self.product1.quantity_svl, 0.0) + self.assertAlmostEqual(self.product1.value_svl, 0.0) + + def test_standard_manual_2(self): + """Validate a receipt as a regular stock user.""" + self.product1.categ_id.property_cost_method = 'standard' + self.product1.categ_id.property_valuation = 'manual_periodic' + + self.product1.standard_price = 10.0 + + move1 = self.env['stock.move'].with_user(self.inventory_user).create({ + 'name': 'IN 10 units', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + + def test_standard_perpetual_2(self): + """Validate a receipt as a regular stock user.""" + self.product1.categ_id.property_cost_method = 'standard' + self.product1.categ_id.property_valuation = 'real_time' + + self.product1.standard_price = 10.0 + + move1 = self.env['stock.move'].with_user(self.inventory_user).create({ + 'name': 'IN 10 units', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + + def test_change_cost_method_1(self): + """ Change the cost method from FIFO to AVCO. + """ + # --------------------------------------------------------------------- + # Use FIFO, make some operations + # --------------------------------------------------------------------- + self.product1.categ_id.property_cost_method = 'fifo' + + # receive 10@10 + move1 = self.env['stock.move'].create({ + 'name': '10 units @ 10.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + + # receive 10@15 + move2 = self.env['stock.move'].create({ + 'name': '10 units @ 10.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 15, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 10.0 + move2._action_done() + + # sell 1 + move3 = self.env['stock.move'].create({ + 'name': 'Sale 5 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 1.0, + }) + move3._action_confirm() + move3._action_assign() + move3.move_line_ids.qty_done = 1.0 + move3._action_done() + + self.assertAlmostEqual(self.product1.quantity_svl, 19) + self.assertEqual(self.product1.value_svl, 240) + + # --------------------------------------------------------------------- + # Change the production valuation to AVCO + # --------------------------------------------------------------------- + self.product1.categ_id.property_cost_method = 'average' + + # valuation should stay to ~240 + self.assertAlmostEqual(self.product1.quantity_svl, 19) + self.assertAlmostEqual(self.product1.value_svl, 285, delta=0.03) + + # an accounting entry should be created + # FIXME sle check it + + self.assertEqual(self.product1.standard_price, 15) + + def test_change_cost_method_2(self): + """ Change the cost method from FIFO to standard. + """ + # --------------------------------------------------------------------- + # Use FIFO, make some operations + # --------------------------------------------------------------------- + self.product1.categ_id.property_cost_method = 'fifo' + + # receive 10@10 + move1 = self.env['stock.move'].create({ + 'name': '10 units @ 10.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + + # receive 10@15 + move2 = self.env['stock.move'].create({ + 'name': '10 units @ 10.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + 'price_unit': 15, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 10.0 + move2._action_done() + + # sell 1 + move3 = self.env['stock.move'].create({ + 'name': 'Sale 5 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 1.0, + }) + move3._action_confirm() + move3._action_assign() + move3.move_line_ids.qty_done = 1.0 + move3._action_done() + + self.assertAlmostEqual(self.product1.quantity_svl, 19) + self.assertEqual(self.product1.value_svl, 240) + + # --------------------------------------------------------------------- + # Change the production valuation to AVCO + # --------------------------------------------------------------------- + self.product1.categ_id.property_cost_method = 'standard' + + # valuation should stay to ~240 + self.assertAlmostEqual(self.product1.value_svl, 285, delta=0.03) + self.assertAlmostEqual(self.product1.quantity_svl, 19) + + # no accounting entry should be created + # FIXME sle check it + + self.assertEqual(self.product1.standard_price, 15) + + def test_fifo_sublocation_valuation_1(self): + """ Set the main stock as a view location. Receive 2 units of a + product, put 1 unit in an internal sublocation and the second + one in a scrap sublocation. Only a single unit, the one in the + internal sublocation, should be valued. Then, send these two + quants to a customer, only the one in the internal location + should be valued. + """ + self.product1.categ_id.property_cost_method = 'fifo' + + view_location = self.env['stock.location'].create({'name': 'view', 'usage': 'view'}) + subloc1 = self.env['stock.location'].create({ + 'name': 'internal', + 'usage': 'internal', + 'location_id': view_location.id, + }) + # sane settings for a scrap location, company_id doesn't matter + subloc2 = self.env['stock.location'].create({ + 'name': 'scrap', + 'usage': 'inventory', + 'location_id': view_location.id, + 'scrap_location': True, + }) + + move1 = self.env['stock.move'].create({ + 'name': '2 units @ 10.00 per unit', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 2.0, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + + move1.write({'move_line_ids': [ + (0, None, { + 'product_id': self.product1.id, + 'qty_done': 1, + 'location_id': self.supplier_location.id, + 'location_dest_id': subloc1.id, + 'product_uom_id': self.uom_unit.id + }), + (0, None, { + 'product_id': self.product1.id, + 'qty_done': 1, + 'location_id': self.supplier_location.id, + 'location_dest_id': subloc2.id, + 'product_uom_id': self.uom_unit.id + }), + ]}) + + move1._action_done() + self.assertEqual(move1.stock_valuation_layer_ids.value, 10) + self.assertEqual(move1.stock_valuation_layer_ids.remaining_qty, 1) + self.assertAlmostEqual(self.product1.qty_available, 0.0) + self.assertAlmostEqual(self.product1.quantity_svl, 1.0) + self.assertEqual(self.product1.value_svl, 10) + self.assertTrue(len(move1.account_move_ids), 1) + + move2 = self.env['stock.move'].create({ + 'name': '2 units out', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 2.0, + }) + move2._action_confirm() + move2._action_assign() + + move2.write({'move_line_ids': [ + (0, None, { + 'product_id': self.product1.id, + 'qty_done': 1, + 'location_id': subloc1.id, + 'location_dest_id': self.supplier_location.id, + 'product_uom_id': self.uom_unit.id + }), + (0, None, { + 'product_id': self.product1.id, + 'qty_done': 1, + 'location_id': subloc2.id, + 'location_dest_id': self.supplier_location.id, + 'product_uom_id': self.uom_unit.id + }), + ]}) + move2._action_done() + self.assertEqual(move2.stock_valuation_layer_ids.value, -10) + + def test_move_in_or_out(self): + """ Test a few combination of move and their move lines and + check their valuation. A valued move should be IN or OUT. + Creating a move that is IN and OUT should be forbidden. + """ + # an internal move should be considered as OUT if any of its move line + # is moved in a scrap location + scrap = self.env['stock.location'].create({ + 'name': 'scrap', + 'usage': 'inventory', + 'location_id': self.stock_location.id, + 'scrap_location': True, + }) + + move1 = self.env['stock.move'].create({ + 'name': 'internal but out move', + 'location_id': self.stock_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 2.0, + }) + move1._action_confirm() + move1._action_assign() + move1.write({'move_line_ids': [ + (0, None, { + 'product_id': self.product1.id, + 'qty_done': 1, + 'location_id': self.stock_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id + }), + (0, None, { + 'product_id': self.product1.id, + 'qty_done': 1, + 'location_id': self.stock_location.id, + 'location_dest_id': scrap.id, + 'product_uom_id': self.uom_unit.id + }), + ]}) + self.assertEqual(move1._is_out(), True) + + # a move should be considered as invalid if some of its move lines are + # entering the company and some are leaving + customer1 = self.env['stock.location'].create({ + 'name': 'customer', + 'usage': 'customer', + 'location_id': self.stock_location.id, + }) + supplier1 = self.env['stock.location'].create({ + 'name': 'supplier', + 'usage': 'supplier', + 'location_id': self.stock_location.id, + }) + move2 = self.env['stock.move'].create({ + 'name': 'internal but in and out move', + 'location_id': self.stock_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 2.0, + }) + move2._action_confirm() + move2._action_assign() + move2.write({'move_line_ids': [ + (0, None, { + 'product_id': self.product1.id, + 'qty_done': 1, + 'location_id': customer1.id, + 'location_dest_id': self.stock_location.id, + 'product_uom_id': self.uom_unit.id + }), + (0, None, { + 'product_id': self.product1.id, + 'qty_done': 1, + 'location_id': self.stock_location.id, + 'location_dest_id': customer1.id, + 'product_uom_id': self.uom_unit.id + }), + ]}) + self.assertEqual(move2._is_in(), True) + self.assertEqual(move2._is_out(), True) + with self.assertRaises(UserError): + move2._action_done() + + def test_at_date_standard_1(self): + self.product1.categ_id.property_cost_method = 'standard' + + now = Datetime.now() + date1 = now - timedelta(days=8) + date2 = now - timedelta(days=7) + date3 = now - timedelta(days=6) + date4 = now - timedelta(days=5) + date5 = now - timedelta(days=4) + date6 = now - timedelta(days=3) + date7 = now - timedelta(days=2) + date8 = now - timedelta(days=1) + + # set the standard price to 10 + self.product1.standard_price = 10.0 + + # receive 10 + move1 = self.env['stock.move'].create({ + 'name': 'in 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10 + move1._action_done() + move1.date = date2 + move1.stock_valuation_layer_ids._write({'create_date': date2}) + + self.assertEqual(self.product1.quantity_svl, 10) + self.assertEqual(self.product1.value_svl, 100) + + # receive 20 + move2 = self.env['stock.move'].create({ + 'name': 'in 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 20, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 20 + move2._action_done() + move2.date = date3 + move2.stock_valuation_layer_ids._write({'create_date': date3}) + + self.assertEqual(self.product1.quantity_svl, 30) + self.assertEqual(self.product1.value_svl, 300) + + # send 15 + move3 = self.env['stock.move'].create({ + 'name': 'out 10', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 15, + }) + move3._action_confirm() + move3._action_assign() + move3.move_line_ids.qty_done = 15 + move3._action_done() + move3.date = date4 + move3.stock_valuation_layer_ids._write({'create_date': date4}) + + self.assertEqual(self.product1.quantity_svl, 15) + self.assertEqual(self.product1.value_svl, 150) + + # set the standard price to 5 + self.product1.standard_price = 5 + self.product1.stock_valuation_layer_ids.sorted()[-1]._write({'create_date': date5}) + + self.assertEqual(self.product1.quantity_svl, 15) + self.assertEqual(self.product1.value_svl, 75) + + # send 20 + move4 = self.env['stock.move'].create({ + 'name': 'out 10', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 20, + }) + move4._action_confirm() + move4._action_assign() + move4.move_line_ids.qty_done = 20 + move4._action_done() + move4.date = date6 + move4.stock_valuation_layer_ids._write({'create_date': date6}) + + self.assertEqual(self.product1.quantity_svl, -5) + self.assertEqual(self.product1.value_svl, -25) + + # set the standard price to 7.5 + self.product1.standard_price = 7.5 + self.product1.stock_valuation_layer_ids.sorted()[-1]._write({'create_date': date7}) + + # receive 100 + move5 = self.env['stock.move'].create({ + 'name': 'in 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 100, + }) + move5._action_confirm() + move5._action_assign() + move5.move_line_ids.qty_done = 100 + move5._action_done() + move5.date = date8 + move5.stock_valuation_layer_ids._write({'create_date': date8}) + + self.assertEqual(self.product1.quantity_svl, 95) + self.assertEqual(self.product1.value_svl, 712.5) + + # Quantity available at date + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date1)).quantity_svl, 0) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date2)).quantity_svl, 10) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date3)).quantity_svl, 30) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date4)).quantity_svl, 15) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date5)).quantity_svl, 15) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date6)).quantity_svl, -5) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date7)).quantity_svl, -5) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date8)).quantity_svl, 95) + + # Valuation at date + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date1)).value_svl, 0) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date2)).value_svl, 100) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date3)).value_svl, 300) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date4)).value_svl, 150) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date5)).value_svl, 75) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date6)).value_svl, -25) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date8)).value_svl, 712.5) + + # edit the done quantity of move1, decrease it + move1.quantity_done = 5 + + # the change is only visible right now + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date2)).quantity_svl, 10) + self.assertEqual(self.product1.quantity_svl, 90) + # as when we decrease a quantity on a recreipt, we consider it as a out move with the price + # of today, the value will be decrease of 100 - (5*7.5) + self.assertEqual(sum(move1.stock_valuation_layer_ids.mapped('value')), 62.5) + # but the change is still only visible right now + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date2)).value_svl, 100) + + # edit move 4, send 15 instead of 20 + move4.quantity_done = 15 + # -(20*5) + (5*7.5) + self.assertEqual(sum(move4.stock_valuation_layer_ids.mapped('value')), -62.5) + + # the change is only visible right now + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date6)).value_svl, -25) + + self.assertEqual(self.product1.quantity_svl, 95) + self.assertEqual(self.product1.value_svl, 712.5) + + def test_at_date_fifo_1(self): + """ Make some operations at different dates, check that the results of the valuation at + date wizard are consistent. Afterwards, edit the done quantity of some operations. The + valuation at date results should take these changes into account. + """ + self.product1.categ_id.property_cost_method = 'fifo' + + now = Datetime.now() + date1 = now - timedelta(days=8) + date2 = now - timedelta(days=7) + date3 = now - timedelta(days=6) + date4 = now - timedelta(days=5) + date5 = now - timedelta(days=4) + date6 = now - timedelta(days=3) + + # receive 10@10 + move1 = self.env['stock.move'].create({ + 'name': 'in 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10 + move1._action_done() + move1.date = date1 + move1.stock_valuation_layer_ids._write({'create_date': date1}) + + self.assertEqual(self.product1.quantity_svl, 10) + self.assertEqual(self.product1.value_svl, 100) + + # receive 10@12 + move2 = self.env['stock.move'].create({ + 'name': 'in 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10, + 'price_unit': 12, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 10 + move2._action_done() + move2.date = date2 + move2.stock_valuation_layer_ids._write({'create_date': date2}) + + self.assertAlmostEqual(self.product1.quantity_svl, 20) + self.assertEqual(self.product1.value_svl, 220) + + # send 15 + move3 = self.env['stock.move'].create({ + 'name': 'out 10', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 15, + }) + move3._action_confirm() + move3._action_assign() + move3.move_line_ids.qty_done = 15 + move3._action_done() + move3.date = date3 + move3.stock_valuation_layer_ids._write({'create_date': date3}) + + self.assertAlmostEqual(self.product1.quantity_svl, 5.0) + self.assertEqual(self.product1.value_svl, 60) + + # send 20 + move4 = self.env['stock.move'].create({ + 'name': 'out 10', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 20, + }) + move4._action_confirm() + move4._action_assign() + move4.move_line_ids.qty_done = 20 + move4._action_done() + move4.date = date4 + move4.stock_valuation_layer_ids._write({'create_date': date4}) + + self.assertAlmostEqual(self.product1.quantity_svl, -15.0) + self.assertEqual(self.product1.value_svl, -180) + + # receive 100@15 + move5 = self.env['stock.move'].create({ + 'name': 'in 10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 100, + 'price_unit': 15, + }) + move5._action_confirm() + move5._action_assign() + move5.move_line_ids.qty_done = 100 + move5._action_done() + move5.date = date5 + move5.stock_valuation_layer_ids._write({'create_date': date5}) + + # the vacuum ran + move4.stock_valuation_layer_ids.sorted()[-1]._write({'create_date': date6}) + + self.assertEqual(self.product1.quantity_svl, 85) + self.assertEqual(self.product1.value_svl, 1275) + + # Edit the quantity done of move1, increase it. + move1.quantity_done = 20 + + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date1)).quantity_svl, 10) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date1)).value_svl, 100) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date2)).quantity_svl, 20) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date2)).value_svl, 220) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date3)).quantity_svl, 5) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date3)).value_svl, 60) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date4)).quantity_svl, -15) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date4)).value_svl, -180) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date5)).quantity_svl, 85) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date5)).value_svl, 1320) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date6)).quantity_svl, 85) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date6)).value_svl, 1275) + self.assertEqual(self.product1.quantity_svl, 95) + self.assertEqual(self.product1.value_svl, 1375) + + def test_at_date_fifo_2(self): + self.product1.categ_id.property_cost_method = 'fifo' + + now = Datetime.now() + date1 = now - timedelta(days=8) + date2 = now - timedelta(days=7) + date3 = now - timedelta(days=6) + date4 = now - timedelta(days=5) + date5 = now - timedelta(days=4) + + # receive 10@10 + move1 = self.env['stock.move'].create({ + 'name': 'in 10@10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10, + 'price_unit': 10, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10 + move1._action_done() + move1.date = date1 + move1.stock_valuation_layer_ids._write({'create_date': date1}) + + self.assertAlmostEqual(self.product1.quantity_svl, 10.0) + self.assertEqual(self.product1.value_svl, 100) + + # receive 10@15 + move2 = self.env['stock.move'].create({ + 'name': 'in 10@15', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10, + 'price_unit': 15, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 10 + move2._action_done() + move2.date = date2 + move2.stock_valuation_layer_ids._write({'create_date': date2}) + + self.assertAlmostEqual(self.product1.quantity_svl, 20.0) + self.assertEqual(self.product1.value_svl, 250) + + # send 30 + move3 = self.env['stock.move'].create({ + 'name': 'out 30', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 30, + }) + move3._action_confirm() + move3._action_assign() + move3.move_line_ids.qty_done = 30 + move3._action_done() + move3.date = date3 + move3.stock_valuation_layer_ids._write({'create_date': date3}) + + self.assertAlmostEqual(self.product1.quantity_svl, -10.0) + self.assertEqual(self.product1.value_svl, -150) + + # receive 10@20 + move4 = self.env['stock.move'].create({ + 'name': 'in 10@20', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10, + 'price_unit': 20, + }) + move4._action_confirm() + move4._action_assign() + move4.move_line_ids.qty_done = 10 + move4._action_done() + move4.date = date4 + move3.stock_valuation_layer_ids.sorted()[-1]._write({'create_date': date4}) + move4.stock_valuation_layer_ids._write({'create_date': date4}) + + self.assertAlmostEqual(self.product1.quantity_svl, 0.0) + self.assertEqual(self.product1.value_svl, 0) + + # receive 10@10 + move5 = self.env['stock.move'].create({ + 'name': 'in 10@10', + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10, + 'price_unit': 10, + }) + move5._action_confirm() + move5._action_assign() + move5.move_line_ids.qty_done = 10 + move5._action_done() + move5.date = date5 + move5.stock_valuation_layer_ids._write({'create_date': date5}) + + self.assertAlmostEqual(self.product1.quantity_svl, 10.0) + self.assertEqual(self.product1.value_svl, 100) + + # --------------------------------------------------------------------- + # ending: perpetual valuation + # --------------------------------------------------------------------- + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date1)).quantity_svl, 10) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date1)).value_svl, 100) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date2)).quantity_svl, 20) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date2)).value_svl, 250) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date3)).quantity_svl, -10) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date3)).value_svl, -150) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date4)).quantity_svl, 0) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date4)).value_svl, 0) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date5)).quantity_svl, 10) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date5)).value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 10) + self.assertEqual(self.product1.value_svl, 100) + + def test_inventory_fifo_1(self): + """ Make an inventory from a location with a company set, and ensure the product has a stock + value. When the product is sold, ensure there is no remaining quantity on the original move + and no stock value. + """ + self.product1.standard_price = 15 + self.product1.categ_id.property_cost_method = 'fifo' + inventory_location = self.product1.property_stock_inventory + inventory_location.company_id = self.env.company.id + + # Start Inventory: 12 units + move1 = self.env['stock.move'].create({ + 'name': 'Adjustment of 12 units', + 'location_id': inventory_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 12.0, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 12.0 + move1._action_done() + + self.assertAlmostEqual(move1.stock_valuation_layer_ids.value, 180.0) + self.assertAlmostEqual(move1.stock_valuation_layer_ids.remaining_qty, 12.0) + self.assertAlmostEqual(self.product1.value_svl, 180.0) + + # Sell the 12 units + move2 = self.env['stock.move'].create({ + 'name': 'Sell 12 units', + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 12.0, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 12.0 + move2._action_done() + + self.assertAlmostEqual(move1.stock_valuation_layer_ids.remaining_qty, 0.0) + self.assertAlmostEqual(self.product1.value_svl, 0.0) + + def test_at_date_average_1(self): + """ Set a company on the inventory loss, take items from there then put items there, check + the values and quantities at date. + """ + now = Datetime.now() + date1 = now - timedelta(days=8) + date2 = now - timedelta(days=7) + + self.product1.standard_price = 10 + self.product1.product_tmpl_id.cost_method = 'average' + inventory_location = self.product1.property_stock_inventory + inventory_location.company_id = self.env.company.id + + move1 = self.env['stock.move'].create({ + 'name': 'Adjustment of 10 units', + 'location_id': inventory_location.id, + 'location_dest_id': self.stock_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 10.0, + }) + move1._action_confirm() + move1._action_assign() + move1.move_line_ids.qty_done = 10.0 + move1._action_done() + move1.date = date1 + move1.stock_valuation_layer_ids._write({'create_date': date1}) + + move2 = self.env['stock.move'].create({ + 'name': 'Sell 5 units', + 'location_id': self.stock_location.id, + 'location_dest_id': inventory_location.id, + 'product_id': self.product1.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 5.0, + }) + move2._action_confirm() + move2._action_assign() + move2.move_line_ids.qty_done = 5.0 + move2._action_done() + move2.date = date2 + move2.stock_valuation_layer_ids._write({'create_date': date2}) + + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date1)).quantity_svl, 10) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date1)).value_svl, 100) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date2)).quantity_svl, 5) + self.assertEqual(self.product1.with_context(to_date=Datetime.to_string(date2)).value_svl, 50) diff --git a/addons/stock_account/tests/test_stockvaluationlayer.py b/addons/stock_account/tests/test_stockvaluationlayer.py new file mode 100644 index 00000000..136bc967 --- /dev/null +++ b/addons/stock_account/tests/test_stockvaluationlayer.py @@ -0,0 +1,900 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +""" Implementation of "INVENTORY VALUATION TESTS (With valuation layers)" spreadsheet. """ + +from odoo.addons.stock_account.tests.test_stockvaluation import _create_accounting_data +from odoo.tests import Form, tagged +from odoo.tests.common import SavepointCase, TransactionCase + + +class TestStockValuationCommon(SavepointCase): + @classmethod + def setUpClass(cls): + super(TestStockValuationCommon, cls).setUpClass() + cls.stock_location = cls.env.ref('stock.stock_location_stock') + cls.customer_location = cls.env.ref('stock.stock_location_customers') + cls.supplier_location = cls.env.ref('stock.stock_location_suppliers') + cls.uom_unit = cls.env.ref('uom.product_uom_unit') + cls.product1 = cls.env['product.product'].create({ + 'name': 'product1', + 'type': 'product', + 'categ_id': cls.env.ref('product.product_category_all').id, + }) + cls.picking_type_in = cls.env.ref('stock.picking_type_in') + cls.picking_type_out = cls.env.ref('stock.picking_type_out') + + def setUp(self): + super(TestStockValuationCommon, self).setUp() + # Counter automatically incremented by `_make_in_move` and `_make_out_move`. + self.days = 0 + + def _make_in_move(self, product, quantity, unit_cost=None, create_picking=False): + """ Helper to create and validate a receipt move. + """ + unit_cost = unit_cost or product.standard_price + in_move = self.env['stock.move'].create({ + 'name': 'in %s units @ %s per unit' % (str(quantity), str(unit_cost)), + 'product_id': product.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': quantity, + 'price_unit': unit_cost, + 'picking_type_id': self.picking_type_in.id, + }) + + if create_picking: + picking = self.env['stock.picking'].create({ + 'picking_type_id': in_move.picking_type_id.id, + 'location_id': in_move.location_id.id, + 'location_dest_id': in_move.location_dest_id.id, + }) + in_move.write({'picking_id': picking.id}) + + in_move._action_confirm() + in_move._action_assign() + in_move.move_line_ids.qty_done = quantity + in_move._action_done() + + self.days += 1 + return in_move.with_context(svl=True) + + def _make_out_move(self, product, quantity, force_assign=None, create_picking=False): + """ Helper to create and validate a delivery move. + """ + out_move = self.env['stock.move'].create({ + 'name': 'out %s units' % str(quantity), + 'product_id': product.id, + 'location_id': self.stock_location.id, + 'location_dest_id': self.customer_location.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': quantity, + 'picking_type_id': self.picking_type_out.id, + }) + + if create_picking: + picking = self.env['stock.picking'].create({ + 'picking_type_id': out_move.picking_type_id.id, + 'location_id': out_move.location_id.id, + 'location_dest_id': out_move.location_dest_id.id, + }) + out_move.write({'picking_id': picking.id}) + + out_move._action_confirm() + out_move._action_assign() + if force_assign: + self.env['stock.move.line'].create({ + 'move_id': out_move.id, + 'product_id': out_move.product_id.id, + 'product_uom_id': out_move.product_uom.id, + 'location_id': out_move.location_id.id, + 'location_dest_id': out_move.location_dest_id.id, + }) + out_move.move_line_ids.qty_done = quantity + out_move._action_done() + + self.days += 1 + return out_move.with_context(svl=True) + + def _make_dropship_move(self, product, quantity, unit_cost=None): + dropshipped = self.env['stock.move'].create({ + 'name': 'dropship %s units' % str(quantity), + 'product_id': product.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.customer_location.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': quantity, + 'picking_type_id': self.picking_type_out.id, + }) + if unit_cost: + dropshipped.price_unit = unit_cost + dropshipped._action_confirm() + dropshipped._action_assign() + dropshipped.move_line_ids.qty_done = quantity + dropshipped._action_done() + return dropshipped + + def _make_return(self, move, quantity_to_return): + stock_return_picking = Form(self.env['stock.return.picking']\ + .with_context(active_ids=[move.picking_id.id], active_id=move.picking_id.id, active_model='stock.picking')) + stock_return_picking = stock_return_picking.save() + stock_return_picking.product_return_moves.quantity = quantity_to_return + stock_return_picking_action = stock_return_picking.create_returns() + return_pick = self.env['stock.picking'].browse(stock_return_picking_action['res_id']) + return_pick.move_lines[0].move_line_ids[0].qty_done = quantity_to_return + return_pick._action_done() + return return_pick.move_lines + + +class TestStockValuationStandard(TestStockValuationCommon): + def setUp(self): + super(TestStockValuationStandard, self).setUp() + self.product1.product_tmpl_id.categ_id.property_cost_method = 'standard' + self.product1.product_tmpl_id.standard_price = 10 + + def test_normal_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10) + move2 = self._make_in_move(self.product1, 10) + move3 = self._make_out_move(self.product1, 15) + + self.assertEqual(self.product1.value_svl, 50) + self.assertEqual(self.product1.quantity_svl, 5) + + def test_change_in_past_increase_in_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10) + move2 = self._make_in_move(self.product1, 10) + move3 = self._make_out_move(self.product1, 15) + move1.move_line_ids.qty_done = 15 + + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 10) + + def test_change_in_past_decrease_in_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10) + move2 = self._make_in_move(self.product1, 10) + move3 = self._make_out_move(self.product1, 15) + move1.move_line_ids.qty_done = 5 + + self.assertEqual(self.product1.value_svl, 0) + self.assertEqual(self.product1.quantity_svl, 0) + + def test_change_in_past_add_ml_in_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10) + move2 = self._make_in_move(self.product1, 10) + move3 = self._make_out_move(self.product1, 15) + self.env['stock.move.line'].create({ + 'move_id': move1.id, + 'product_id': move1.product_id.id, + 'qty_done': 5, + 'product_uom_id': move1.product_uom.id, + 'location_id': move1.location_id.id, + 'location_dest_id': move1.location_dest_id.id, + }) + + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 10) + + def test_change_in_past_increase_out_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10) + move2 = self._make_out_move(self.product1, 1) + move2.move_line_ids.qty_done = 5 + + self.assertEqual(self.product1.value_svl, 50) + self.assertEqual(self.product1.quantity_svl, 5) + + def test_change_in_past_decrease_out_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10) + move2 = self._make_out_move(self.product1, 5) + move2.move_line_ids.qty_done = 1 + + self.assertEqual(self.product1.value_svl, 90) + self.assertEqual(self.product1.quantity_svl, 9) + + def test_change_standard_price_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10) + move2 = self._make_in_move(self.product1, 10) + move3 = self._make_out_move(self.product1, 15) + + # change cost from 10 to 15 + self.product1.standard_price = 15.0 + + self.assertEqual(self.product1.value_svl, 75) + self.assertEqual(self.product1.quantity_svl, 5) + self.assertEqual(self.product1.stock_valuation_layer_ids.sorted()[-1].description, 'Product value manually modified (from 10.0 to 15.0)') + + def test_negative_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10) + move2 = self._make_out_move(self.product1, 15) + self.env['stock.move.line'].create({ + 'move_id': move1.id, + 'product_id': move1.product_id.id, + 'qty_done': 10, + 'product_uom_id': move1.product_uom.id, + 'location_id': move1.location_id.id, + 'location_dest_id': move1.location_dest_id.id, + }) + + self.assertEqual(self.product1.value_svl, 50) + self.assertEqual(self.product1.quantity_svl, 5) + + def test_dropship_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_dropship_move(self.product1, 10) + + valuation_layers = self.product1.stock_valuation_layer_ids + self.assertEqual(len(valuation_layers), 2) + self.assertEqual(valuation_layers[0].value, 100) + self.assertEqual(valuation_layers[1].value, -100) + self.assertEqual(self.product1.value_svl, 0) + self.assertEqual(self.product1.quantity_svl, 0) + + def test_change_in_past_increase_dropship_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_dropship_move(self.product1, 10) + move1.move_line_ids.qty_done = 15 + + valuation_layers = self.product1.stock_valuation_layer_ids + self.assertEqual(len(valuation_layers), 4) + self.assertEqual(valuation_layers[0].value, 100) + self.assertEqual(valuation_layers[1].value, -100) + self.assertEqual(valuation_layers[2].value, 50) + self.assertEqual(valuation_layers[3].value, -50) + self.assertEqual(self.product1.value_svl, 0) + self.assertEqual(self.product1.quantity_svl, 0) + + def test_empty_stock_move_valorisation(self): + product1 = self.env['product.product'].create({ + 'name': 'p1', + 'type': 'product', + }) + product2 = self.env['product.product'].create({ + 'name': 'p2', + 'type': 'product', + }) + picking = self.env['stock.picking'].create({ + 'picking_type_id': self.picking_type_in.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + }) + for product in (product1, product2): + product.standard_price = 10 + in_move = self.env['stock.move'].create({ + 'name': 'in %s units @ %s per unit' % (2, str(10)), + 'product_id': product.id, + 'location_id': self.supplier_location.id, + 'location_dest_id': self.stock_location.id, + 'product_uom': self.uom_unit.id, + 'product_uom_qty': 2, + 'price_unit': 10, + 'picking_type_id': self.picking_type_in.id, + 'picking_id': picking.id + }) + + picking.action_confirm() + # set quantity done only on one move + in_move.move_line_ids.qty_done = 2 + res_dict = picking.button_validate() + wizard = self.env[(res_dict.get('res_model'))].with_context(res_dict.get('context')).browse(res_dict.get('res_id')) + res_dict_for_back_order = wizard.process() + + self.assertTrue(product2.stock_valuation_layer_ids) + self.assertFalse(product1.stock_valuation_layer_ids) + + +class TestStockValuationAVCO(TestStockValuationCommon): + def setUp(self): + super(TestStockValuationAVCO, self).setUp() + self.product1.product_tmpl_id.categ_id.property_cost_method = 'average' + + def test_normal_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + self.assertEqual(self.product1.standard_price, 10) + self.assertEqual(move1.stock_valuation_layer_ids.value, 100) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + self.assertEqual(self.product1.standard_price, 15) + self.assertEqual(move2.stock_valuation_layer_ids.value, 200) + move3 = self._make_out_move(self.product1, 15) + self.assertEqual(self.product1.standard_price, 15) + self.assertEqual(move3.stock_valuation_layer_ids.value, -225) + + self.assertEqual(self.product1.value_svl, 75) + self.assertEqual(self.product1.quantity_svl, 5) + + def test_change_in_past_increase_in_1(self): + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 15) + move1.move_line_ids.qty_done = 15 + + self.assertEqual(self.product1.value_svl, 125) + self.assertEqual(self.product1.quantity_svl, 10) + + def test_change_in_past_decrease_in_1(self): + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 15) + move1.move_line_ids.qty_done = 5 + + self.assertEqual(self.product1.value_svl, 0) + self.assertEqual(self.product1.quantity_svl, 0) + + def test_change_in_past_add_ml_in_1(self): + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 15) + self.env['stock.move.line'].create({ + 'move_id': move1.id, + 'product_id': move1.product_id.id, + 'qty_done': 5, + 'product_uom_id': move1.product_uom.id, + 'location_id': move1.location_id.id, + 'location_dest_id': move1.location_dest_id.id, + }) + + self.assertEqual(self.product1.value_svl, 125) + self.assertEqual(self.product1.quantity_svl, 10) + self.assertEqual(self.product1.standard_price, 12.5) + + def test_change_in_past_add_move_in_1(self): + move1 = self._make_in_move(self.product1, 10, unit_cost=10, create_picking=True) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 15) + self.env['stock.move.line'].create({ + 'product_id': move1.product_id.id, + 'qty_done': 5, + 'product_uom_id': move1.product_uom.id, + 'location_id': move1.location_id.id, + 'location_dest_id': move1.location_dest_id.id, + 'state': 'done', + 'picking_id': move1.picking_id.id, + }) + + self.assertEqual(self.product1.value_svl, 150) + self.assertEqual(self.product1.quantity_svl, 10) + self.assertEqual(self.product1.standard_price, 15) + + def test_change_in_past_increase_out_1(self): + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 15) + move3.move_line_ids.qty_done = 20 + + self.assertEqual(self.product1.value_svl, 0) + self.assertEqual(self.product1.quantity_svl, 0) + self.assertEqual(self.product1.standard_price, 15) + + def test_change_in_past_decrease_out_1(self): + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 15) + move3.move_line_ids.qty_done = 10 + + self.assertEqual(sum(self.product1.stock_valuation_layer_ids.mapped('remaining_qty')), 10) + self.assertEqual(self.product1.value_svl, 150) + self.assertEqual(self.product1.quantity_svl, 10) + self.assertEqual(self.product1.standard_price, 15) + + def test_negative_1(self): + """ Ensures that, in AVCO, the `remaining_qty` field is computed and the vacuum is ran + when necessary. + """ + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 30) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, -10) + move4 = self._make_in_move(self.product1, 10, unit_cost=30) + self.assertEqual(sum(self.product1.stock_valuation_layer_ids.mapped('remaining_qty')), 0) + move5 = self._make_in_move(self.product1, 10, unit_cost=40) + + self.assertEqual(self.product1.value_svl, 400) + self.assertEqual(self.product1.quantity_svl, 10) + + def test_negative_2(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + self.product1.standard_price = 10 + move1 = self._make_out_move(self.product1, 1, force_assign=True) + move2 = self._make_in_move(self.product1, 1, unit_cost=15) + + self.assertEqual(self.product1.value_svl, 0) + self.assertEqual(self.product1.quantity_svl, 0) + + def test_negative_3(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_out_move(self.product1, 2, force_assign=True) + self.assertEqual(move1.stock_valuation_layer_ids.value, 0) + move2 = self._make_in_move(self.product1, 20, unit_cost=3.33) + self.assertEqual(move1.stock_valuation_layer_ids[1].value, -6.66) + + self.assertEqual(self.product1.standard_price, 3.33) + self.assertEqual(self.product1.value_svl, 59.94) + self.assertEqual(self.product1.quantity_svl, 18) + + def test_return_receipt_1(self): + move1 = self._make_in_move(self.product1, 1, unit_cost=10, create_picking=True) + move2 = self._make_in_move(self.product1, 1, unit_cost=20) + move3 = self._make_out_move(self.product1, 1) + move4 = self._make_return(move1, 1) + + self.assertEqual(self.product1.value_svl, 0) + self.assertEqual(self.product1.quantity_svl, 0) + self.assertEqual(self.product1.standard_price, 15) + + def test_return_delivery_1(self): + move1 = self._make_in_move(self.product1, 1, unit_cost=10) + move2 = self._make_in_move(self.product1, 1, unit_cost=20) + move3 = self._make_out_move(self.product1, 1, create_picking=True) + move4 = self._make_return(move3, 1) + + self.assertEqual(self.product1.value_svl, 30) + self.assertEqual(self.product1.quantity_svl, 2) + self.assertEqual(self.product1.standard_price, 15) + self.assertEqual(sum(self.product1.stock_valuation_layer_ids.mapped('remaining_qty')), 2) + + def test_rereturn_receipt_1(self): + move1 = self._make_in_move(self.product1, 1, unit_cost=10, create_picking=True) + move2 = self._make_in_move(self.product1, 1, unit_cost=20) + move3 = self._make_out_move(self.product1, 1) + move4 = self._make_return(move1, 1) # -15, current avco + move5 = self._make_return(move4, 1) # +10, original move's price unit + + self.assertEqual(self.product1.value_svl, 15) + self.assertEqual(self.product1.quantity_svl, 1) + self.assertEqual(self.product1.standard_price, 15) + self.assertEqual(sum(self.product1.stock_valuation_layer_ids.mapped('remaining_qty')), 1) + + def test_rereturn_delivery_1(self): + move1 = self._make_in_move(self.product1, 1, unit_cost=10) + move2 = self._make_in_move(self.product1, 1, unit_cost=20) + move3 = self._make_out_move(self.product1, 1, create_picking=True) + move4 = self._make_return(move3, 1) + move5 = self._make_return(move4, 1) + + self.assertEqual(self.product1.value_svl, 15) + self.assertEqual(self.product1.quantity_svl, 1) + self.assertEqual(self.product1.standard_price, 15) + self.assertEqual(sum(self.product1.stock_valuation_layer_ids.mapped('remaining_qty')), 1) + + def test_dropship_1(self): + move1 = self._make_in_move(self.product1, 1, unit_cost=10) + move2 = self._make_in_move(self.product1, 1, unit_cost=20) + move3 = self._make_dropship_move(self.product1, 1, unit_cost=10) + + self.assertEqual(self.product1.value_svl, 30) + self.assertEqual(self.product1.quantity_svl, 2) + self.assertEqual(self.product1.standard_price, 15) + + def test_rounding_slv_1(self): + move1 = self._make_in_move(self.product1, 1, unit_cost=1.00) + move2 = self._make_in_move(self.product1, 1, unit_cost=1.00) + move3 = self._make_in_move(self.product1, 1, unit_cost=1.01) + + self.assertAlmostEqual(self.product1.value_svl, 3.01) + + move_out = self._make_out_move(self.product1, 3, create_picking=True) + + self.assertIn('Rounding Adjustment: -0.01', move_out.stock_valuation_layer_ids.description) + + self.assertEqual(self.product1.value_svl, 0) + self.assertEqual(self.product1.quantity_svl, 0) + self.assertEqual(self.product1.standard_price, 1.00) + + def test_rounding_slv_2(self): + self._make_in_move(self.product1, 1, unit_cost=1.02) + self._make_in_move(self.product1, 1, unit_cost=1.00) + self._make_in_move(self.product1, 1, unit_cost=1.00) + + self.assertAlmostEqual(self.product1.value_svl, 3.02) + + move_out = self._make_out_move(self.product1, 3, create_picking=True) + + self.assertIn('Rounding Adjustment: +0.01', move_out.stock_valuation_layer_ids.description) + + self.assertEqual(self.product1.value_svl, 0) + self.assertEqual(self.product1.quantity_svl, 0) + self.assertEqual(self.product1.standard_price, 1.01) + + +class TestStockValuationFIFO(TestStockValuationCommon): + def setUp(self): + super(TestStockValuationFIFO, self).setUp() + self.product1.product_tmpl_id.categ_id.property_cost_method = 'fifo' + + def test_normal_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 15) + + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 5) + self.assertEqual(sum(self.product1.stock_valuation_layer_ids.mapped('remaining_qty')), 5) + + def test_negative_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 30) + self.assertEqual(move3.stock_valuation_layer_ids.remaining_qty, -10) + move4 = self._make_in_move(self.product1, 10, unit_cost=30) + self.assertEqual(sum(self.product1.stock_valuation_layer_ids.mapped('remaining_qty')), 0) + move5 = self._make_in_move(self.product1, 10, unit_cost=40) + + self.assertEqual(self.product1.value_svl, 400) + self.assertEqual(self.product1.quantity_svl, 10) + + def test_change_in_past_decrease_in_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_in_move(self.product1, 20, unit_cost=10) + move2 = self._make_out_move(self.product1, 10) + move1.move_line_ids.qty_done = 10 + + self.assertEqual(self.product1.value_svl, 0) + self.assertEqual(self.product1.quantity_svl, 0) + + def test_change_in_past_decrease_in_2(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_in_move(self.product1, 20, unit_cost=10) + move2 = self._make_out_move(self.product1, 10) + move3 = self._make_out_move(self.product1, 10) + move1.move_line_ids.qty_done = 10 + move4 = self._make_in_move(self.product1, 20, unit_cost=15) + + self.assertEqual(self.product1.value_svl, 150) + self.assertEqual(self.product1.quantity_svl, 10) + + def test_change_in_past_increase_in_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=15) + move3 = self._make_out_move(self.product1, 20) + move1.move_line_ids.qty_done = 20 + + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 10) + + def test_change_in_past_increase_in_2(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=12) + move3 = self._make_out_move(self.product1, 15) + move4 = self._make_out_move(self.product1, 20) + move5 = self._make_in_move(self.product1, 100, unit_cost=15) + move1.move_line_ids.qty_done = 20 + + self.assertEqual(self.product1.value_svl, 1375) + self.assertEqual(self.product1.quantity_svl, 95) + + def test_change_in_past_increase_out_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_in_move(self.product1, 20, unit_cost=10) + move2 = self._make_out_move(self.product1, 10) + move3 = self._make_in_move(self.product1, 20, unit_cost=15) + move2.move_line_ids.qty_done = 25 + + self.assertEqual(self.product1.value_svl, 225) + self.assertEqual(self.product1.quantity_svl, 15) + self.assertEqual(sum(self.product1.stock_valuation_layer_ids.mapped('remaining_qty')), 15) + + def test_change_in_past_decrease_out_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_in_move(self.product1, 20, unit_cost=10) + move2 = self._make_out_move(self.product1, 15) + move3 = self._make_in_move(self.product1, 20, unit_cost=15) + move2.move_line_ids.qty_done = 5 + + self.assertEqual(self.product1.value_svl, 450) + self.assertEqual(self.product1.quantity_svl, 35) + self.assertEqual(sum(self.product1.stock_valuation_layer_ids.mapped('remaining_qty')), 35) + + def test_change_in_past_add_ml_out_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_in_move(self.product1, 20, unit_cost=10) + move2 = self._make_out_move(self.product1, 10) + move3 = self._make_in_move(self.product1, 20, unit_cost=15) + self.env['stock.move.line'].create({ + 'move_id': move2.id, + 'product_id': move2.product_id.id, + 'qty_done': 5, + 'product_uom_id': move2.product_uom.id, + 'location_id': move2.location_id.id, + 'location_dest_id': move2.location_dest_id.id, + }) + + self.assertEqual(self.product1.value_svl, 350) + self.assertEqual(self.product1.quantity_svl, 25) + self.assertEqual(sum(self.product1.stock_valuation_layer_ids.mapped('remaining_qty')), 25) + + def test_return_delivery_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_out_move(self.product1, 10, create_picking=True) + move3 = self._make_in_move(self.product1, 10, unit_cost=20) + move4 = self._make_return(move2, 10) + + self.assertEqual(self.product1.value_svl, 300) + self.assertEqual(self.product1.quantity_svl, 20) + + def test_return_receipt_1(self): + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + move1 = self._make_in_move(self.product1, 10, unit_cost=10, create_picking=True) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_return(move1, 2) + + self.assertEqual(self.product1.value_svl, 280) + self.assertEqual(self.product1.quantity_svl, 18) + + def test_rereturn_receipt_1(self): + move1 = self._make_in_move(self.product1, 1, unit_cost=10, create_picking=True) + move2 = self._make_in_move(self.product1, 1, unit_cost=20) + move3 = self._make_out_move(self.product1, 1) + move4 = self._make_return(move1, 1) + move5 = self._make_return(move4, 1) + + self.assertEqual(self.product1.value_svl, 20) + self.assertEqual(self.product1.quantity_svl, 1) + + def test_rereturn_delivery_1(self): + move1 = self._make_in_move(self.product1, 1, unit_cost=10) + move2 = self._make_in_move(self.product1, 1, unit_cost=20) + move3 = self._make_out_move(self.product1, 1, create_picking=True) + move4 = self._make_return(move3, 1) + move5 = self._make_return(move4, 1) + + self.assertEqual(self.product1.value_svl, 10) + self.assertEqual(self.product1.quantity_svl, 1) + + def test_dropship_1(self): + move1 = self._make_in_move(self.product1, 1, unit_cost=10) + move2 = self._make_in_move(self.product1, 1, unit_cost=20) + move3 = self._make_dropship_move(self.product1, 1, unit_cost=10) + + self.assertEqual(self.product1.value_svl, 30) + self.assertEqual(self.product1.quantity_svl, 2) + self.assertAlmostEqual(self.product1.standard_price, 10) + + +class TestStockValuationChangeCostMethod(TestStockValuationCommon): + def test_standard_to_fifo_1(self): + """ The accounting impact of this cost method change is neutral. + """ + self.product1.product_tmpl_id.categ_id.property_cost_method = 'standard' + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + self.product1.product_tmpl_id.standard_price = 10 + + move1 = self._make_in_move(self.product1, 10) + move2 = self._make_in_move(self.product1, 10) + move3 = self._make_out_move(self.product1, 1) + + self.product1.product_tmpl_id.categ_id.property_cost_method = 'fifo' + self.assertEqual(self.product1.value_svl, 190) + self.assertEqual(self.product1.quantity_svl, 19) + + self.assertEqual(len(self.product1.stock_valuation_layer_ids), 5) + for svl in self.product1.stock_valuation_layer_ids.sorted()[-2:]: + self.assertEqual(svl.description, 'Costing method change for product category All: from standard to fifo.') + + def test_standard_to_fifo_2(self): + """ We want the same result as `test_standard_to_fifo_1` but by changing the category of + `self.product1` to another one, not changing the current one. + """ + self.product1.product_tmpl_id.categ_id.property_cost_method = 'standard' + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + self.product1.product_tmpl_id.standard_price = 10 + + move1 = self._make_in_move(self.product1, 10) + move2 = self._make_in_move(self.product1, 10) + move3 = self._make_out_move(self.product1, 1) + + cat2 = self.env['product.category'].create({'name': 'fifo'}) + cat2.property_cost_method = 'fifo' + self.product1.product_tmpl_id.categ_id = cat2 + self.assertEqual(self.product1.value_svl, 190) + self.assertEqual(self.product1.quantity_svl, 19) + self.assertEqual(len(self.product1.stock_valuation_layer_ids), 5) + + def test_avco_to_fifo(self): + """ The accounting impact of this cost method change is neutral. + """ + self.product1.product_tmpl_id.categ_id.property_cost_method = 'average' + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 1) + + self.product1.product_tmpl_id.categ_id.property_cost_method = 'fifo' + self.assertEqual(self.product1.value_svl, 285) + self.assertEqual(self.product1.quantity_svl, 19) + + def test_fifo_to_standard(self): + """ The accounting impact of this cost method change is not neutral as we will use the last + fifo price as the new standard price. + """ + self.product1.product_tmpl_id.categ_id.property_cost_method = 'fifo' + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 1) + + self.product1.product_tmpl_id.categ_id.property_cost_method = 'standard' + self.assertEqual(self.product1.value_svl, 380) + self.assertEqual(self.product1.quantity_svl, 19) + + def test_fifo_to_avco(self): + """ The accounting impact of this cost method change is not neutral as we will use the last + fifo price as the new AVCO. + """ + self.product1.product_tmpl_id.categ_id.property_cost_method = 'fifo' + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 1) + + self.product1.product_tmpl_id.categ_id.property_cost_method = 'average' + self.assertEqual(self.product1.value_svl, 380) + self.assertEqual(self.product1.quantity_svl, 19) + + def test_avco_to_standard(self): + """ The accounting impact of this cost method change is neutral. + """ + self.product1.product_tmpl_id.categ_id.property_cost_method = 'average' + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + move1 = self._make_in_move(self.product1, 10, unit_cost=10) + move2 = self._make_in_move(self.product1, 10, unit_cost=20) + move3 = self._make_out_move(self.product1, 1) + + self.product1.product_tmpl_id.categ_id.property_cost_method = 'standard' + self.assertEqual(self.product1.value_svl, 285) + self.assertEqual(self.product1.quantity_svl, 19) + + def test_standard_to_avco(self): + """ The accounting impact of this cost method change is neutral. + """ + self.product1.product_tmpl_id.categ_id.property_cost_method = 'standard' + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + self.product1.product_tmpl_id.standard_price = 10 + + move1 = self._make_in_move(self.product1, 10) + move2 = self._make_in_move(self.product1, 10) + move3 = self._make_out_move(self.product1, 1) + + self.product1.product_tmpl_id.categ_id.property_cost_method = 'average' + self.assertEqual(self.product1.value_svl, 190) + self.assertEqual(self.product1.quantity_svl, 19) + + +class TestStockValuationChangeValuation(TestStockValuationCommon): + @classmethod + def setUpClass(cls): + super(TestStockValuationChangeValuation, cls).setUpClass() + cls.stock_input_account, cls.stock_output_account, cls.stock_valuation_account, cls.expense_account, cls.stock_journal = _create_accounting_data(cls.env) + cls.product1.categ_id.property_valuation = 'real_time' + cls.product1.write({ + 'property_account_expense_id': cls.expense_account.id, + }) + cls.product1.categ_id.write({ + 'property_stock_account_input_categ_id': cls.stock_input_account.id, + 'property_stock_account_output_categ_id': cls.stock_output_account.id, + 'property_stock_valuation_account_id': cls.stock_valuation_account.id, + 'property_stock_journal': cls.stock_journal.id, + }) + + def test_standard_manual_to_auto_1(self): + self.product1.product_tmpl_id.categ_id.property_cost_method = 'standard' + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + self.product1.product_tmpl_id.standard_price = 10 + move1 = self._make_in_move(self.product1, 10) + + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 10) + self.assertEqual(len(self.product1.stock_valuation_layer_ids.mapped('account_move_id')), 0) + self.assertEqual(len(self.product1.stock_valuation_layer_ids), 1) + + self.product1.product_tmpl_id.categ_id.property_valuation = 'real_time' + + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 10) + # An accounting entry should only be created for the replenish now that the category is perpetual. + self.assertEqual(len(self.product1.stock_valuation_layer_ids.mapped('account_move_id')), 1) + self.assertEqual(len(self.product1.stock_valuation_layer_ids), 3) + for svl in self.product1.stock_valuation_layer_ids.sorted()[-2:]: + self.assertEqual(svl.description, 'Valuation method change for product category All: from manual_periodic to real_time.') + + def test_standard_manual_to_auto_2(self): + self.product1.product_tmpl_id.categ_id.property_cost_method = 'standard' + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + self.product1.product_tmpl_id.standard_price = 10 + move1 = self._make_in_move(self.product1, 10) + + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 10) + self.assertEqual(len(self.product1.stock_valuation_layer_ids.mapped('account_move_id')), 0) + self.assertEqual(len(self.product1.stock_valuation_layer_ids), 1) + + cat2 = self.env['product.category'].create({'name': 'standard auto'}) + cat2.property_cost_method = 'standard' + cat2.property_valuation = 'real_time' + cat2.write({ + 'property_stock_account_input_categ_id': self.stock_input_account.id, + 'property_stock_account_output_categ_id': self.stock_output_account.id, + 'property_stock_valuation_account_id': self.stock_valuation_account.id, + 'property_stock_journal': self.stock_journal.id, + }) + + # Try to change the product category with a `default_type` key in the context and + # check it doesn't break the account move generation. + self.product1.with_context(default_type='product').categ_id = cat2 + self.assertEqual(self.product1.categ_id, cat2) + + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 10) + # An accounting entry should only be created for the replenish now that the category is perpetual. + self.assertEqual(len(self.product1.stock_valuation_layer_ids.mapped('account_move_id')), 1) + self.assertEqual(len(self.product1.stock_valuation_layer_ids), 3) + + def test_standard_auto_to_manual_1(self): + self.product1.product_tmpl_id.categ_id.property_cost_method = 'standard' + self.product1.product_tmpl_id.categ_id.property_valuation = 'real_time' + self.product1.product_tmpl_id.standard_price = 10 + move1 = self._make_in_move(self.product1, 10) + + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 10) + self.assertEqual(len(self.product1.stock_valuation_layer_ids.mapped('account_move_id')), 1) + self.assertEqual(len(self.product1.stock_valuation_layer_ids), 1) + + self.product1.product_tmpl_id.categ_id.property_valuation = 'manual_periodic' + + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 10) + # An accounting entry should only be created for the emptying now that the category is manual. + self.assertEqual(len(self.product1.stock_valuation_layer_ids.mapped('account_move_id')), 2) + self.assertEqual(len(self.product1.stock_valuation_layer_ids), 3) + + def test_standard_auto_to_manual_2(self): + self.product1.product_tmpl_id.categ_id.property_cost_method = 'standard' + self.product1.product_tmpl_id.categ_id.property_valuation = 'real_time' + self.product1.product_tmpl_id.standard_price = 10 + move1 = self._make_in_move(self.product1, 10) + + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 10) + self.assertEqual(len(self.product1.stock_valuation_layer_ids.mapped('account_move_id')), 1) + self.assertEqual(len(self.product1.stock_valuation_layer_ids), 1) + + cat2 = self.env['product.category'].create({'name': 'fifo'}) + cat2.property_cost_method = 'standard' + cat2.property_valuation = 'manual_periodic' + self.product1.with_context(debug=True).categ_id = cat2 + + self.assertEqual(self.product1.value_svl, 100) + self.assertEqual(self.product1.quantity_svl, 10) + # An accounting entry should only be created for the emptying now that the category is manual. + self.assertEqual(len(self.product1.stock_valuation_layer_ids.mapped('account_move_id')), 2) + self.assertEqual(len(self.product1.stock_valuation_layer_ids), 3) + diff --git a/addons/stock_account/views/product_views.xml b/addons/stock_account/views/product_views.xml new file mode 100644 index 00000000..f4c47e58 --- /dev/null +++ b/addons/stock_account/views/product_views.xml @@ -0,0 +1,42 @@ + + + + + product.template.tree.inherit.stock.account + product.template + + + + 1 + + + + + + product.category.stock.property.form.inherit + product.category + + + + + + + + +
+ Set other input/output accounts on specific
+
+
+ + + + + + + + +
+
+
+
diff --git a/addons/stock_account/views/res_config_settings_views.xml b/addons/stock_account/views/res_config_settings_views.xml new file mode 100644 index 00000000..138461b8 --- /dev/null +++ b/addons/stock_account/views/res_config_settings_views.xml @@ -0,0 +1,34 @@ + + + + + res.config.settings.view.form.inherit.stock.account + res.config.settings + + +
+

Valuation

+
+
+
+ +
+
+
+
+
+ + + + diff --git a/addons/stock_account/views/stock_account_views.xml b/addons/stock_account/views/stock_account_views.xml new file mode 100644 index 00000000..62c8cdc5 --- /dev/null +++ b/addons/stock_account/views/stock_account_views.xml @@ -0,0 +1,70 @@ + + + + + + stock.move.form.inherit + stock.move + + + +