Начальное наполнение
This commit is contained in:
parent
40bbc1eaf6
commit
7bee884c02
41
__init__.py
Normal file
41
__init__.py
Normal file
@ -0,0 +1,41 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
from . import report
|
||||
from . import wizard
|
||||
|
||||
|
||||
def _configure_journals(env):
|
||||
# if we already have a coa installed, create journal and set property field
|
||||
for company in env['res.company'].search([('chart_template', '!=', False)]):
|
||||
ChartTemplate = env['account.chart.template'].with_company(company)
|
||||
template_code = company.chart_template
|
||||
full_data = ChartTemplate._get_chart_template_data(template_code)
|
||||
data = {
|
||||
'template_data': {
|
||||
fname: value
|
||||
for fname, value in full_data['template_data'].items()
|
||||
if fname in [
|
||||
'property_stock_journal',
|
||||
'property_stock_account_input_categ_id',
|
||||
'property_stock_account_output_categ_id',
|
||||
'property_stock_valuation_account_id',
|
||||
]
|
||||
}
|
||||
}
|
||||
template_data = data.pop('template_data')
|
||||
journal = env['account.journal'].search([
|
||||
('code', '=', 'STJ'),
|
||||
('company_id', '=', company.id),
|
||||
('type', '=', 'general')], limit=1)
|
||||
if journal:
|
||||
env['ir.model.data']._update_xmlids([{
|
||||
'xml_id': f"account.{company.id}_inventory_valuation",
|
||||
'record': journal,
|
||||
'noupdate': True,
|
||||
}])
|
||||
else:
|
||||
data['account.journal'] = ChartTemplate._get_stock_account_journal(template_code)
|
||||
ChartTemplate._load_data(data)
|
||||
ChartTemplate._post_load_data(template_code, company, template_data)
|
50
__manifest__.py
Normal file
50
__manifest__.py
Normal file
@ -0,0 +1,50 @@
|
||||
# -*- 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/report_invoice.xml',
|
||||
'views/stock_valuation_layer_views.xml',
|
||||
'views/stock_quant_views.xml',
|
||||
'views/product_views.xml',
|
||||
'wizard/stock_request_count.xml',
|
||||
'wizard/stock_valuation_layer_revaluation_views.xml',
|
||||
'wizard/stock_quantity_history.xml',
|
||||
'report/account_invoice_report_view.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
'post_init_hook': '_configure_journals',
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'stock_account/static/src/stock_account_forecasted/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
17
data/product_data.xml
Normal file
17
data/product_data.xml
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record forcecreate="True" id="property_stock_account_output_categ_id" model="ir.property">
|
||||
<field name="name">property_stock_account_output_categ_id</field>
|
||||
<field name="fields_id" search="[('model','=','product.category'),('name','=','property_stock_account_output_categ_id')]"/>
|
||||
<field eval="False" name="value"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
<record forcecreate="True" id="property_stock_account_input_categ_id" model="ir.property">
|
||||
<field name="name">property_stock_account_input_categ_id</field>
|
||||
<field name="fields_id" search="[('model','=','product.category'),('name','=','property_stock_account_input_categ_id')]"/>
|
||||
<field eval="False" name="value"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
19
data/stock_account_data.xml
Normal file
19
data/stock_account_data.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
|
||||
<record forcecreate="True" id="default_category_cost_method" model="ir.property">
|
||||
<field name="name">Cost Method Property</field>
|
||||
<field name="fields_id" ref="field_product_category__property_cost_method"/>
|
||||
<field name="value">standard</field>
|
||||
<field name="type">selection</field>
|
||||
</record>
|
||||
<record forcecreate="True" id="default_category_valuation" model="ir.property">
|
||||
<field name="name">Valuation Property</field>
|
||||
<field name="fields_id" ref="field_product_category__property_valuation"/>
|
||||
<field name="value">manual_periodic</field>
|
||||
<field name="type">selection</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
|
956
i18n/af.po
Normal file
956
i18n/af.po
Normal file
@ -0,0 +1,956 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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 "Gekanselleer"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Maatskappy"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "Geskep deur"
|
||||
|
||||
#. 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 "Geskep 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 "Geldeenheid"
|
||||
|
||||
#. 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_quant__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 "Beskrywing"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 "Vertoningsnaam"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Faktuur Lyn"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 "Laas Opgedateer deur"
|
||||
|
||||
#. 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 "Laas Opgedateer op"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product Category"
|
||||
msgstr "Produk Kategorie"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_move_line
|
||||
msgid "Product Moves (Stock Move Line)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Produk Profielvorm"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
952
i18n/am.po
Normal file
952
i18n/am.po
Normal file
@ -0,0 +1,952 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "የዋጋ አያያዝ"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "የእቃው ማሳያ"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1152
i18n/ar.po
Normal file
1152
i18n/ar.po
Normal file
File diff suppressed because it is too large
Load Diff
959
i18n/az.po
Normal file
959
i18n/az.po
Normal file
@ -0,0 +1,959 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr "<span>Məhsul</span>"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr "<span>Miqdar</span>"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_account_chart_template
|
||||
msgid "Account Chart Template"
|
||||
msgstr "Hesablar Planı Şablonu"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_move__account_move_ids
|
||||
msgid "Account Move"
|
||||
msgstr "Hesab Hərəkəti"
|
||||
|
||||
#. 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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date
|
||||
msgid "Accounting Date"
|
||||
msgstr "Mühasibatlıq uçotu tarixi"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit
|
||||
msgid "Accounting Entries"
|
||||
msgstr "Mühasibat uçotu qeydləri"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_location_form_inherit
|
||||
msgid "Accounting Information"
|
||||
msgstr "Mühasibatlıq Uçotu haqqında Məlumat"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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 "Ləğv edin"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Şirkət"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Parametrləri Konfiqurasiya edin"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Ölkə Kodu"
|
||||
|
||||
#. 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ərəfindən yaradılıb"
|
||||
|
||||
#. 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 "Tarixdə yaradıldı"
|
||||
|
||||
#. 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 "Valyuta"
|
||||
|
||||
#. 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 "Tarix"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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 "Bütün anbar əməliyyatları üçün istifadə olunan standart ölçü vahidi."
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__description
|
||||
msgid "Description"
|
||||
msgstr "Təsvir"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 "Ekran Adı"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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 "Qruplaşdır..."
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr "Gələn"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Faktura Xətti"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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 "Jurnal Girişi"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Jurnal Sətirləri"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__module_stock_landed_costs
|
||||
msgid "Landed Costs"
|
||||
msgstr "Malın Anbarda Dəyəri"
|
||||
|
||||
#. 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 Yeniləyən"
|
||||
|
||||
#. 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 Yenilənmə tarixi"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields.selection,name:stock_account.selection__product_category__property_valuation__manual_periodic
|
||||
msgid "Manual"
|
||||
msgstr "Əl ilə"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr "Digər Məlumatlar"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
msgstr "Gedən"
|
||||
|
||||
#. 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_id
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product"
|
||||
msgstr "Məhsul"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product Category"
|
||||
msgstr "Məhsul Kateqoriyası"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_move_line
|
||||
msgid "Product Moves (Stock Move Line)"
|
||||
msgstr "Məhsul Hərəkətləri (Ehtiyat Keçid Xətti)"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Məhsul Şablonu"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Məhsul Çeşidi"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
msgid "Quantity"
|
||||
msgstr "Miqdar"
|
||||
|
||||
#. 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 "Səbəb"
|
||||
|
||||
#. 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__reference
|
||||
msgid "Reference"
|
||||
msgstr "Rəy"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "Stokun Hərəkəti"
|
||||
|
||||
#. 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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"İki simvolda ISO ölkə kodu. \n"
|
||||
"Tez axtarış üçün bu sahəni istifadə edə bilərsiniz."
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
msgid "Total Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_picking
|
||||
msgid "Transfer"
|
||||
msgstr "Köçürmə"
|
||||
|
||||
#. 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.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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 "Ölçü Vahidi"
|
||||
|
||||
#. 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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr "Qiymətləndirmə"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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 "Dəyər"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Xəbərdarlıq"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 "tərəfindən"
|
||||
|
||||
#. 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 ""
|
1112
i18n/bg.po
Normal file
1112
i18n/bg.po
Normal file
File diff suppressed because it is too large
Load Diff
958
i18n/bs.po
Normal file
958
i18n/bs.po
Normal file
@ -0,0 +1,958 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
# Bole <bole@dajmi5.com>, 2018
|
||||
# Malik K, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+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"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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 "Otkaži"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Metoda koštanja"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 ""
|
||||
|
||||
#. 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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr "Lokacije zalihe"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Stavka fakture"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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 "Troškovi nabavke"
|
||||
|
||||
#. 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 ažurirao"
|
||||
|
||||
#. 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 "Zadnje ažurirano"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Predlog proizvoda"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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 ""
|
||||
|
||||
#. 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__reference
|
||||
msgid "Reference"
|
||||
msgstr "Referenca"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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.selection,name:stock_account.selection__product_category__property_cost_method__standard
|
||||
msgid "Standard Price"
|
||||
msgstr "Standardna 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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 zaliha (primka)"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal
|
||||
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_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 "Kretanje zalihe"
|
||||
|
||||
#. 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 "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:ir.model,name:stock_account.model_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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
|
||||
#: 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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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 "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.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr "Procijena vrijednosti"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1181
i18n/ca.po
Normal file
1181
i18n/ca.po
Normal file
File diff suppressed because it is too large
Load Diff
1100
i18n/cs.po
Normal file
1100
i18n/cs.po
Normal file
File diff suppressed because it is too large
Load Diff
1156
i18n/da.po
Normal file
1156
i18n/da.po
Normal file
File diff suppressed because it is too large
Load Diff
1172
i18n/de.po
Normal file
1172
i18n/de.po
Normal file
File diff suppressed because it is too large
Load Diff
957
i18n/el.po
Normal file
957
i18n/el.po
Normal file
@ -0,0 +1,957 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# George Tarasidis <george_tarasidis@yahoo.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: George Tarasidis <george_tarasidis@yahoo.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"Language: el\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Μέθοδος Κοστολόγησης"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr "Τοποθεσίες Αποθέματος"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Γραμμή Τιμολογίου"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Πρότυπο Είδους "
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
958
i18n/en_GB.po
Normal file
958
i18n/en_GB.po
Normal file
@ -0,0 +1,958 @@
|
||||
# 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: 2023-05-16 13:48+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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "Accounting Information"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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 "Cancel"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Company"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "Created by"
|
||||
|
||||
#. 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 "Created on"
|
||||
|
||||
#. 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 "Date"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 "Display Name"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Invoice Line"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 "Last Updated by"
|
||||
|
||||
#. 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 "Last Updated on"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product Category"
|
||||
msgstr "Product Category"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_move_line
|
||||
msgid "Product Moves (Stock Move Line)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Product Template"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "Stock Move"
|
||||
|
||||
#. 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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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 "Value"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1172
i18n/es.po
Normal file
1172
i18n/es.po
Normal file
File diff suppressed because it is too large
Load Diff
1178
i18n/es_419.po
Normal file
1178
i18n/es_419.po
Normal file
File diff suppressed because it is too large
Load Diff
954
i18n/es_BO.po
Normal file
954
i18n/es_BO.po
Normal file
@ -0,0 +1,954 @@
|
||||
# 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: 2023-05-16 13:48+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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "Información contable"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Compañía"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "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 en"
|
||||
|
||||
#. 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 "Fecha"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr "Ubicaciones de inventario"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea de factura"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 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 "Última actualización en"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "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 ""
|
||||
|
||||
#. 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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
954
i18n/es_CL.po
Normal file
954
i18n/es_CL.po
Normal file
@ -0,0 +1,954 @@
|
||||
# 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: 2023-05-16 13:48+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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "Información contable"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Compañía"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Método de costo"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "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 en"
|
||||
|
||||
#. 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 "Fecha"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 (identificación)"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
#, python-format
|
||||
msgid "Inventory Valuation"
|
||||
msgstr "Valoración inventario"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 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 "Última actualización en"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla producto"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "Cuenta entrada stock"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal
|
||||
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_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 "Moviemiento de 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 "Cuenta salida stock"
|
||||
|
||||
#. 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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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 "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
|
||||
#: 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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
msgid "Total Value"
|
||||
msgstr "Valor total"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
956
i18n/es_CO.po
Normal file
956
i18n/es_CO.po
Normal file
@ -0,0 +1,956 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# ANDRES FELIPE NEGRETE GOMEZ <psi@nubark.com>, 2016
|
||||
# Mateo Tibaquirá <nestormateo@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2016-02-18 03:59+0000\n"
|
||||
"Last-Translator: Felipe Palomino <omega@nubark.com>\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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 "Propiedades de Cuenta de Existencias"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "Información Contable"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Compañía"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Método de Coste"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "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"
|
||||
|
||||
#. 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 "Fecha"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 Público"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr "Ubicaciones de Inventario"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
#, python-format
|
||||
msgid "Inventory Valuation"
|
||||
msgstr "Valuación del Inventario"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea de Factura"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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 "Costos en el Destino"
|
||||
|
||||
#. 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 "Actualizado 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 "Actualizado"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría del Producto"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_move_line
|
||||
msgid "Product Moves (Stock Move Line)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla del Producto"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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 "Cants"
|
||||
|
||||
#. 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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "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 "Libro 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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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 "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
|
||||
#: 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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
msgid "Total Value"
|
||||
msgstr "Valor Total"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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 "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.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
954
i18n/es_CR.po
Normal file
954
i18n/es_CR.po
Normal file
@ -0,0 +1,954 @@
|
||||
# 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: 2023-05-16 13:48+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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "Información contable"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Compañía"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Método de coste"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "Creado en"
|
||||
|
||||
#. 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 "Fecha"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
#, python-format
|
||||
msgid "Inventory Valuation"
|
||||
msgstr "Valoración inventario"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "Cuenta entrada stock"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal
|
||||
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_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 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 "Cuenta salida stock"
|
||||
|
||||
#. 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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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 "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
|
||||
#: 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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
msgid "Total Value"
|
||||
msgstr "Valor total"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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 "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.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
955
i18n/es_DO.po
Normal file
955
i18n/es_DO.po
Normal file
@ -0,0 +1,955 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Eneldo Serrata <eneldoserrata@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2015-12-28 21:17+0000\n"
|
||||
"Last-Translator: Eneldo Serrata <eneldoserrata@gmail.com>\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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 "Propiedades de cuenta de existencias"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "Información contable"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Compañía"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Método de coste"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "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 en"
|
||||
|
||||
#. 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 "Fecha"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr "Ubicaciones de inventario"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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 "Costes en destino"
|
||||
|
||||
#. 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 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 "Última actualización en"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla producto"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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 "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
|
||||
#: 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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
msgid "Total Value"
|
||||
msgstr "Valor total"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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 "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.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
957
i18n/es_EC.po
Normal file
957
i18n/es_EC.po
Normal file
@ -0,0 +1,957 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Ana Juaristi <ajuaristio@gmail.com>, 2015
|
||||
# Antonio Trueba, 2016
|
||||
# Rick Hunter <rick_hunter_ec@yahoo.com>, 2015-2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2016-02-22 05:00+0000\n"
|
||||
"Last-Translator: Rick Hunter <rick_hunter_ec@yahoo.com>\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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 "Propiedades de cuenta de existencias"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "Información contable"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Compañía"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Método de coste"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "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 en"
|
||||
|
||||
#. 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 "Fecha"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 (identificación)"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr "Ubicaciones de inventario"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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 "Costes en destino"
|
||||
|
||||
#. 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 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 "Última actualización en"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla producto"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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 "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
|
||||
#: 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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
msgid "Total Value"
|
||||
msgstr "Valor total"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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 "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.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
955
i18n/es_PE.po
Normal file
955
i18n/es_PE.po
Normal file
@ -0,0 +1,955 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2016-06-21 14:56+0000\n"
|
||||
"Last-Translator: Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "Información Contable"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Compañia"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "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 en"
|
||||
|
||||
#. 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 "Fecha"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 a Mostrar"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Detalle de Factura"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 "Actualizado última vez 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 "Ultima Actualización"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de Producto"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "Movimiento de 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 ""
|
||||
|
||||
#. 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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
msgid "Total Value"
|
||||
msgstr "Valor Total"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
954
i18n/es_PY.po
Normal file
954
i18n/es_PY.po
Normal file
@ -0,0 +1,954 @@
|
||||
# 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: 2023-05-16 13:48+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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "Información contable"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Compañía"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "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 en"
|
||||
|
||||
#. 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 "Fecha"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 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 "Ultima actualización en"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "Movimiento 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 ""
|
||||
|
||||
#. 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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
954
i18n/es_VE.po
Normal file
954
i18n/es_VE.po
Normal file
@ -0,0 +1,954 @@
|
||||
# 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: 2023-05-16 13:48+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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Compañía"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Método de coste"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "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 en"
|
||||
|
||||
#. 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 "Fecha"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 "Mostrar nombre"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Línea factura"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 realizada 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 "Ultima actualizacion en"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Plantilla de producto"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "Movimiento 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 ""
|
||||
|
||||
#. 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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1163
i18n/et.po
Normal file
1163
i18n/et.po
Normal file
File diff suppressed because it is too large
Load Diff
954
i18n/eu.po
Normal file
954
i18n/eu.po
Normal file
@ -0,0 +1,954 @@
|
||||
# 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: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2016-02-14 13:59+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/odoo/odoo-9/language/eu/)\n"
|
||||
"Language: eu\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "Created on"
|
||||
|
||||
#. 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 "Data"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Faktura lerroa"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 "Last Updated by"
|
||||
|
||||
#. 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 "Last Updated on"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Product Template"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1131
i18n/fa.po
Normal file
1131
i18n/fa.po
Normal file
File diff suppressed because it is too large
Load Diff
1176
i18n/fi.po
Normal file
1176
i18n/fi.po
Normal file
File diff suppressed because it is too large
Load Diff
954
i18n/fo.po
Normal file
954
i18n/fo.po
Normal file
@ -0,0 +1,954 @@
|
||||
# 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: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2016-01-01 14:38+0000\n"
|
||||
"Last-Translator: Jarnhold Nattestad <nattestads@gmail.com>\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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 "Strika"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Fyritøka"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "Byrjað 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 "Byrjað tann"
|
||||
|
||||
#. 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 "Dagfesting"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 "Vís navn"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Fakturalinja"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 "Seinast dagført 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 "Seinast dagført tann"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_id
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product"
|
||||
msgstr "Vøra"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1180
i18n/fr.po
Normal file
1180
i18n/fr.po
Normal file
File diff suppressed because it is too large
Load Diff
954
i18n/fr_BE.po
Normal file
954
i18n/fr_BE.po
Normal file
@ -0,0 +1,954 @@
|
||||
# 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: 2023-05-16 13:48+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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Société"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "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 ""
|
||||
|
||||
#. 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 "Date"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Ligne de facturation"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 "Derniere fois mis à 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 mis à 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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_id
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
955
i18n/fr_CA.po
Normal file
955
i18n/fr_CA.po
Normal file
@ -0,0 +1,955 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Alain Ma <slinky-32@hotmail.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2016-07-19 02:14+0000\n"
|
||||
"Last-Translator: Alain Ma <slinky-32@hotmail.com>\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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 "Compte Propriétés de stock"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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 "Annuler"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "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 ""
|
||||
|
||||
#. 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 "Date"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 "Identifiant"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "ligne de facturation"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_id
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Modèle de produit"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
954
i18n/gl.po
Normal file
954
i18n/gl.po
Normal file
@ -0,0 +1,954 @@
|
||||
# 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: 2023-05-16 13:48+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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "Información Contable"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Compañía"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "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 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 ""
|
||||
|
||||
#. 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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Liña de factura"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 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 "Última actualización en"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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 ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Modelo de Producto"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.selection,name:stock_account.selection__product_category__property_cost_method__standard
|
||||
msgid "Standard Price"
|
||||
msgstr "Prezo 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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "Movemento de 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 ""
|
||||
|
||||
#. 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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
958
i18n/gu.po
Normal file
958
i18n/gu.po
Normal file
@ -0,0 +1,958 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"Language: gu\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr "<span>Quantity</span>"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_account_chart_template
|
||||
msgid "Account Chart Template"
|
||||
msgstr "Account Chart Template"
|
||||
|
||||
#. 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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__date
|
||||
msgid "Accounting Date"
|
||||
msgstr "Accounting Date"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_move_form_inherit
|
||||
msgid "Accounting Entries"
|
||||
msgstr "Accounting Entries"
|
||||
|
||||
#. 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
|
||||
#: 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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 "Cancel"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Company"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Config Settings"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Country Code"
|
||||
|
||||
#. 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 "Created by"
|
||||
|
||||
#. 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 "Created on"
|
||||
|
||||
#. 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 "Currency"
|
||||
|
||||
#. 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 "Date"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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 "Description"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 "Display Name"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Invoice Line"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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 "Journal Entry"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Journal Item"
|
||||
|
||||
#. 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_valuation_layer__write_uid
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. 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 "Last Updated on"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product Category"
|
||||
msgstr "Product Category"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_move_line
|
||||
msgid "Product Moves (Stock Move Line)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Product Variant"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
msgid "Quantity"
|
||||
msgstr "Quantity"
|
||||
|
||||
#. 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 "Reason"
|
||||
|
||||
#. 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__reference
|
||||
msgid "Reference"
|
||||
msgstr "Reference"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
msgid "Total Value"
|
||||
msgstr ""
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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 "Unit of Measure"
|
||||
|
||||
#. 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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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 "Value"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Warning"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1130
i18n/he.po
Normal file
1130
i18n/he.po
Normal file
File diff suppressed because it is too large
Load Diff
968
i18n/hr.po
Normal file
968
i18n/hr.po
Normal file
@ -0,0 +1,968 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Ivica Dimjašević <ivica.dimjasevic@storm.hr>, 2022
|
||||
# Davor Bojkić <davor.bojkic@storm.hr>, 2022
|
||||
# Hrvoje Sić <hrvoje.sic@gmail.com>, 2022
|
||||
# Jasmina Otročak <jasmina@uvid.hr>, 2022
|
||||
# Mario Jureša <mario.juresa@uvid.hr>, 2022
|
||||
# Marko Carević <marko.carevic@live.com>, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tina Milas, 2022
|
||||
# Bole <bole@dajmi5.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2023\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#. odoo-python
|
||||
#: 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 "Cijena proizvoda ažurirana sa %(previous)sna %(new_cost)s."
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr " [Obračunato na %s]"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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 je promijenio nabavnu cijenu %(previous)s na %(new_price)s - %(product)s"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr "<b>Postavite ostala ulazan ili izlazna konta na specifičnom </b>"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr "<span>Proizvod</span>"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr "<span>Količina</span>"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
msgstr "<span>SB/LB</span>"
|
||||
|
||||
#. 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 "Temeljnica"
|
||||
|
||||
#. 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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "Dodaj ručno vrednovanje"
|
||||
|
||||
#. 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 "Dodaj zavisni trošak (transport, carina...) u vrijednost proizvoda."
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_revaluation_form_view
|
||||
msgid "Added Value"
|
||||
msgstr "Dodana vrijednost"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
msgstr "Prosječni trošak"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Metoda troška"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Šifra države"
|
||||
|
||||
#. 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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr "Ulazna"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr "Lokacije inventure"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Stavka računa"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
msgstr "Odlazno"
|
||||
|
||||
#. 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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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 "Skladišna kretanja proizvoda(stavke)"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Predložak proizvoda"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijanta proizvoda"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
msgstr "Vezna oznaka"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO oznaka države u dva slova.\n"
|
||||
"Možete koristiti za brzo pretraživanje."
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
msgstr "Jedinični trošak"
|
||||
|
||||
#. 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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr "Vrednovanje"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1110
i18n/hu.po
Normal file
1110
i18n/hu.po
Normal file
File diff suppressed because it is too large
Load Diff
1167
i18n/id.po
Normal file
1167
i18n/id.po
Normal file
File diff suppressed because it is too large
Load Diff
957
i18n/is.po
Normal file
957
i18n/is.po
Normal file
@ -0,0 +1,957 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Heiðar Sigurðsson, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Heiðar Sigurðsson, 2022\n"
|
||||
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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 "Hætta við"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Costing Method"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "Búið til 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 "Stofnað þann"
|
||||
|
||||
#. 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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 "Nafn"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 "Auðkenni"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Invoice Line"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer_revaluation__account_journal_id
|
||||
msgid "Journal"
|
||||
msgstr "Færslubó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 "Dagbókarfærsla"
|
||||
|
||||
#. 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_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 "Síðast uppfært 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 "Síðast uppfært þann"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_id
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product"
|
||||
msgstr "Vara"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Sniðmát vöru"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
msgid "Quantity"
|
||||
msgstr "Magn"
|
||||
|
||||
#. 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__reference
|
||||
msgid "Reference"
|
||||
msgstr "Tilvísun"
|
||||
|
||||
#. 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 "Return Picking"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_return_picking_line
|
||||
msgid "Return Picking Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "Stock Input Account"
|
||||
|
||||
#. 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 "Stock Move"
|
||||
|
||||
#. 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 "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:ir.model,name:stock_account.model_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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 "Eining"
|
||||
|
||||
#. 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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr "Valuation"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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 "Value"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "Warning"
|
||||
msgstr "Viðvörun"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1179
i18n/it.po
Normal file
1179
i18n/it.po
Normal file
File diff suppressed because it is too large
Load Diff
1105
i18n/ja.po
Normal file
1105
i18n/ja.po
Normal file
File diff suppressed because it is too large
Load Diff
958
i18n/ka.po
Normal file
958
i18n/ka.po
Normal file
@ -0,0 +1,958 @@
|
||||
# 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: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2016-06-27 15:58+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Georgian (http://www.transifex.com/odoo/odoo-9/language/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"#-#-#-#-# ka.po (Odoo 9.0) #-#-#-#-#\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"#-#-#-#-# ka.po (Odoo 9.0) #-#-#-#-#\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
958
i18n/kab.po
Normal file
958
i18n/kab.po
Normal file
@ -0,0 +1,958 @@
|
||||
# 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: 2023-05-16 13:48+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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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 "Talɣut n tsiḍent"
|
||||
|
||||
#. 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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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 "Sefsex"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Takebbwanit"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Tarrayt n tesqamt"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "Yerna-t"
|
||||
|
||||
#. 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 "Yerna di"
|
||||
|
||||
#. 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 "Azemz"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 "Asulay"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Izirig n tfaturt"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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 "Tisqamin n trusi"
|
||||
|
||||
#. 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 "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. 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 "Aleqqem aneggaru di"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_id
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product"
|
||||
msgstr "Afaris"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product Category"
|
||||
msgstr "Taggayt n ifarisen"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_move_line
|
||||
msgid "Product Moves (Stock Move Line)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Taneɣruft n ufaris"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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 "Tinectiwin"
|
||||
|
||||
#. 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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "Amussu n uselɣas"
|
||||
|
||||
#. 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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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 "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
|
||||
#: 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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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 "Azal"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
959
i18n/km.po
Normal file
959
i18n/km.po
Normal file
@ -0,0 +1,959 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2020
|
||||
# Chan Nath <channath@gmail.com>, 2020
|
||||
# Samkhann Seang <seangsamkhann@gmail.com>, 2020
|
||||
# Lux Sok <sok.lux@gmail.com>, 2020
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2020-09-07 08:19+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n"
|
||||
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr "ទីតាំងសារពើភ័ណ្ឌ"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr "ពត៌មានផ្សេងទៀត"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "គំរូផលិតផល"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1108
i18n/ko.po
Normal file
1108
i18n/ko.po
Normal file
File diff suppressed because it is too large
Load Diff
952
i18n/lb.po
Normal file
952
i18n/lb.po
Normal file
@ -0,0 +1,952 @@
|
||||
# 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: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:14+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"Language: lb\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1106
i18n/lt.po
Normal file
1106
i18n/lt.po
Normal file
File diff suppressed because it is too large
Load Diff
1091
i18n/lv.po
Normal file
1091
i18n/lv.po
Normal file
File diff suppressed because it is too large
Load Diff
959
i18n/mk.po
Normal file
959
i18n/mk.po
Normal file
@ -0,0 +1,959 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Aleksandar Vangelovski <aleksandarv@hbee.eu>, 2016
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2016-06-10 12:29+0000\n"
|
||||
"Last-Translator: Aleksandar Vangelovski <aleksandarv@hbee.eu>\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Метод на чинење"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr "Локации на залихи"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Ставка од фактура"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Урнек на производ"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
972
i18n/mn.po
Normal file
972
i18n/mn.po
Normal file
@ -0,0 +1,972 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# nurbakhit nurka <nurbakhit@bumanit.mn>, 2022
|
||||
# Батмөнх Ганбат <batmunkh2522@gmail.com>, 2022
|
||||
# Bayarkhuu Bataa, 2022
|
||||
# Munkhbaatar g <muuguu17@gmail.com>, 2022
|
||||
# Ganbaatar Buriad <Ganbaatar@asterisk-tech.mn>, 2022
|
||||
# hish, 2022
|
||||
# Minj P <pminj322@gmail.com>, 2022
|
||||
# Насан-Очир <nasaaskii@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2023\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr "<span>Бараа</span>"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr "<span>Тоо хэмжээ</span>"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
msgstr "<span>Цувралын дугаар</span>"
|
||||
|
||||
#. 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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Өртөг тооцох арга"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr "Нэхэмжлэл дээр серийн дугаар харуулах"
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr "Нэхэмжлэл дээр серийн дугаар харуулах"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr "Ирж буй"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr "Нөөцийн байрлалууд"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Нэхэмжлэлийн мөр"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr "Бусад мэдээлэл"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Барааны загвар"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Барааны хувилбар"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr "Нөөц дүүргэлтийн тайлан"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr "Тооллого хийх захиалга"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"Улсын ISO код нь хоёр тэмдэгтэй байна.\n"
|
||||
"Та үүнийг хурдан хайлтад хэрэглэх боломжтой."
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr "Өртөгийн дүн"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
962
i18n/nb.po
Normal file
962
i18n/nb.po
Normal file
@ -0,0 +1,962 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Jorunn D. Newth, 2022
|
||||
# Mads Søndergaard, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Henrik Norlin <henrik@appstogrow.net>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Henrik Norlin <henrik@appstogrow.net>, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"Language: nb\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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr "Antall"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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 "Regnskapsmessig beholdningsverdi"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
msgstr ""
|
||||
|
||||
#. 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 "Kanseller"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Innstillinger"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Kostmetode"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Landskode"
|
||||
|
||||
#. 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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr "Innkommende"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr "Lagerlokasjoner"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Fakturalinje"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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 "Bilag"
|
||||
|
||||
#. 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_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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
msgstr "Utgående"
|
||||
|
||||
#. 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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Produktmal"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Produktvariant"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
msgstr "Referanse"
|
||||
|
||||
#. 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 "Returplukk"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_return_picking_line
|
||||
msgid "Return Picking Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 for inngående lager"
|
||||
|
||||
#. 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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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 for beholdningsverdi"
|
||||
|
||||
#. 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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO-landkoden med to tegn.\n"
|
||||
"Du kan bruke dette feltet til et raskt søk."
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
msgstr "Enhetskostnad"
|
||||
|
||||
#. 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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 "for "
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "locations"
|
||||
msgstr ""
|
1178
i18n/nl.po
Normal file
1178
i18n/nl.po
Normal file
File diff suppressed because it is too large
Load Diff
1157
i18n/pl.po
Normal file
1157
i18n/pl.po
Normal file
File diff suppressed because it is too large
Load Diff
1097
i18n/pt.po
Normal file
1097
i18n/pt.po
Normal file
File diff suppressed because it is too large
Load Diff
1167
i18n/pt_BR.po
Normal file
1167
i18n/pt_BR.po
Normal file
File diff suppressed because it is too large
Load Diff
975
i18n/ro.po
Normal file
975
i18n/ro.po
Normal file
@ -0,0 +1,975 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:55+0000\n"
|
||||
"Last-Translator: Dorin Hongu <dhongu@gmail.com>, 2023\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr " [Contabilizat pe %s]"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
")\n"
|
||||
" <small class=\"mx-2 fst-italic\">Utilizați o valoare adăugată negativă pentru a înregistra o scădere a valorii produsului</small>"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr "<b>Setați alte conturi de intrare/ieșire pe specific </b>"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr "<span>Produs</span>"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr "<span>Cantitate</span>"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
msgstr "<span>NL/NS:</span>"
|
||||
|
||||
#. 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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
msgstr "Linie cont analitic"
|
||||
|
||||
#. 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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
msgstr "Costul mediu "
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
msgstr "Alegeți o dată pentru a obține evaluarea la acea dată"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Metodă de cost"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
"Elementele jurnalului omolog pentru toate intrările în stoc vor fi postate în acest cont, cu excepția cazului în care există un cont de evaluare specific\n"
|
||||
" setat în locația sursă. Aceasta este valoarea implicită pentru toate produsele din această categorie. Poate fi setat și direct pe fiecare produs."
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_picking__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Codul tarii"
|
||||
|
||||
#. 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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr "Afișați loturi și numere de serie în facturi"
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr "Afișare serie și număr lot pe facturi"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr "Are cantitate rămasă"
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr "Intrări"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr "Locații inventar"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Linie factură"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
msgstr "Corecție valoare factură cu valuta facturii"
|
||||
|
||||
#. 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_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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
msgstr "Cantitate mutată"
|
||||
|
||||
#. 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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr "Deschide stratul de evaluare"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
msgstr "Ieșiri"
|
||||
|
||||
#. 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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Șablon produs"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Variantă produs"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
msgstr "Referință"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr "Raport Reaprovizionare Stoc"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr "Solicită o verificare a stocului"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr "Camp tehnic pentru a afișa corect moneda companiei selectate care corespunde valorii totalizate a nivelurilor de evaluare a produsului"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"Codul ISO al țării din două caractere.\n"
|
||||
"Puteți utiliza acest câmp pentru căutări rapide."
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 "Liniile de mișcare nu sunt într-o stare consistentă: ele fac o intercompanie într-un singur pas în timp ce ar trebui să treacă prin locația de tranzit intercompanie."
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr "Nu există niveluri de evaluare. Nivelurile de evaluare sunt create atunci când există mișcări de produse care afectează evaluarea stocului."
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr "Cantitatea totală rămasă"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr "Valoarea totală rămasă"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
msgstr "Costul unității"
|
||||
|
||||
#. 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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr "Evaluare"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr "Valuarea monedei"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr "Raport de evaluare"
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr "Valuare la data"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr "Valoarea în stoc:"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
||||
"Când se face evaluarea automatizată a inventarului, elementele jurnal opuse pentru toate mișcările de stoc iesitoare vor fi postate in acest cont, \n"
|
||||
" cu excepția cazului în care există un cont de evaluare specific setat pe locația destinație. Aceasta este valoarea implicită pentru toate produsele din această categorie. \n"
|
||||
" Poate fi setat direct și pe fiecare produs."
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr "Nu aveți niciun cont de intrare în stoc definit în categoria dumneavoastră de produse. Trebuie să definiți unu înainte de procedarea acestei operațiuni."
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
1176
i18n/ru.po
Normal file
1176
i18n/ru.po
Normal file
File diff suppressed because it is too large
Load Diff
1121
i18n/sk.po
Normal file
1121
i18n/sk.po
Normal file
File diff suppressed because it is too large
Load Diff
1105
i18n/sl.po
Normal file
1105
i18n/sl.po
Normal file
File diff suppressed because it is too large
Load Diff
954
i18n/sq.po
Normal file
954
i18n/sq.po
Normal file
@ -0,0 +1,954 @@
|
||||
# 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: 2023-05-16 13:48+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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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 "Anullo"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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 "Kompani"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "Krijuar nga"
|
||||
|
||||
#. 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 "Krijuar me"
|
||||
|
||||
#. 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 "Data"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 "Emri i paraqitur"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Linja Invoice-it"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 "Modifikuar per here te fundit nga"
|
||||
|
||||
#. 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 "Modifikuar per here te fundit me"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_id
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product"
|
||||
msgstr "Produkti"
|
||||
|
||||
#. 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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Shëmbull i Produktit"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1161
i18n/sr.po
Normal file
1161
i18n/sr.po
Normal file
File diff suppressed because it is too large
Load Diff
958
i18n/sr@latin.po
Normal file
958
i18n/sr@latin.po
Normal file
@ -0,0 +1,958 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * stock_account
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:48+0000\n"
|
||||
"PO-Revision-Date: 2017-10-10 11:34+0000\n"
|
||||
"Last-Translator: Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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 "Odustani"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr "Metod obračuna troškova"
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 "Datum kreiranja"
|
||||
|
||||
#. 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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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 za prikaz"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr "Stavka računa"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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 "Promenio"
|
||||
|
||||
#. 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 "Vreme promene"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Product Category"
|
||||
msgstr "Grupa proizvoda"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_move_line
|
||||
msgid "Product Moves (Stock Move Line)"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "Predložak proizvoda"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
msgstr "Šifra"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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 "Nalog ulaznih zaliha"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_category__property_stock_journal
|
||||
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_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 prenosi"
|
||||
|
||||
#. 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 "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:ir.model,name:stock_account.model_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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 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 ""
|
||||
|
||||
#. 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.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1078
i18n/stock_account.pot
Normal file
1078
i18n/stock_account.pot
Normal file
File diff suppressed because it is too large
Load Diff
1168
i18n/sv.po
Normal file
1168
i18n/sv.po
Normal file
File diff suppressed because it is too large
Load Diff
956
i18n/ta.po
Normal file
956
i18n/ta.po
Normal file
@ -0,0 +1,956 @@
|
||||
# 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: 2023-05-16 13:48+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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/stock_quant.py:0
|
||||
#, python-format
|
||||
msgid " [Accounted on %s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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"
|
||||
" <small class=\"mx-2 fst-italic\">Use a negative added value to record a decrease in the product value</small>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_category_property_form
|
||||
msgid "<b>Set other input/output accounts on specific </b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_picking
|
||||
msgid "<span class=\"o_stat_text\">Valuation</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Product</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>Quantity</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_account_report_invoice_document
|
||||
msgid "<span>SN/LN</span>"
|
||||
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_quant__accounting_date
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_request_count__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_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,field_description:stock_account.field_stock_move__analytic_account_line_id
|
||||
msgid "Analytic Account Line"
|
||||
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,field_description:stock_account.field_res_config_settings__group_stock_accounting_automatic
|
||||
msgid "Automatic Stock Accounting"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__avg_cost
|
||||
msgid "Average Cost"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Choose a date to get the valuation at that date"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_quant__cost_method
|
||||
msgid "Costing Method"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_picking__country_code
|
||||
msgid "Country Code"
|
||||
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 ""
|
||||
"உருவாக்கப்பட்ட \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 ""
|
||||
|
||||
#. 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_quant__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_res_config_settings__group_lot_on_invoice
|
||||
msgid "Display Lots & Serial Numbers on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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:res.groups,name:stock_account.group_lot_on_invoice
|
||||
msgid "Display Serial & Lot Number on Invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Has Remaining Qty"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Incoming"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_location
|
||||
msgid "Inventory Locations"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.view_category_property_form_stock
|
||||
#: 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_stock_valuation_layer__account_move_line_id
|
||||
msgid "Invoice Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__price_diff_value
|
||||
msgid "Invoice value correction with invoice currency"
|
||||
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_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_terms:ir.ui.view,arch_db:stock_account.res_config_settings_view_form
|
||||
msgid "Lots & Serial numbers will appear on the invoice"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/wizard/stock_valuation_layer_revaluation.py:0
|
||||
#, python-format
|
||||
msgid "Manual Stock Valuation: %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
msgid "Moved Quantity"
|
||||
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_valuation_layer_tree
|
||||
msgid "Open Valuation Layer"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_form
|
||||
msgid "Other Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
msgid "Outgoing"
|
||||
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_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
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_inventory_valuation_search
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.fields,field_description:stock_account.field_stock_valuation_layer__product_tmpl_id
|
||||
msgid "Product Template"
|
||||
msgstr "தயாரிப்பு டெம்ப்ளேட்"
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
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__reference
|
||||
msgid "Reference"
|
||||
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
|
||||
#. odoo-python
|
||||
#: 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.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
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_quant__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:res.groups,name:stock_account.group_stock_accounting_automatic
|
||||
msgid "Stock Accounting Automatic"
|
||||
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_stock_forecasted_product_product
|
||||
msgid "Stock Replenishment Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model,name:stock_account.model_stock_request_count
|
||||
msgid "Stock Request an Inventory Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.js:0
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_action
|
||||
#: model:ir.actions.act_window,name:stock_account.stock_valuation_layer_report_action
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
#, python-format
|
||||
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_move_line__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_product_product__company_currency_id
|
||||
msgid "Technical field to correctly show the currently selected company's currency that corresponds to the totaled value of the product's valuation layers"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,help:stock_account.field_stock_picking__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#: model_terms:ir.actions.act_window,help:stock_account.stock_valuation_layer_report_action
|
||||
msgid "There are no valuation layers. Valuation layers are created when there are product moves that impact the valuation of the stock."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_report_tree
|
||||
msgid "Total Remaining Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__total_value
|
||||
#: model:ir.model.fields,field_description:stock_account.field_stock_valuation_layer__value
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quant_tree_editable_inherit
|
||||
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_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Unit Cost"
|
||||
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:ir.ui.menu,name:stock_account.menu_valuation
|
||||
#: 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.view_stock_quant_tree_editable_inherit
|
||||
msgid "Valuation"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__company_currency_id
|
||||
msgid "Valuation Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.product_product_stock_tree_inherit_stock_account
|
||||
msgid "Valuation Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.stock_valuation_layer_tree
|
||||
#: model_terms:ir.ui.view,arch_db:stock_account.view_stock_quantity_history_inherit_stock_account
|
||||
msgid "Valuation at Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/stock_account/static/src/stock_account_forecasted/forecasted_header.xml:0
|
||||
#, python-format
|
||||
msgid "Value On Hand:"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#: model:ir.model.fields,field_description:stock_account.field_product_product__value_svl
|
||||
msgid "Value Svl"
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: code:addons/stock_account/models/product.py:0
|
||||
#, python-format
|
||||
msgid "You don't have any stock input account defined on your product category. You must define one before processing this operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: stock_account
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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
|
||||
#. odoo-python
|
||||
#: 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 ""
|
1158
i18n/th.po
Normal file
1158
i18n/th.po
Normal file
File diff suppressed because it is too large
Load Diff
1168
i18n/tr.po
Normal file
1168
i18n/tr.po
Normal file
File diff suppressed because it is too large
Load Diff
1157
i18n/uk.po
Normal file
1157
i18n/uk.po
Normal file
File diff suppressed because it is too large
Load Diff
1159
i18n/vi.po
Normal file
1159
i18n/vi.po
Normal file
File diff suppressed because it is too large
Load Diff
1102
i18n/zh_CN.po
Normal file
1102
i18n/zh_CN.po
Normal file
File diff suppressed because it is too large
Load Diff
1098
i18n/zh_TW.po
Normal file
1098
i18n/zh_TW.po
Normal file
File diff suppressed because it is too large
Load Diff
14
models/__init__.py
Normal file
14
models/__init__.py
Normal file
@ -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 analytic_account
|
||||
from . import product
|
||||
from . import stock_move
|
||||
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
|
44
models/account_chart_template.py
Normal file
44
models/account_chart_template.py
Normal file
@ -0,0 +1,44 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models, _
|
||||
from odoo.addons.account.models.chart_template import template
|
||||
|
||||
|
||||
class AccountChartTemplate(models.AbstractModel):
|
||||
_inherit = "account.chart.template"
|
||||
|
||||
def _post_load_data(self, template_code, company, template_data):
|
||||
super()._post_load_data(template_code, company, template_data)
|
||||
company = company or self.env.company
|
||||
fields_name = self.env['product.category']._get_stock_account_property_field_names()
|
||||
account_fields = self.env['ir.model.fields'].search([('model', '=', 'product.category'), ('name', 'in', fields_name)])
|
||||
existing_props = self.env['ir.property'].sudo().search([
|
||||
('fields_id', 'in', account_fields.ids),
|
||||
('company_id', '=', company.id),
|
||||
('res_id', '!=', False),
|
||||
])
|
||||
for fname in fields_name:
|
||||
if fname in existing_props.mapped('fields_id.name'):
|
||||
continue
|
||||
value = template_data.get(fname)
|
||||
if value:
|
||||
self.env['ir.property']._set_default(fname, 'product.category', self.ref(value).id, company=company)
|
||||
|
||||
@template(model='account.journal')
|
||||
def _get_stock_account_journal(self, template_code):
|
||||
return {
|
||||
'inventory_valuation': {
|
||||
'name': _('Inventory Valuation'),
|
||||
'code': 'STJ',
|
||||
'type': 'general',
|
||||
'sequence': 8,
|
||||
'show_on_dashboard': False,
|
||||
},
|
||||
}
|
||||
|
||||
@template()
|
||||
def _get_stock_template_data(self, template_code):
|
||||
return {
|
||||
'property_stock_journal': 'inventory_valuation',
|
||||
}
|
293
models/account_move.py
Normal file
293
models/account_move.py
Normal file
@ -0,0 +1,293 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from odoo import fields, models, api
|
||||
from odoo.tools import float_is_zero
|
||||
|
||||
|
||||
class AccountMove(models.Model):
|
||||
_inherit = 'account.move'
|
||||
|
||||
stock_move_id = fields.Many2one('stock.move', string='Stock Move', index='btree_not_null')
|
||||
stock_valuation_layer_ids = fields.One2many('stock.valuation.layer', 'account_move_id', string='Stock Valuation Layer')
|
||||
|
||||
def _compute_show_reset_to_draft_button(self):
|
||||
super()._compute_show_reset_to_draft_button()
|
||||
for move in self:
|
||||
if move.sudo().line_ids.stock_valuation_layer_ids:
|
||||
move.show_reset_to_draft_button = False
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# OVERRIDE METHODS
|
||||
# -------------------------------------------------------------------------
|
||||
|
||||
def _get_lines_onchange_currency(self):
|
||||
# OVERRIDE
|
||||
return self.line_ids.filtered(lambda l: l.display_type != 'cogs')
|
||||
|
||||
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 line_vals[2].get('display_type') != 'cogs']
|
||||
|
||||
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.
|
||||
if not self.env.context.get('skip_cogs_reconciliation'):
|
||||
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.display_type == 'cogs').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.display_type == 'cogs').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 = []
|
||||
price_unit_prec = self.env['decimal.precision'].precision_get('Product Price')
|
||||
for move in self:
|
||||
# Make the loop multi-company safe when accessing models like product.product
|
||||
move = move.with_company(move.company_id)
|
||||
|
||||
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 not line._eligible_for_cogs():
|
||||
continue
|
||||
|
||||
# Retrieve accounts needed to generate the COGS.
|
||||
accounts = line.product_id.product_tmpl_id.get_product_accounts(fiscal_pos=move.fiscal_position_id)
|
||||
debit_interim_account = accounts['stock_output']
|
||||
credit_expense_account = accounts['expense'] or move.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()
|
||||
amount_currency = sign * line.quantity * price_unit
|
||||
|
||||
if move.currency_id.is_zero(amount_currency) or float_is_zero(price_unit, precision_digits=price_unit_prec):
|
||||
continue
|
||||
|
||||
# Add interim account line.
|
||||
lines_vals_list.append({
|
||||
'name': line.name[:64],
|
||||
'move_id': move.id,
|
||||
'partner_id': move.commercial_partner_id.id,
|
||||
'product_id': line.product_id.id,
|
||||
'product_uom_id': line.product_uom_id.id,
|
||||
'quantity': line.quantity,
|
||||
'price_unit': price_unit,
|
||||
'amount_currency': -amount_currency,
|
||||
'account_id': debit_interim_account.id,
|
||||
'display_type': 'cogs',
|
||||
'tax_ids': [],
|
||||
'cogs_origin_id': line.id,
|
||||
})
|
||||
|
||||
# Add expense account line.
|
||||
lines_vals_list.append({
|
||||
'name': line.name[:64],
|
||||
'move_id': move.id,
|
||||
'partner_id': move.commercial_partner_id.id,
|
||||
'product_id': line.product_id.id,
|
||||
'product_uom_id': line.product_uom_id.id,
|
||||
'quantity': line.quantity,
|
||||
'price_unit': -price_unit,
|
||||
'amount_currency': amount_currency,
|
||||
'account_id': credit_expense_account.id,
|
||||
'analytic_distribution': line.analytic_distribution,
|
||||
'display_type': 'cogs',
|
||||
'tax_ids': [],
|
||||
'cogs_origin_id': line.id,
|
||||
})
|
||||
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()
|
||||
# In case we return a return, we have to provide the related AMLs so all can be reconciled
|
||||
stock_moves |= stock_moves.origin_returned_move_id
|
||||
|
||||
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._get_all_related_sm(prod)
|
||||
product_account_moves |= product_stock_moves._get_all_related_aml().filtered(
|
||||
lambda line: line.account_id == product_interim_account and not line.reconciled and line.move_id.state == "posted"
|
||||
)
|
||||
|
||||
stock_aml = product_account_moves.filtered(lambda aml: aml.move_id.sudo().stock_valuation_layer_ids.stock_move_id)
|
||||
invoice_aml = product_account_moves.filtered(lambda aml: aml.move_id == move)
|
||||
correction_amls = product_account_moves - stock_aml - invoice_aml
|
||||
# Reconcile.
|
||||
if correction_amls:
|
||||
if sum(correction_amls.mapped('balance')) > 0 or all(aml.is_same_currency for aml in correction_amls):
|
||||
product_account_moves.with_context(no_exchange_difference=True).reconcile()
|
||||
else:
|
||||
(invoice_aml | correction_amls).with_context(no_exchange_difference=True).reconcile()
|
||||
(invoice_aml.filtered(lambda aml: not aml.reconciled) | stock_aml).with_context(no_exchange_difference=True).reconcile()
|
||||
else:
|
||||
product_account_moves.reconcile()
|
||||
|
||||
def _get_invoiced_lot_values(self):
|
||||
return []
|
||||
|
||||
|
||||
class AccountMoveLine(models.Model):
|
||||
_inherit = 'account.move.line'
|
||||
|
||||
stock_valuation_layer_ids = fields.One2many('stock.valuation.layer', 'account_move_line_id', string='Stock Valuation Layer')
|
||||
cogs_origin_id = fields.Many2one( # technical field used to keep track in the originating line of the anglo-saxon lines
|
||||
comodel_name="account.move.line",
|
||||
copy=False,
|
||||
index="btree_not_null",
|
||||
)
|
||||
|
||||
def _compute_account_id(self):
|
||||
super()._compute_account_id()
|
||||
input_lines = self.filtered(lambda line: (
|
||||
line._can_use_stock_accounts()
|
||||
and line.move_id.company_id.anglo_saxon_accounting
|
||||
and line.move_id.is_purchase_document()
|
||||
))
|
||||
for line in input_lines:
|
||||
line = line.with_company(line.move_id.journal_id.company_id)
|
||||
fiscal_position = line.move_id.fiscal_position_id
|
||||
accounts = line.product_id.product_tmpl_id.get_product_accounts(fiscal_pos=fiscal_position)
|
||||
if accounts['stock_input']:
|
||||
line.account_id = accounts['stock_input']
|
||||
|
||||
def _eligible_for_cogs(self):
|
||||
self.ensure_one()
|
||||
return self.product_id.type == 'product' and self.product_id.valuation == 'real_time'
|
||||
|
||||
def _get_gross_unit_price(self):
|
||||
price_unit = self.price_subtotal / self.quantity
|
||||
return -price_unit if self.move_id.move_type == 'in_refund' else price_unit
|
||||
|
||||
def _get_stock_valuation_layers(self, move):
|
||||
valued_moves = self._get_valued_in_moves()
|
||||
if move.move_type == 'in_refund':
|
||||
valued_moves = valued_moves.filtered(lambda stock_move: stock_move._is_out())
|
||||
else:
|
||||
valued_moves = valued_moves.filtered(lambda stock_move: stock_move._is_in())
|
||||
return valued_moves.stock_valuation_layer_ids
|
||||
|
||||
def _get_valued_in_moves(self):
|
||||
return self.env['stock.move']
|
||||
|
||||
def _can_use_stock_accounts(self):
|
||||
return self.product_id.type == 'product' and self.product_id.categ_id.property_valuation == 'real_time'
|
||||
|
||||
def _stock_account_get_anglo_saxon_price_unit(self):
|
||||
self.ensure_one()
|
||||
if not self.product_id:
|
||||
return self.price_unit
|
||||
original_line = self.move_id.reversed_entry_id.line_ids.filtered(
|
||||
lambda l: l.display_type == 'cogs' and l.product_id == self.product_id and
|
||||
l.product_uom_id == self.product_uom_id and l.price_unit >= 0)
|
||||
original_line = original_line and original_line[0]
|
||||
return original_line.price_unit if original_line \
|
||||
else self.product_id.with_company(self.company_id)._stock_account_get_anglo_saxon_price_unit(uom=self.product_uom_id)
|
||||
|
||||
@api.onchange('product_id')
|
||||
def _inverse_product_id(self):
|
||||
super(AccountMoveLine, self.filtered(lambda l: l.display_type != 'cogs'))._inverse_product_id()
|
111
models/analytic_account.py
Normal file
111
models/analytic_account.py
Normal file
@ -0,0 +1,111 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
from odoo.tools import float_compare, float_is_zero, float_round
|
||||
|
||||
|
||||
class AccountAnalyticPlan(models.Model):
|
||||
_inherit = 'account.analytic.plan'
|
||||
|
||||
def _calculate_distribution_amount(self, amount, percentage, total_percentage, distribution_on_each_plan):
|
||||
"""
|
||||
Ensures that the total amount distributed across all lines always adds up to exactly `amount` per
|
||||
plan. We try to correct for compounding rounding errors by assigning the exact outstanding amount when
|
||||
we detect that a line will close out a plan's total percentage. However, since multiple plans can be
|
||||
assigned to a line, with different prior distributions, there is the possible edge case that one line
|
||||
closes out two (or more) tallies with different compounding errors. This means there is no one correct
|
||||
amount that we can assign to a line that will correctly close out both all plans. This is described in
|
||||
more detail in the commit message, under "concurrent closing line edge case".
|
||||
"""
|
||||
decimal_precision = self.env['decimal.precision'].precision_get('Percentage Analytic')
|
||||
distributed_percentage, distributed_amount = distribution_on_each_plan.get(self, (0, 0))
|
||||
allocated_percentage = distributed_percentage + percentage
|
||||
if float_compare(allocated_percentage, total_percentage, precision_digits=decimal_precision) == 0:
|
||||
calculated_amount = (amount * total_percentage / 100) - distributed_amount
|
||||
else:
|
||||
calculated_amount = amount * percentage / 100
|
||||
distributed_amount += float_round(calculated_amount, precision_digits=decimal_precision)
|
||||
distribution_on_each_plan[self] = (allocated_percentage, distributed_amount)
|
||||
return calculated_amount
|
||||
|
||||
|
||||
class AccountAnalyticAccount(models.Model):
|
||||
_inherit = 'account.analytic.account'
|
||||
|
||||
def _perform_analytic_distribution(self, distribution, amount, unit_amount, lines, obj, additive=False):
|
||||
"""
|
||||
Redistributes the analytic lines to match the given distribution:
|
||||
- For account_ids where lines already exist, the amount and unit_amount of these lines get updated,
|
||||
lines where the updated amount becomes zero get unlinked.
|
||||
- For account_ids where lines don't exist yet, the line values to create them are returned,
|
||||
lines where the amount becomes zero are not included.
|
||||
|
||||
:param distribution: the desired distribution to match the analytic lines to
|
||||
:param amount: the total amount to distribute over the analytic lines
|
||||
:param unit_amount: the total unit amount (will not be distributed)
|
||||
:param lines: the (current) analytic account lines that need to be matched to the new distribution
|
||||
:param obj: the object on which _prepare_analytic_line_values(account_id, amount, unit_amount) will be
|
||||
called to get the template for the values of new analytic line objects
|
||||
:param additive: if True, the unit_amount and (distributed) amount get added to the existing lines
|
||||
|
||||
:returns: a list of dicts containing the values for new analytic lines that need to be created
|
||||
:rtype: dict
|
||||
"""
|
||||
if not distribution:
|
||||
lines.unlink()
|
||||
return []
|
||||
|
||||
# Does this: {'15': 40, '14,16': 60} -> { account(15): 40, account(14,16): 60 }
|
||||
distribution = {
|
||||
self.env['account.analytic.account'].browse(map(int, ids.split(','))).exists(): percentage
|
||||
for ids, percentage in distribution.items()
|
||||
}
|
||||
|
||||
plans = self.env['account.analytic.plan']
|
||||
plans = sum(plans._get_all_plans(), plans)
|
||||
line_columns = [p._column_name() for p in plans]
|
||||
|
||||
lines_to_link = []
|
||||
distribution_on_each_plan = {}
|
||||
total_percentages = {}
|
||||
|
||||
for accounts, percentage in distribution.items():
|
||||
for plan in accounts.root_plan_id:
|
||||
total_percentages[plan] = total_percentages.get(plan, 0) + percentage
|
||||
|
||||
for existing_aal in lines:
|
||||
# TODO: recommend something better for this line in review, please
|
||||
accounts = sum(map(existing_aal.mapped, line_columns), self.env['account.analytic.account'])
|
||||
if accounts in distribution:
|
||||
# Update the existing AAL for this account
|
||||
percentage = distribution[accounts]
|
||||
new_amount = 0
|
||||
new_unit_amount = unit_amount
|
||||
for account in accounts:
|
||||
plan = account.root_plan_id
|
||||
new_amount = plan._calculate_distribution_amount(amount, percentage, total_percentages[plan], distribution_on_each_plan)
|
||||
if additive:
|
||||
new_amount += existing_aal.amount
|
||||
new_unit_amount += existing_aal.unit_amount
|
||||
currency = accounts[0].currency_id or obj.company_id.currency_id
|
||||
if float_is_zero(new_amount, precision_rounding=currency.rounding):
|
||||
existing_aal.unlink()
|
||||
else:
|
||||
existing_aal.amount = new_amount
|
||||
existing_aal.unit_amount = new_unit_amount
|
||||
# Prevent this distribution from being applied again
|
||||
del distribution[accounts]
|
||||
else:
|
||||
# Delete the existing AAL if it is no longer present in the new distribution
|
||||
existing_aal.unlink()
|
||||
# Create new lines from remaining distributions
|
||||
for accounts, percentage in distribution.items():
|
||||
account_field_values = {}
|
||||
for account in accounts:
|
||||
new_amount = account.root_plan_id._calculate_distribution_amount(amount, percentage, total_percentages[plan], distribution_on_each_plan)
|
||||
account_field_values[account.plan_id._column_name()] = account.id
|
||||
currency = account.currency_id or obj.company_id.currency_id
|
||||
if not float_is_zero(new_amount, precision_rounding=currency.rounding):
|
||||
lines_to_link.append(obj._prepare_analytic_line_values(account_field_values, new_amount, unit_amount))
|
||||
return lines_to_link
|
857
models/product.py
Normal file
857
models/product.py
Normal file
@ -0,0 +1,857 @@
|
||||
# -*- 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, float_round, float_compare
|
||||
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)
|
||||
avg_cost = fields.Monetary(string="Average Cost", compute='_compute_value_svl', compute_sudo=True, currency_field='company_currency_id')
|
||||
total_value = fields.Monetary(string="Total Value", compute='_compute_value_svl', compute_sudo=True, currency_field='company_currency_id')
|
||||
company_currency_id = fields.Many2one(
|
||||
'res.currency', 'Valuation Currency', compute='_compute_value_svl', compute_sudo=True,
|
||||
help="Technical field to correctly show the currently selected company's currency that corresponds "
|
||||
"to the totaled value of the product's valuation layers")
|
||||
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 totals of multiple svl related values"""
|
||||
company_id = self.env.company
|
||||
self.company_currency_id = company_id.currency_id
|
||||
domain = [
|
||||
*self.env['stock.valuation.layer']._check_company_domain(company_id),
|
||||
('product_id', 'in', self.ids),
|
||||
]
|
||||
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,
|
||||
groupby=['product_id'],
|
||||
aggregates=['value:sum', 'quantity:sum'],
|
||||
)
|
||||
# Browse all products and compute products' quantities_dict in batch.
|
||||
group_mapping = {product: aggregates for product, *aggregates in groups}
|
||||
for product in self:
|
||||
value_sum, quantity_sum = group_mapping.get(product._origin, (0, 0))
|
||||
value_svl = company_id.currency_id.round(value_sum)
|
||||
avg_cost = value_svl / quantity_sum if quantity_sum else 0
|
||||
product.value_svl = value_svl
|
||||
product.quantity_svl = quantity_sum
|
||||
product.avg_cost = avg_cost
|
||||
product.total_value = avg_cost * product.sudo(False).qty_available
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# 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()
|
||||
company_id = self.env.context.get('force_company', self.env.company.id)
|
||||
company = self.env['res.company'].browse(company_id)
|
||||
value = company.currency_id.round(unit_cost * quantity)
|
||||
return {
|
||||
'product_id': self.id,
|
||||
'value': value,
|
||||
'unit_cost': unit_cost,
|
||||
'quantity': quantity,
|
||||
'remaining_qty': quantity,
|
||||
'remaining_value': value,
|
||||
}
|
||||
|
||||
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()
|
||||
company_id = self.env.context.get('force_company', self.env.company.id)
|
||||
company = self.env['res.company'].browse(company_id)
|
||||
currency = company.currency_id
|
||||
# Quantity is negative for out valuation layers.
|
||||
quantity = -1 * quantity
|
||||
vals = {
|
||||
'product_id': self.id,
|
||||
'value': currency.round(quantity * self.standard_price),
|
||||
'unit_cost': self.standard_price,
|
||||
'quantity': quantity,
|
||||
}
|
||||
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.product_tmpl_id.cost_method == 'average' and not float_is_zero(self.quantity_svl, precision_rounding=self.uom_id.rounding):
|
||||
rounding_error = currency.round(
|
||||
(self.standard_price * self.quantity_svl - self.value_svl) * abs(quantity / self.quantity_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) <= max((abs(quantity) * currency.rounding) / 2, currency.rounding):
|
||||
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.product_tmpl_id.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
|
||||
price_unit_prec = self.env['decimal.precision'].precision_get('Product Price')
|
||||
rounded_new_price = float_round(new_price, precision_digits=price_unit_prec)
|
||||
for product in self:
|
||||
if product.cost_method not in ('standard', 'average'):
|
||||
continue
|
||||
quantity_svl = product.sudo().quantity_svl
|
||||
if float_compare(quantity_svl, 0.0, precision_rounding=product.uom_id.rounding) <= 0:
|
||||
continue
|
||||
value_svl = product.sudo().value_svl
|
||||
value = company_id.currency_id.round((rounded_new_price * quantity_svl) - value_svl)
|
||||
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, rounded_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
|
||||
|
||||
# Fifo out will change the AVCO value of the product. So in case of out,
|
||||
# we recompute it base on the remaining value and quantities.
|
||||
if self.cost_method == 'fifo':
|
||||
quantity_svl = sum(candidates.mapped('remaining_qty'))
|
||||
value_svl = sum(candidates.mapped('remaining_value'))
|
||||
product = self.sudo().with_company(company.id).with_context(disable_auto_svl=True)
|
||||
if float_compare(quantity_svl, 0.0, precision_rounding=self.uom_id.rounding) > 0:
|
||||
product.standard_price = value_svl / quantity_svl
|
||||
elif candidates and not float_is_zero(qty_to_take_on_candidates, precision_rounding=self.uom_id.rounding):
|
||||
product.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
|
||||
|
||||
as_svls = []
|
||||
|
||||
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)
|
||||
|
||||
if self.valuation != 'real_time':
|
||||
continue
|
||||
as_svls.append((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 in ['average', 'fifo'] 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})
|
||||
|
||||
self.env['stock.valuation.layer'].browse(x[0].id for x in as_svls)._validate_accounting_entries()
|
||||
|
||||
for vacuum_svl, svl_to_vacuum in as_svls:
|
||||
self._create_fifo_vacuum_anglo_saxon_expense_entry(vacuum_svl, svl_to_vacuum)
|
||||
|
||||
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,
|
||||
vacuum_svl.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
|
||||
if float_compare(product.quantity_svl, 0, precision_rounding=product.uom_id.rounding) > 0:
|
||||
svsl_vals = product._prepare_out_svl_vals(product.quantity_svl, self.env.company)
|
||||
else:
|
||||
svsl_vals = product._prepare_in_svl_vals(abs(product.quantity_svl), product.value_svl / product.quantity_svl)
|
||||
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:
|
||||
if float_compare(quantity_svl, 0, precision_rounding=product.uom_id.rounding) > 0:
|
||||
svl_vals = product._prepare_in_svl_vals(quantity_svl, product.standard_price)
|
||||
else:
|
||||
svl_vals = product._prepare_out_svl_vals(abs(quantity_svl), self.env.company)
|
||||
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
|
||||
stock_input_account = product_accounts[product.id].get('stock_input')
|
||||
if not stock_input_account:
|
||||
raise UserError(_('You don\'t have any stock input 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 = stock_input_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, is_returned=False):
|
||||
"""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`
|
||||
:param is_returned: if True, consider the incoming moves
|
||||
:returns: the anglo saxon price unit
|
||||
:rtype: float
|
||||
"""
|
||||
self.ensure_one()
|
||||
if not qty_to_invoice:
|
||||
return 0
|
||||
|
||||
candidates = stock_moves\
|
||||
.sudo()\
|
||||
.filtered(lambda m: is_returned == bool(m.origin_returned_move_id and sum(m.stock_valuation_layer_ids.mapped('quantity')) >= 0))\
|
||||
.mapped('stock_valuation_layer_ids')\
|
||||
.sorted()
|
||||
|
||||
value_invoiced = self.env.context.get('value_invoiced', 0)
|
||||
if 'value_invoiced' in self.env.context:
|
||||
qty_valued, valuation = candidates._consume_all(qty_invoiced, value_invoiced, qty_to_invoice)
|
||||
else:
|
||||
qty_valued, valuation = candidates._consume_specific_qty(qty_invoiced, qty_to_invoice)
|
||||
|
||||
# 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.
|
||||
missing = qty_to_invoice - qty_valued
|
||||
for sml in stock_moves.move_line_ids:
|
||||
if not sml.owner_id or sml.owner_id == sml.company_id.partner_id:
|
||||
continue
|
||||
missing -= sml.product_uom_id._compute_quantity(sml.quantity, self.uom_id, rounding_method='HALF-UP')
|
||||
if float_compare(missing, 0, precision_rounding=self.uom_id.rounding) > 0:
|
||||
valuation += self.standard_price * missing
|
||||
|
||||
return valuation / 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,
|
||||
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="[('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="[('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="[('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.model
|
||||
def _get_stock_account_property_field_names(self):
|
||||
return [
|
||||
'property_stock_account_input_categ_id',
|
||||
'property_stock_account_output_categ_id',
|
||||
'property_stock_valuation_account_id',
|
||||
]
|
||||
|
||||
@api.constrains(lambda self: tuple(self._get_stock_account_property_field_names() + ['property_valuation']))
|
||||
def _check_valuation_accounts(self):
|
||||
fnames = self._get_stock_account_property_field_names()
|
||||
for category in self:
|
||||
# "compute" properties in constraint because ORM doesn't support computed properties
|
||||
for property_field in fnames:
|
||||
category[property_field] = category.property_valuation == 'real_time' and (
|
||||
category[property_field]
|
||||
or self.env['ir.property']._get(property_field, 'product.category')
|
||||
)
|
||||
|
||||
# Prevent to set the valuation account as the input or output account.
|
||||
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_cost(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
|
||||
|
||||
# delete in master
|
||||
@api.onchange('property_valuation')
|
||||
def onchange_property_valuation(self):
|
||||
pass
|
22
models/res_config_settings.py
Normal file
22
models/res_config_settings.py
Normal file
@ -0,0 +1,22 @@
|
||||
# -*- 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.")
|
||||
group_lot_on_invoice = fields.Boolean("Display Lots & Serial Numbers on Invoices",
|
||||
implied_group='stock_account.group_lot_on_invoice')
|
||||
group_stock_accounting_automatic = fields.Boolean(
|
||||
"Automatic Stock Accounting", implied_group="stock_account.group_stock_accounting_automatic")
|
||||
|
||||
def set_values(self):
|
||||
automatic_before = self.env.user.has_group('stock_account.group_stock_accounting_automatic')
|
||||
super().set_values()
|
||||
if automatic_before and not self.group_stock_accounting_automatic:
|
||||
self.env['product.category'].sudo().with_context(active_test=False).search([
|
||||
('property_valuation', '=', 'real_time')]).property_valuation = 'manual_periodic'
|
30
models/stock_location.py
Normal file
30
models/stock_location.py
Normal file
@ -0,0 +1,30 @@
|
||||
# -*- 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=[('account_type', 'not in', ('asset_receivable', 'liability_payable', 'asset_cash', 'liability_credit_card')), ('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=[('account_type', 'not in', ('asset_receivable', 'liability_payable', 'asset_cash', 'liability_credit_card')), ('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()
|
||||
return self.usage == 'internal' or bool(self.usage == 'transit' and self.company_id)
|
624
models/stock_move.py
Normal file
624
models/stock_move.py
Normal file
@ -0,0 +1,624 @@
|
||||
# -*- 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, float_round, float_compare, 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=True,
|
||||
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')
|
||||
analytic_account_line_ids = fields.Many2many('account.analytic.line', copy=False)
|
||||
|
||||
def _inverse_picked(self):
|
||||
super()._inverse_picked()
|
||||
self._account_analytic_entry_move()
|
||||
|
||||
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 _action_cancel(self):
|
||||
self.analytic_account_line_ids.unlink()
|
||||
return super()._action_cancel()
|
||||
|
||||
def _should_force_price_unit(self):
|
||||
self.ensure_one()
|
||||
return False
|
||||
|
||||
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:
|
||||
layers = self.origin_returned_move_id.sudo().stock_valuation_layer_ids
|
||||
# dropshipping create additional positive svl to make sure there is no impact on the stock valuation
|
||||
# We need to remove them from the computation of the price unit.
|
||||
if self.origin_returned_move_id._is_dropshipped() or self.origin_returned_move_id._is_dropshipped_returned():
|
||||
layers = layers.filtered(lambda l: float_compare(l.value, 0, precision_rounding=l.product_id.uom_id.rounding) <= 0)
|
||||
layers |= layers.stock_valuation_layer_ids
|
||||
quantity = sum(layers.mapped("quantity"))
|
||||
return sum(layers.mapped("value")) / quantity if not float_is_zero(quantity, precision_rounding=layers.uom_id.rounding) else 0
|
||||
return price_unit if not float_is_zero(price_unit, precision) or self._should_force_price_unit() else 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 not move_line.picked:
|
||||
continue
|
||||
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() and not self._is_dropshipped_returned():
|
||||
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 not move_line.picked:
|
||||
continue
|
||||
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() and not self._is_dropshipped():
|
||||
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 = self._get_in_svl_vals(forced_quantity)
|
||||
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.quantity, 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.quantity, 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 if it does not come from a valued location (eg subcontract -> customer)
|
||||
if not move.location_id._should_be_valued():
|
||||
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 if it does not go to a valued location (eg customer -> subcontract)
|
||||
if not move.location_dest_id._should_be_valued():
|
||||
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, precision_rounding=move.product_uom.rounding):
|
||||
continue
|
||||
if not any(move.move_line_ids.mapped('picked')):
|
||||
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 deleted some exploded stock moves
|
||||
valued_moves = {value_type: moves.exists() for value_type, moves in valued_moves.items()}
|
||||
|
||||
# '_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)()
|
||||
|
||||
stock_valuation_layers._validate_accounting_entries()
|
||||
stock_valuation_layers._validate_analytic_accounting_entries()
|
||||
|
||||
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:
|
||||
if not move._is_in():
|
||||
continue
|
||||
if move.with_company(move.company_id).product_id.cost_method == 'standard':
|
||||
continue
|
||||
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()
|
||||
quantity = 0
|
||||
for valued_move_line in valued_move_lines:
|
||||
quantity += valued_move_line.product_uom_id._compute_quantity(valued_move_line.quantity, move.product_id.uom_id)
|
||||
|
||||
qty = forced_qty or quantity
|
||||
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] += quantity
|
||||
# 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
|
||||
|
||||
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_in_svl_vals(self, forced_quantity):
|
||||
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.quantity, move.product_id.uom_id)
|
||||
unit_cost = move.product_id.standard_price
|
||||
if move.product_id.cost_method != 'standard':
|
||||
unit_cost = abs(move._get_price_unit()) # May be negative (i.e. decrease an out move).
|
||||
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 svl_vals_list
|
||||
|
||||
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):
|
||||
if not self.location_dest_id.usage in ('production', 'inventory'):
|
||||
return accounts_data['stock_output'].id
|
||||
else:
|
||||
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, svl_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, svl_id, description).values()]
|
||||
|
||||
return res
|
||||
|
||||
def _prepare_analytic_lines(self):
|
||||
self.ensure_one()
|
||||
if not self._get_analytic_distribution() and not self.analytic_account_line_ids:
|
||||
return False
|
||||
|
||||
if self.state in ['cancel', 'draft']:
|
||||
return False
|
||||
|
||||
amount, unit_amount = 0, 0
|
||||
if self.state != 'done':
|
||||
if self.picked:
|
||||
unit_amount = self.product_uom._compute_quantity(
|
||||
self.quantity, self.product_id.uom_id)
|
||||
# Falsy in FIFO but since it's an estimation we don't require exact correct cost. Otherwise
|
||||
# we would have to recompute all the analytic estimation at each out.
|
||||
amount = - unit_amount * self.product_id.standard_price
|
||||
elif self.product_id.valuation == 'real_time' and not self._ignore_automatic_valuation():
|
||||
accounts_data = self.product_id.product_tmpl_id.get_product_accounts()
|
||||
account_valuation = accounts_data.get('stock_valuation', False)
|
||||
analytic_line_vals = self.stock_valuation_layer_ids.account_move_id.line_ids.filtered(
|
||||
lambda l: l.account_id == account_valuation)._prepare_analytic_lines()
|
||||
amount = - sum(sum(vals['amount'] for vals in lists) for lists in analytic_line_vals)
|
||||
unit_amount = - sum(sum(vals['unit_amount'] for vals in lists) for lists in analytic_line_vals)
|
||||
elif sum(self.stock_valuation_layer_ids.mapped('quantity')):
|
||||
amount = sum(self.stock_valuation_layer_ids.mapped('value'))
|
||||
unit_amount = - sum(self.stock_valuation_layer_ids.mapped('quantity'))
|
||||
|
||||
if self.analytic_account_line_ids and amount == 0 and unit_amount == 0:
|
||||
self.analytic_account_line_ids.unlink()
|
||||
return False
|
||||
|
||||
return self.env['account.analytic.account']._perform_analytic_distribution(
|
||||
self._get_analytic_distribution(), amount, unit_amount, self.analytic_account_line_ids, self)
|
||||
|
||||
def _ignore_automatic_valuation(self):
|
||||
return False
|
||||
|
||||
def _prepare_analytic_line_values(self, account_field_values, amount, unit_amount):
|
||||
self.ensure_one()
|
||||
return {
|
||||
'name': self.name,
|
||||
'amount': amount,
|
||||
**account_field_values,
|
||||
'unit_amount': unit_amount,
|
||||
'product_id': self.product_id.id,
|
||||
'product_uom_id': self.product_id.uom_id.id,
|
||||
'company_id': self.company_id.id,
|
||||
'ref': self._description,
|
||||
'category': 'other',
|
||||
}
|
||||
|
||||
def _generate_valuation_lines_data(self, partner_id, qty, debit_value, credit_value, debit_account_id, credit_account_id, svl_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()
|
||||
|
||||
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,
|
||||
}
|
||||
|
||||
svl = self.env['stock.valuation.layer'].browse(svl_id)
|
||||
if svl.account_move_line_id.analytic_distribution:
|
||||
line_vals['analytic_distribution'] = svl.account_move_line_id.analytic_distribution
|
||||
|
||||
rslt = {
|
||||
'credit_line_vals': {
|
||||
**line_vals,
|
||||
'balance': -credit_value,
|
||||
'account_id': credit_account_id,
|
||||
},
|
||||
'debit_line_vals': {
|
||||
**line_vals,
|
||||
'balance': debit_value,
|
||||
'account_id': debit_account_id,
|
||||
},
|
||||
}
|
||||
|
||||
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.env.context.get('price_diff_account')
|
||||
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,
|
||||
'balance': -diff_amount,
|
||||
'ref': description,
|
||||
'partner_id': partner_id,
|
||||
'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 _prepare_account_move_vals(self, credit_account_id, debit_account_id, journal_id, qty, description, svl_id, cost):
|
||||
self.ensure_one()
|
||||
valuation_partner_id = self._get_partner_id_for_valuation_lines()
|
||||
move_ids = self._prepare_account_move_line(qty, cost, credit_account_id, debit_account_id, svl_id, description)
|
||||
svl = self.env['stock.valuation.layer'].browse(svl_id)
|
||||
if self.env.context.get('force_period_date'):
|
||||
date = self.env.context.get('force_period_date')
|
||||
elif svl.account_move_line_id:
|
||||
date = svl.account_move_line_id.date
|
||||
else:
|
||||
date = fields.Date.context_today(self)
|
||||
return {
|
||||
'journal_id': journal_id,
|
||||
'line_ids': move_ids,
|
||||
'partner_id': valuation_partner_id,
|
||||
'date': date,
|
||||
'ref': description,
|
||||
'stock_move_id': self.id,
|
||||
'stock_valuation_layer_ids': [(6, None, [svl_id])],
|
||||
'move_type': 'entry',
|
||||
'is_storno': self.env.context.get('is_returned') and self.env.company.account_storno,
|
||||
}
|
||||
|
||||
def _account_analytic_entry_move(self):
|
||||
for move in self:
|
||||
analytic_line_vals = move._prepare_analytic_lines()
|
||||
if analytic_line_vals:
|
||||
move.analytic_account_line_ids += self.env['account.analytic.line'].sudo().create(analytic_line_vals)
|
||||
|
||||
def _account_entry_move(self, qty, description, svl_id, cost):
|
||||
""" Accounting Valuation Entries """
|
||||
self.ensure_one()
|
||||
am_vals = []
|
||||
if self.product_id.type != 'product':
|
||||
# no stock valuation for consumable products
|
||||
return am_vals
|
||||
if self.restrict_partner_id and self.restrict_partner_id != self.company_id.partner_id:
|
||||
# if the move isn't owned by the company, we don't make any valuation
|
||||
return am_vals
|
||||
|
||||
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'):
|
||||
am_vals.append(self.with_company(company_to).with_context(is_returned=True)._prepare_account_move_vals(acc_dest, acc_valuation, journal_id, qty, description, svl_id, cost))
|
||||
else:
|
||||
am_vals.append(self.with_company(company_to)._prepare_account_move_vals(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'):
|
||||
am_vals.append(self.with_company(company_from).with_context(is_returned=True)._prepare_account_move_vals(acc_valuation, acc_src, journal_id, qty, description, svl_id, cost))
|
||||
else:
|
||||
am_vals.append(self.with_company(company_from)._prepare_account_move_vals(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:
|
||||
am_vals.append(self.with_company(self.company_id)._prepare_account_move_vals(acc_src, acc_valuation, journal_id, qty, description, svl_id, cost))
|
||||
else:
|
||||
cost = -1 * cost
|
||||
am_vals.append(self.with_company(self.company_id)._prepare_account_move_vals(acc_valuation, acc_dest, journal_id, qty, description, svl_id, cost))
|
||||
elif self._is_dropshipped_returned():
|
||||
if cost > 0 and self.location_dest_id._should_be_valued():
|
||||
am_vals.append(self.with_company(self.company_id).with_context(is_returned=True)._prepare_account_move_vals(acc_valuation, acc_src, journal_id, qty, description, svl_id, cost))
|
||||
elif cost > 0:
|
||||
am_vals.append(self.with_company(self.company_id).with_context(is_returned=True)._prepare_account_move_vals(acc_dest, acc_valuation, journal_id, qty, description, svl_id, cost))
|
||||
else:
|
||||
cost = -1 * cost
|
||||
am_vals.append(self.with_company(self.company_id).with_context(is_returned=True)._prepare_account_move_vals(acc_valuation, acc_src, journal_id, qty, description, svl_id, cost))
|
||||
|
||||
return am_vals
|
||||
|
||||
def _get_analytic_distribution(self):
|
||||
return False
|
||||
|
||||
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
|
||||
|
||||
def _get_all_related_aml(self):
|
||||
return self.account_move_ids.line_ids
|
||||
|
||||
def _get_all_related_sm(self, product):
|
||||
return self.filtered(lambda m: m.product_id == product)
|
80
models/stock_move_line.py
Normal file
80
models/stock_move_line.py
Normal file
@ -0,0 +1,80 @@
|
||||
# -*- 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_compare, float_is_zero
|
||||
|
||||
|
||||
class StockMoveLine(models.Model):
|
||||
_inherit = 'stock.move.line'
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# CRUD
|
||||
# -------------------------------------------------------------------------
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
analytic_move_to_recompute = set()
|
||||
move_lines = super(StockMoveLine, self).create(vals_list)
|
||||
for move_line in move_lines:
|
||||
move = move_line.move_id
|
||||
analytic_move_to_recompute.add(move.id)
|
||||
if move_line.state != 'done':
|
||||
continue
|
||||
rounding = move.product_id.uom_id.rounding
|
||||
diff = move.product_uom._compute_quantity(move_line.quantity, move.product_id.uom_id)
|
||||
if float_is_zero(diff, precision_rounding=rounding):
|
||||
continue
|
||||
self._create_correction_svl(move, diff)
|
||||
if analytic_move_to_recompute:
|
||||
self.env['stock.move'].browse(
|
||||
analytic_move_to_recompute)._account_analytic_entry_move()
|
||||
return move_lines
|
||||
|
||||
def write(self, vals):
|
||||
analytic_move_to_recompute = set()
|
||||
if 'quantity' in vals or 'move_id' in vals:
|
||||
for move_line in self:
|
||||
move_id = vals.get('move_id', move_line.move_id.id)
|
||||
analytic_move_to_recompute.add(move_id)
|
||||
if 'quantity' in vals:
|
||||
for move_line in self:
|
||||
if move_line.state != 'done':
|
||||
continue
|
||||
move = move_line.move_id
|
||||
if float_compare(vals['quantity'], move_line.quantity, precision_rounding=move.product_uom.rounding) == 0:
|
||||
continue
|
||||
rounding = move.product_id.uom_id.rounding
|
||||
diff = move.product_uom._compute_quantity(vals['quantity'] - move_line.quantity, move.product_id.uom_id, rounding_method='HALF-UP')
|
||||
if float_is_zero(diff, precision_rounding=rounding):
|
||||
continue
|
||||
self._create_correction_svl(move, diff)
|
||||
res = super(StockMoveLine, self).write(vals)
|
||||
if analytic_move_to_recompute:
|
||||
self.env['stock.move'].browse(analytic_move_to_recompute)._account_analytic_entry_move()
|
||||
return res
|
||||
|
||||
def unlink(self):
|
||||
analytic_move_to_recompute = self.move_id
|
||||
res = super().unlink()
|
||||
analytic_move_to_recompute._account_analytic_entry_move()
|
||||
return res
|
||||
|
||||
# -------------------------------------------------------------------------
|
||||
# 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))
|
||||
|
||||
stock_valuation_layers._validate_accounting_entries()
|
22
models/stock_picking.py
Normal file
22
models/stock_picking.py
Normal file
@ -0,0 +1,22 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from ast import literal_eval
|
||||
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class StockPicking(models.Model):
|
||||
_inherit = 'stock.picking'
|
||||
|
||||
country_code = fields.Char(related="company_id.account_fiscal_country_id.code")
|
||||
|
||||
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_ids + scraps.move_ids).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)
|
92
models/stock_quant.py
Normal file
92
models/stock_quant.py
Normal file
@ -0,0 +1,92 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import itertools
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.tools.float_utils import float_is_zero
|
||||
from odoo.tools.misc import groupby
|
||||
|
||||
|
||||
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')
|
||||
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.")
|
||||
cost_method = fields.Selection(related="product_categ_id.property_cost_method")
|
||||
|
||||
@api.depends('company_id', 'location_id', 'owner_id', 'product_id', 'quantity')
|
||||
def _compute_value(self):
|
||||
""" (Product.value_svl / Product.quantity_svl) * quant.quantity, i.e. average unit cost * on hand qty
|
||||
"""
|
||||
for quant in self:
|
||||
quant.currency_id = quant.company_id.currency_id
|
||||
if not quant.location_id or not quant.product_id or\
|
||||
not quant.location_id._should_be_valued() or\
|
||||
(quant.owner_id and quant.owner_id != quant.company_id.partner_id) or\
|
||||
float_is_zero(quant.quantity, precision_rounding=quant.product_id.uom_id.rounding):
|
||||
quant.value = 0
|
||||
continue
|
||||
quantity = quant.product_id.with_company(quant.company_id).quantity_svl
|
||||
if float_is_zero(quantity, precision_rounding=quant.product_id.uom_id.rounding):
|
||||
quant.value = 0.0
|
||||
continue
|
||||
quant.value = quant.quantity * quant.product_id.with_company(quant.company_id).value_svl / quantity
|
||||
|
||||
@api.model
|
||||
def _read_group(self, domain, groupby=(), aggregates=(), having=(), offset=0, limit=None, order=None):
|
||||
""" 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.
|
||||
"""
|
||||
SPECIAL = {'value:sum'}
|
||||
if SPECIAL.isdisjoint(aggregates):
|
||||
return super()._read_group(domain, groupby, aggregates, having, offset, limit, order)
|
||||
|
||||
base_aggregates = [*(agg for agg in aggregates if agg not in SPECIAL), 'id:recordset']
|
||||
base_result = super()._read_group(domain, groupby, base_aggregates, having, offset, limit, order)
|
||||
|
||||
# base_result = [(a1, b1, records), (a2, b2, records), ...]
|
||||
result = []
|
||||
for *other, records in base_result:
|
||||
for index, spec in enumerate(itertools.chain(groupby, aggregates)):
|
||||
if spec in SPECIAL:
|
||||
field_name = spec.split(':')[0]
|
||||
other.insert(index, sum(records.mapped(field_name)))
|
||||
result.append(tuple(other))
|
||||
|
||||
return result
|
||||
|
||||
@api.model
|
||||
def read_group(self, domain, fields, *args, **kwargs):
|
||||
if 'value' in fields:
|
||||
fields = ['value:sum' if f == 'value' else f for f in fields]
|
||||
return super().read_group(domain, fields, *args, **kwargs)
|
||||
|
||||
def _apply_inventory(self):
|
||||
for accounting_date, inventory_ids in groupby(self, key=lambda q: q.accounting_date):
|
||||
inventories = self.env['stock.quant'].concat(*inventory_ids)
|
||||
if accounting_date:
|
||||
super(StockQuant, inventories.with_context(force_period_date=accounting_date))._apply_inventory()
|
||||
inventories.accounting_date = False
|
||||
else:
|
||||
super(StockQuant, inventories)._apply_inventory()
|
||||
|
||||
def _get_inventory_move_values(self, qty, location_id, location_dest_id, package_id=False, package_dest_id=False):
|
||||
res_move = super()._get_inventory_move_values(qty, location_id, location_dest_id, package_id, package_dest_id)
|
||||
if not self.env.context.get('inventory_name'):
|
||||
force_period_date = self.env.context.get('force_period_date', False)
|
||||
if force_period_date:
|
||||
res_move['name'] += _(' [Accounted on %s]', force_period_date)
|
||||
return res_move
|
||||
|
||||
@api.model
|
||||
def _get_inventory_fields_write(self):
|
||||
""" Returns a list of fields user can edit when editing a quant in `inventory_mode`."""
|
||||
res = super()._get_inventory_fields_write()
|
||||
res += ['accounting_date']
|
||||
return res
|
204
models/stock_valuation_layer.py
Normal file
204
models/stock_valuation_layer.py
Normal file
@ -0,0 +1,204 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models, tools
|
||||
from odoo.tools import float_compare, float_is_zero
|
||||
|
||||
|
||||
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, auto_join=True)
|
||||
categ_id = fields.Many2one('product.category', related='product_id.categ_id', store=True)
|
||||
product_tmpl_id = fields.Many2one('product.template', related='product_id.product_tmpl_id')
|
||||
quantity = fields.Float('Quantity', readonly=True, digits='Product Unit of Measure')
|
||||
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.Float('Unit Value', digits='Product Price', readonly=True, group_operator=None)
|
||||
value = fields.Monetary('Total Value', readonly=True)
|
||||
remaining_qty = fields.Float(readonly=True, digits='Product Unit of Measure')
|
||||
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, index=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, index="btree_not_null")
|
||||
account_move_line_id = fields.Many2one('account.move.line', 'Invoice Line', readonly=True, check_company=True, index="btree_not_null")
|
||||
reference = fields.Char(related='stock_move_id.reference')
|
||||
price_diff_value = fields.Float('Invoice value correction with invoice currency')
|
||||
warehouse_id = fields.Many2one('stock.warehouse', string="Receipt WH", compute='_compute_warehouse_id', search='_search_warehouse_id')
|
||||
|
||||
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']
|
||||
)
|
||||
|
||||
def _compute_warehouse_id(self):
|
||||
for svl in self:
|
||||
if svl.stock_move_id.location_id.usage == "internal":
|
||||
svl.warehouse_id = svl.stock_move_id.location_id.warehouse_id.id
|
||||
else:
|
||||
svl.warehouse_id = svl.stock_move_id.location_dest_id.warehouse_id.id
|
||||
|
||||
def _search_warehouse_id(self, operator, value):
|
||||
layer_ids = self.search([
|
||||
'|',
|
||||
('stock_move_id.location_dest_id.warehouse_id', operator, value),
|
||||
'&',
|
||||
('stock_move_id.location_id.usage', '=', 'internal'),
|
||||
('stock_move_id.location_id.warehouse_id', operator, value),
|
||||
]).ids
|
||||
return [('id', 'in', layer_ids)]
|
||||
|
||||
def _validate_accounting_entries(self):
|
||||
am_vals = []
|
||||
for svl in self:
|
||||
if not svl.with_company(svl.company_id).product_id.valuation == 'real_time':
|
||||
continue
|
||||
if svl.currency_id.is_zero(svl.value):
|
||||
continue
|
||||
move = svl.stock_move_id
|
||||
if not move:
|
||||
move = svl.stock_valuation_layer_id.stock_move_id
|
||||
am_vals += move.with_company(svl.company_id)._account_entry_move(svl.quantity, svl.description, svl.id, svl.value)
|
||||
if am_vals:
|
||||
account_moves = self.env['account.move'].sudo().create(am_vals)
|
||||
account_moves._post()
|
||||
for svl in self:
|
||||
# Eventually reconcile together the invoice and valuation accounting entries on the stock interim accounts
|
||||
if svl.company_id.anglo_saxon_accounting:
|
||||
svl.stock_move_id._get_related_invoices()._stock_account_anglo_saxon_reconcile_valuation(product=svl.product_id)
|
||||
|
||||
def _validate_analytic_accounting_entries(self):
|
||||
for svl in self:
|
||||
svl.stock_move_id._account_analytic_entry_move()
|
||||
|
||||
# TODO: delete in master, no longer in use
|
||||
def action_open_layer(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
'res_model': self._name,
|
||||
'type': 'ir.actions.act_window',
|
||||
'views': [[False, "form"]],
|
||||
'res_id': self.id,
|
||||
}
|
||||
|
||||
def action_open_journal_entry(self):
|
||||
self.ensure_one()
|
||||
if not self.account_move_id:
|
||||
return
|
||||
return {
|
||||
'type': 'ir.actions.act_window',
|
||||
'view_mode': 'form',
|
||||
'res_model': 'account.move',
|
||||
'res_id': self.account_move_id.id
|
||||
}
|
||||
|
||||
def action_valuation_at_date(self):
|
||||
# Handler called when the user clicked on the 'Valuation at Date' button.
|
||||
# Opens wizard to display, at choice, the products inventory or a computed
|
||||
# inventory at a given date.
|
||||
context = {}
|
||||
if ("default_product_id" in self.env.context):
|
||||
context["product_id"] = self.env.context["default_product_id"]
|
||||
elif ("default_product_tmpl_id" in self.env.context):
|
||||
context["product_tmpl_id"] = self.env.context["default_product_tmpl_id"]
|
||||
|
||||
return {
|
||||
"res_model": "stock.quantity.history",
|
||||
"views": [[False, "form"]],
|
||||
"target": "new",
|
||||
"type": "ir.actions.act_window",
|
||||
"context": context,
|
||||
}
|
||||
|
||||
def action_open_reference(self):
|
||||
self.ensure_one()
|
||||
if self.stock_move_id:
|
||||
action = self.stock_move_id.action_open_reference()
|
||||
if action['res_model'] != 'stock.move':
|
||||
return action
|
||||
return {
|
||||
'res_model': self._name,
|
||||
'type': 'ir.actions.act_window',
|
||||
'views': [[False, "form"]],
|
||||
'res_id': self.id,
|
||||
}
|
||||
|
||||
def _consume_specific_qty(self, qty_valued, qty_to_value):
|
||||
"""
|
||||
Iterate on the SVL to first skip the qty already valued. Then, keep
|
||||
iterating to consume `qty_to_value` and stop
|
||||
The method returns the valued quantity and its valuation
|
||||
"""
|
||||
if not self:
|
||||
return 0, 0
|
||||
|
||||
rounding = self.product_id.uom_id.rounding
|
||||
qty_to_take_on_candidates = qty_to_value
|
||||
tmp_value = 0 # to accumulate the value taken on the candidates
|
||||
for candidate in self:
|
||||
if float_is_zero(candidate.quantity, precision_rounding=rounding):
|
||||
continue
|
||||
candidate_quantity = abs(candidate.quantity)
|
||||
returned_qty = sum([sm.product_uom._compute_quantity(sm.quantity, self.uom_id)
|
||||
for sm in candidate.stock_move_id.returned_move_ids if sm.state == 'done'])
|
||||
candidate_quantity -= returned_qty
|
||||
if float_is_zero(candidate_quantity, precision_rounding=rounding):
|
||||
continue
|
||||
if not float_is_zero(qty_valued, precision_rounding=rounding):
|
||||
qty_ignored = min(qty_valued, candidate_quantity)
|
||||
qty_valued -= qty_ignored
|
||||
candidate_quantity -= qty_ignored
|
||||
if float_is_zero(candidate_quantity, precision_rounding=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=rounding):
|
||||
break
|
||||
|
||||
return qty_to_value - qty_to_take_on_candidates, tmp_value
|
||||
|
||||
def _consume_all(self, qty_valued, valued, qty_to_value):
|
||||
"""
|
||||
The method consumes all svl to get the total qty/value. Then it deducts
|
||||
the already consumed qty/value. Finally, it tries to consume the `qty_to_value`
|
||||
The method returns the valued quantity and its valuation
|
||||
"""
|
||||
if not self:
|
||||
return 0, 0
|
||||
|
||||
rounding = self.product_id.uom_id.rounding
|
||||
qty_total = -qty_valued
|
||||
value_total = -valued
|
||||
new_valued_qty = 0
|
||||
new_valuation = 0
|
||||
|
||||
for svl in self:
|
||||
if float_is_zero(svl.quantity, precision_rounding=rounding):
|
||||
continue
|
||||
relevant_qty = abs(svl.quantity)
|
||||
returned_qty = sum([sm.product_uom._compute_quantity(sm.quantity, self.uom_id)
|
||||
for sm in svl.stock_move_id.returned_move_ids if sm.state == 'done'])
|
||||
relevant_qty -= returned_qty
|
||||
if float_is_zero(relevant_qty, precision_rounding=rounding):
|
||||
continue
|
||||
qty_total += relevant_qty
|
||||
value_total += relevant_qty * ((svl.value + sum(svl.stock_valuation_layer_ids.mapped('value'))) / svl.quantity)
|
||||
|
||||
if float_compare(qty_total, 0, precision_rounding=rounding) > 0:
|
||||
unit_cost = value_total / qty_total
|
||||
new_valued_qty = min(qty_total, qty_to_value)
|
||||
new_valuation = unit_cost * new_valued_qty
|
||||
|
||||
return new_valued_qty, new_valuation
|
4
report/__init__.py
Normal file
4
report/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import stock_forecasted
|
10
report/account_invoice_report_view.xml
Normal file
10
report/account_invoice_report_view.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="filter_invoice_inventory_valuation" model="ir.filters">
|
||||
<field name="name">Inventory Valuation</field>
|
||||
<field name="model_id">account.invoice.report</field>
|
||||
<field name="domain">[('product_id.type', '=', 'product')]</field>
|
||||
<field name="user_id" eval="False"/>
|
||||
<field name="context">{'group_by': ['product_id'], 'pivot_column_groupby': ['invoice_date:month'], 'pivot_measures': ['inventory_value'], 'graph_measure': 'inventory_value'}</field>
|
||||
</record>
|
||||
</odoo>
|
41
report/stock_forecasted.py
Normal file
41
report/stock_forecasted.py
Normal file
@ -0,0 +1,41 @@
|
||||
# -*- 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 StockForecasted(models.AbstractModel):
|
||||
_inherit = 'stock.forecasted_product_product'
|
||||
|
||||
def _get_report_header(self, product_template_ids, product_ids, wh_location_ids):
|
||||
""" Overrides to computes the valuations of the stock. """
|
||||
res = super()._get_report_header(product_template_ids, product_ids, wh_location_ids)
|
||||
if not self.user_has_groups('stock.group_stock_manager'):
|
||||
return res
|
||||
domain = self._product_domain(product_template_ids, product_ids)
|
||||
company = self.env['stock.location'].browse(wh_location_ids[0]).company_id
|
||||
svl = self.env['stock.valuation.layer'].search(domain + [('company_id', '=', company.id)])
|
||||
domain_quants = [
|
||||
('company_id', '=', company.id),
|
||||
('location_id', 'in', wh_location_ids)
|
||||
]
|
||||
if product_template_ids:
|
||||
domain_quants += [('product_id.product_tmpl_id', 'in', product_template_ids)]
|
||||
else:
|
||||
domain_quants += [('product_id', 'in', product_ids)]
|
||||
quants = self.env['stock.quant'].search(domain_quants)
|
||||
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):
|
||||
value = sum(svl.mapped('value')) * (sum(quants.mapped('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
|
9
security/ir.model.access.csv
Normal file
9
security/ir.model.access.csv
Normal file
@ -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
|
|
20
security/stock_account_security.xml
Normal file
20
security/stock_account_security.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record model="ir.rule" id="stock_valuation_layer_company_rule">
|
||||
<field name="name">Stock Valuation Layer Multicompany</field>
|
||||
<field name="model_id" search="[('model','=','stock.valuation.layer')]" model="ir.model"/>
|
||||
<field name="domain_force">[('company_id', 'in', company_ids)]</field>
|
||||
</record>
|
||||
|
||||
<record id="group_lot_on_invoice" model="res.groups">
|
||||
<field name="name">Display Serial & Lot Number on Invoices</field>
|
||||
<field name="category_id" ref="base.module_category_hidden"/>
|
||||
</record>
|
||||
|
||||
<record id="group_stock_accounting_automatic" model="res.groups">
|
||||
<field name="name">Stock Accounting Automatic</field>
|
||||
<field name="category_id" ref="base.module_category_hidden"/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
25
static/src/stock_account_forecasted/forecasted_header.js
Normal file
25
static/src/stock_account_forecasted/forecasted_header.js
Normal file
@ -0,0 +1,25 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import { patch } from "@web/core/utils/patch";
|
||||
|
||||
import { ForecastedHeader as Parent } from "@stock/stock_forecasted/forecasted_header";
|
||||
|
||||
export class StockAccountForecastedHeader extends Parent{}
|
||||
|
||||
patch(Parent.prototype, {
|
||||
async _onClickValuation() {
|
||||
const context = this._getActionContext();
|
||||
return this.action.doAction({
|
||||
name: _t('Stock Valuation'),
|
||||
res_model: 'stock.valuation.layer',
|
||||
type: 'ir.actions.act_window',
|
||||
view_mode: 'list,form',
|
||||
views: [[false, 'list'], [false, 'form']],
|
||||
target: 'current',
|
||||
context: context,
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
StockAccountForecastedHeader.template = 'stock_account.ForecastedHeader';
|
13
static/src/stock_account_forecasted/forecasted_header.xml
Normal file
13
static/src/stock_account_forecasted/forecasted_header.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<templates id="template">
|
||||
<t name="stock_account.ForecastedHeader" t-inherit="stock.ForecastedHeader" t-inherit-mode="extension">
|
||||
<xpath expr="//h6[@name='product_variants']" position="after">
|
||||
<h6 t-if="() => env.user.has_group('stock.group_stock_manager')">
|
||||
Value On Hand:
|
||||
<a href="#"
|
||||
t-out="props.docs.value"
|
||||
t-on-click.prevent="_onClickValuation"/>
|
||||
</h6>
|
||||
</xpath>
|
||||
</t>
|
||||
</templates>
|
5
tests/__init__.py
Normal file
5
tests/__init__.py
Normal file
@ -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
|
234
tests/test_account_move.py
Normal file
234
tests/test_account_move.py
Normal file
@ -0,0 +1,234 @@
|
||||
# -*- 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
|
||||
from odoo import fields
|
||||
|
||||
class TestAccountMoveStockCommon(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)
|
||||
|
||||
# `all_categ` should not be altered, so we can test the `post_init` hook of `stock_account`
|
||||
cls.all_categ = cls.env.ref('product.product_category_all')
|
||||
|
||||
cls.auto_categ = cls.env['product.category'].create({
|
||||
'name': 'child_category',
|
||||
'parent_id': cls.all_categ.id,
|
||||
"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",
|
||||
})
|
||||
cls.product_A = cls.env["product.product"].create(
|
||||
{
|
||||
"name": "Product A",
|
||||
"type": "product",
|
||||
"default_code": "prda",
|
||||
"categ_id": cls.auto_categ.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,
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
@tagged("post_install", "-at_install")
|
||||
class TestAccountMove(TestAccountMoveStockCommon):
|
||||
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.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(lambda l: l.display_type == 'cogs')), 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.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(lambda l: l.display_type == 'cogs')), 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.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(lambda l: l.display_type == 'cogs')), 2)
|
||||
self.assertEqual(len(invoice.mapped("line_ids.currency_id")), 2)
|
||||
|
||||
def test_storno_accounting(self):
|
||||
"""Storno accounting uses negative numbers on debit/credit to cancel other moves.
|
||||
This test checks that we do the same for the anglosaxon lines when storno is enabled.
|
||||
"""
|
||||
self.env.company.account_storno = True
|
||||
self.env.company.anglo_saxon_accounting = True
|
||||
|
||||
move = self.env['account.move'].create({
|
||||
'move_type': 'out_refund',
|
||||
'invoice_date': fields.Date.from_string('2019-01-01'),
|
||||
'partner_id': self.partner_a.id,
|
||||
'currency_id': self.currency_data['currency'].id,
|
||||
'invoice_line_ids': [
|
||||
(0, None, {'product_id': self.product_A.id}),
|
||||
]
|
||||
})
|
||||
move.action_post()
|
||||
|
||||
stock_output_line = move.line_ids.filtered(lambda l: l.account_id == self.stock_output_account)
|
||||
self.assertEqual(stock_output_line.debit, 0)
|
||||
self.assertEqual(stock_output_line.credit, -10)
|
||||
|
||||
expense_line = move.line_ids.filtered(lambda l: l.account_id == self.product_A.property_account_expense_id)
|
||||
self.assertEqual(expense_line.debit, -10)
|
||||
self.assertEqual(expense_line.credit, 0)
|
||||
|
||||
def test_standard_manual_tax_edit(self):
|
||||
''' Test manually editing tax amount, cogs creation should not reset tax amount '''
|
||||
move_form = Form(self.env["account.move"].with_context(default_move_type="out_invoice"))
|
||||
move_form.partner_id = self.partner_a
|
||||
self.company_data["default_account_revenue"].write({
|
||||
'tax_ids': [(6, 0, [self.env.company.account_sale_tax_id.id])]
|
||||
})
|
||||
with move_form.invoice_line_ids.new() as line_form:
|
||||
line_form.product_id = self.product_A
|
||||
invoice = move_form.save()
|
||||
|
||||
self.assertEqual(invoice.amount_total, 115)
|
||||
self.assertEqual(invoice.amount_untaxed, 100)
|
||||
self.assertEqual(invoice.amount_tax, 15)
|
||||
|
||||
# simulate manual tax edit via widget
|
||||
vals = {
|
||||
'tax_totals': {
|
||||
'amount_untaxed': 100,
|
||||
'amount_total': 114,
|
||||
'formatted_amount_total': '$\xa0114.00',
|
||||
'formatted_amount_untaxed': '$\xa0100.00',
|
||||
'groups_by_subtotal': {
|
||||
'Untaxed Amount': [{
|
||||
'group_key': 2,
|
||||
'tax_group_id': invoice.invoice_line_ids.tax_ids.tax_group_id.id,
|
||||
'tax_group_name': 'Tax 15%',
|
||||
'tax_group_amount': 14,
|
||||
'tax_group_base_amount': 100,
|
||||
'formatted_tax_group_amount': '$\xa014.00',
|
||||
'formatted_tax_group_base_amount': '$\xa0100.00'
|
||||
}]
|
||||
},
|
||||
'subtotals': [{
|
||||
'name': 'Untaxed Amount',
|
||||
'amount': 100,
|
||||
'formatted_amount': '$\xa0100.00'
|
||||
}],
|
||||
'subtotals_order': ['Untaxed Amount'],
|
||||
'display_tax_base': False,
|
||||
}
|
||||
}
|
||||
invoice.write(vals)
|
||||
|
||||
self.assertEqual(len(invoice.mapped("line_ids")), 3)
|
||||
self.assertEqual(invoice.amount_total, 114)
|
||||
self.assertEqual(invoice.amount_untaxed, 100)
|
||||
self.assertEqual(invoice.amount_tax, 14)
|
||||
|
||||
invoice._post()
|
||||
|
||||
self.assertEqual(len(invoice.mapped("line_ids")), 5)
|
||||
self.assertEqual(invoice.amount_total, 114)
|
||||
self.assertEqual(invoice.amount_untaxed, 100)
|
||||
self.assertEqual(invoice.amount_tax, 14)
|
||||
|
||||
def test_basic_bill(self):
|
||||
"""
|
||||
When billing a storable product with a basic category (manual
|
||||
valuation), the account used should be the expenses one. This test
|
||||
checks the flow with two companies:
|
||||
- One that existed before the installation of `stock_account` (to test
|
||||
the post-install hook)
|
||||
- One created after the module installation
|
||||
"""
|
||||
first_company = self.env['res.company'].browse(1)
|
||||
self.env.user.company_ids |= first_company
|
||||
basic_product = self.env['product.product'].create({
|
||||
'name': 'SuperProduct',
|
||||
'type': 'product',
|
||||
'categ_id': self.all_categ.id,
|
||||
})
|
||||
|
||||
for company in (self.env.company | first_company):
|
||||
bill_form = Form(self.env['account.move'].with_company(company.id).with_context(default_move_type='in_invoice'))
|
||||
bill_form.partner_id = self.partner_a
|
||||
bill_form.invoice_date = fields.Date.today()
|
||||
with bill_form.invoice_line_ids.new() as line:
|
||||
line.product_id = basic_product
|
||||
line.price_unit = 100
|
||||
bill = bill_form.save()
|
||||
bill.action_post()
|
||||
|
||||
product_accounts = basic_product.product_tmpl_id.with_company(company.id).get_product_accounts()
|
||||
self.assertEqual(bill.invoice_line_ids.account_id, product_accounts['expense'])
|
132
tests/test_anglo_saxon_valuation_reconciliation_common.py
Normal file
132
tests/test_anglo_saxon_valuation_reconciliation_common.py
Normal file
@ -0,0 +1,132 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from freezegun import freeze_time
|
||||
|
||||
from odoo.addons.account.tests.common import AccountTestInvoicingCommon
|
||||
from odoo.tests import tagged
|
||||
from odoo import fields
|
||||
|
||||
|
||||
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.env.user.groups_id += cls.env.ref('stock_account.group_stock_accounting_automatic')
|
||||
|
||||
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,
|
||||
})
|
||||
|
||||
cls.res_users_stock_user = cls.env['res.users'].create({
|
||||
'name': "Inventory User",
|
||||
'login': "su",
|
||||
'email': "stockuser@yourcompany.com",
|
||||
'groups_id': [(6, 0, [cls.env.ref('stock.group_stock_user').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,
|
||||
'account_type': 'asset_current',
|
||||
'company_id': company_data['company'].id,
|
||||
}),
|
||||
'default_account_stock_out': cls.env['account.account'].create({
|
||||
'name': 'default_account_stock_out',
|
||||
'code': 'STOCKOUT',
|
||||
'reconcile': True,
|
||||
'account_type': 'asset_current',
|
||||
'company_id': company_data['company'].id,
|
||||
}),
|
||||
'default_account_stock_valuation': cls.env['account.account'].create({
|
||||
'name': 'default_account_stock_valuation',
|
||||
'code': 'STOCKVAL',
|
||||
'reconcile': True,
|
||||
'account_type': 'asset_current',
|
||||
'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_ids
|
||||
|
||||
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.display_type == 'cogs' 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(all(vl.reconciled for vl in valuation_line) 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(all(vl.reconciled for vl in valuation_line) 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(all(vl.full_reconcile_id for vl in valuation_line), "The reconciliation should be total at that point.")
|
||||
else:
|
||||
self.assertFalse(all(vl.full_reconcile_id for vl in valuation_line), "The reconciliation should not be total at that point.")
|
||||
|
||||
def _process_pickings(self, pickings, date=False, quantity=False):
|
||||
|
||||
def do_picking():
|
||||
pickings.action_confirm()
|
||||
pickings.action_assign()
|
||||
if quantity:
|
||||
for picking in pickings:
|
||||
for ml in picking.move_line_ids:
|
||||
ml.quantity = quantity
|
||||
pickings.move_ids.picked = True
|
||||
pickings._action_done()
|
||||
|
||||
if not date:
|
||||
date = fields.Date.today()
|
||||
do_picking()
|
||||
return
|
||||
with freeze_time(date):
|
||||
do_picking()
|
239
tests/test_stock_valuation_layer_revaluation.py
Normal file
239
tests/test_stock_valuation_layer_revaluation.py
Normal file
@ -0,0 +1,239 @@
|
||||
# -*- 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_valuation': 'real_time',
|
||||
'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_avco_rounding_2_digits(self):
|
||||
"""
|
||||
Check that the rounding of the new price (cost) is equivalent to the rounding of the standard price (cost)
|
||||
The check is done indirectly via the layers valuations.
|
||||
If correct => rounding method is correct too
|
||||
"""
|
||||
self.product1.categ_id.property_cost_method = 'average'
|
||||
|
||||
self.env['decimal.precision'].search([
|
||||
('name', '=', 'Product Price'),
|
||||
]).digits = 2
|
||||
self.product1.write({'standard_price': 0})
|
||||
|
||||
# First Move
|
||||
self.product1.write({'standard_price': 0.022})
|
||||
self._make_in_move(self.product1, 10000)
|
||||
|
||||
self.assertEqual(self.product1.standard_price, 0.02)
|
||||
self.assertEqual(self.product1.quantity_svl, 10000)
|
||||
|
||||
layer = self.product1.stock_valuation_layer_ids
|
||||
self.assertEqual(layer.value, 200)
|
||||
|
||||
# Second Move
|
||||
self.product1.write({'standard_price': 0.053})
|
||||
|
||||
self.assertEqual(self.product1.standard_price, 0.05)
|
||||
self.assertEqual(self.product1.quantity_svl, 10000)
|
||||
|
||||
layers = self.product1.stock_valuation_layer_ids
|
||||
self.assertEqual(layers[0].value, 200)
|
||||
self.assertEqual(layers[1].value, 300)
|
||||
|
||||
def test_stock_valuation_layer_revaluation_avco_rounding_5_digits(self):
|
||||
"""
|
||||
Check that the rounding of the new price (cost) is equivalent to the rounding of the standard price (cost)
|
||||
The check is done indirectly via the layers valuations.
|
||||
If correct => rounding method is correct too
|
||||
"""
|
||||
self.product1.categ_id.property_cost_method = 'average'
|
||||
|
||||
self.env['decimal.precision'].search([
|
||||
('name', '=', 'Product Price'),
|
||||
]).digits = 5
|
||||
|
||||
# First Move
|
||||
self.product1.write({'standard_price': 0.00875})
|
||||
self._make_in_move(self.product1, 10000)
|
||||
|
||||
self.assertEqual(self.product1.standard_price, 0.00875)
|
||||
self.assertEqual(self.product1.quantity_svl, 10000)
|
||||
|
||||
layer = self.product1.stock_valuation_layer_ids
|
||||
self.assertEqual(layer.value, 87.5)
|
||||
|
||||
# Second Move
|
||||
self.product1.write({'standard_price': 0.00975})
|
||||
|
||||
self.assertEqual(self.product1.standard_price, 0.00975)
|
||||
self.assertEqual(self.product1.quantity_svl, 10000)
|
||||
|
||||
layers = self.product1.stock_valuation_layer_ids
|
||||
self.assertEqual(layers[0].value, 87.5)
|
||||
self.assertEqual(layers[1].value, 10)
|
||||
|
||||
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, 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()
|
||||
|
||||
self.assertEqual(self.product1.standard_price, 4)
|
||||
|
||||
# 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)
|
4050
tests/test_stockvaluation.py
Normal file
4050
tests/test_stockvaluation.py
Normal file
File diff suppressed because it is too large
Load Diff
1352
tests/test_stockvaluationlayer.py
Normal file
1352
tests/test_stockvaluationlayer.py
Normal file
File diff suppressed because it is too large
Load Diff
71
views/product_views.xml
Normal file
71
views/product_views.xml
Normal file
@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record id="product_template_tree_view" model="ir.ui.view">
|
||||
<field name="name">product.template.tree.inherit.stock.account</field>
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id" ref="product.product_template_tree_view"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="standard_price" position="attributes">
|
||||
<attribute name="readonly">1</attribute>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_category_property_form_stock" model="ir.ui.view">
|
||||
<field name="name">product.category.stock.property.form.inherit.stock</field>
|
||||
<field name="model">product.category</field>
|
||||
<field name="inherit_id" ref="stock.product_category_form_view_inherit"/>
|
||||
<field name="arch" type="xml">
|
||||
<group name="logistics" position="after">
|
||||
<group string="Inventory Valuation">
|
||||
<field name="property_cost_method"/>
|
||||
<label for="property_valuation" groups="stock_account.group_stock_accounting_automatic"/>
|
||||
<div groups="stock_account.group_stock_accounting_automatic">
|
||||
<field name="property_valuation" groups="account.group_account_readonly,stock.group_stock_manager"/>
|
||||
</div>
|
||||
</group>
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_category_property_form" model="ir.ui.view">
|
||||
<field name="name">product.category.stock.property.form.inherit</field>
|
||||
<field name="model">product.category</field>
|
||||
<field name="inherit_id" ref="account.view_category_property_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<group name="account_property" position="inside">
|
||||
<group name="account_stock_property" string="Account Stock Properties" groups="account.group_account_readonly" invisible="property_valuation == 'manual_periodic'">
|
||||
<field name="property_valuation" invisible="1"/>
|
||||
<field name="property_stock_valuation_account_id" options="{'no_create': True}" required="property_valuation == 'real_time'"/>
|
||||
<field name="property_stock_journal" required="property_valuation == 'real_time'" />
|
||||
<field name="property_stock_account_input_categ_id" options="{'no_create': True}" required="property_valuation == 'real_time'" />
|
||||
<field name="property_stock_account_output_categ_id" options="{'no_create': True}" required="property_valuation == 'real_time'" />
|
||||
<div colspan="2" class="alert alert-info mt16" role="status">
|
||||
<b>Set other input/output accounts on specific </b><button name="%(stock.action_prod_inv_location_form)d" role="button" type="action" class="btn-link" style="padding: 0;vertical-align: baseline;" string="locations"/>.
|
||||
</div>
|
||||
</group>
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- Stock Report View -->
|
||||
<record model="ir.ui.view" id="product_product_stock_tree_inherit_stock_account">
|
||||
<field name="name">product.product.stock.tree.inherit.stock.account</field>
|
||||
<field name="model">product.product</field>
|
||||
<field name="inherit_id" ref="stock.product_product_stock_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="qty_available" position="before">
|
||||
<field name="company_currency_id" column_invisible="True"/>
|
||||
<field name="cost_method" column_invisible="True"/>
|
||||
<field name="avg_cost" string="Unit Cost" optional="show" widget='monetary' options="{'currency_field': 'company_currency_id'}"/>
|
||||
<field name="total_value" string="Total Value" optional="show" widget='monetary' options="{'currency_field': 'company_currency_id'}" sum="Total Value"/>
|
||||
<button name="%(stock_valuation_layer_action)d" title="Valuation Report" type="action" class="btn-link"
|
||||
icon="fa-bar-chart" context="{'search_default_product_id': id, 'default_product_id': id}" invisible="cost_method != 'average'"/>
|
||||
<button name="%(stock_valuation_layer_report_action)d" title="Valuation Report" type="action" class="btn-link"
|
||||
icon="fa-bar-chart" context="{'search_default_product_id': id, 'default_product_id': id}" invisible="cost_method != 'fifo'"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user