mirror of
https://github.com/bringout/oca-financial.git
synced 2026-04-21 12:42:01 +02:00
Initial commit: OCA Financial packages (186 packages)
This commit is contained in:
commit
3e0e8473fb
8757 changed files with 947473 additions and 0 deletions
|
|
@ -0,0 +1,44 @@
|
|||
# Product Analytic
|
||||
|
||||
Odoo addon: product_analytic
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-account-analytic-product_analytic
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- account
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Product Analytic
|
||||
- **Version**: 16.0.1.1.1
|
||||
- **Category**: Accounting & Finance
|
||||
- **License**: AGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/account-analytic](https://github.com/OCA/account-analytic) branch 16.0, addon `product_analytic`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original AGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Product_analytic Module - product_analytic
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for product_analytic. Configure related models, access rights, and options as needed.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [account](../../odoo-bringout-oca-ocb-account)
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon product_analytic or install in UI.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-account-analytic-product_analytic"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-account-analytic-product_analytic"
|
||||
```
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in product_analytic.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class account_analytic_distribution_model
|
||||
class account_move_line
|
||||
class product_category
|
||||
class product_template
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: product_analytic. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon product_analytic
|
||||
- License: LGPL-3
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon product_analytic
|
||||
```
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,152 @@
|
|||
================
|
||||
Product Analytic
|
||||
================
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:16de67eb9971353431791b549a46dd9b01ab27ac9598bb1b589df3745d1789c6
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--analytic-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/account-analytic/tree/16.0/product_analytic
|
||||
:alt: OCA/account-analytic
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/account-analytic-16-0/account-analytic-16-0-product_analytic
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/account-analytic&target_branch=16.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This module allows to define an analytic account at product or category level
|
||||
for using it when creating invoices.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
This module allows you to configure an **income analytic account** and an
|
||||
**expense analytic account** on products and on product categories. When you
|
||||
select the product in an invoice line, it will check if this product has an
|
||||
income analytic account (for customer invoice/refunds) or an expense analytic
|
||||
account (for supplier invoice/refunds) ; if it doesn't find any, it checks if
|
||||
the category of the product has an income or expense analytic account ; if an
|
||||
analytic account is found, it will be set by default on the invoice line.
|
||||
|
||||
Changelog
|
||||
=========
|
||||
|
||||
15.0.1.0.0 (2022-01-28)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Migrated to odoo 15.
|
||||
|
||||
14.0.1.0.0 (2021-10-24)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Migrated to odoo 14.
|
||||
|
||||
13.0.1.0.0 (2020-01-08)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Migrated to odoo 13.
|
||||
|
||||
12.0.1.0.0 (2019-05-26)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Migrated to odoo 12.
|
||||
|
||||
11.0.1.0.0 (2018-05-18)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Migrated to odoo 11.
|
||||
|
||||
10.0.1.0.1 (2017-07-18)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
[ADD] Demo data and feature to set analytic account for products.
|
||||
|
||||
10.0.1.0.0 (2017-06-13)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Migrated to odoo 10.
|
||||
|
||||
8.0.1.0.2 (2016-12-03)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
[FIX] Travis errors.
|
||||
|
||||
8.0.1.0.1 (2016-01-05)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
[IMP] Analytic account creating invoice lines.
|
||||
|
||||
8.0.1.0.0 (2015-11-30)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
First version.
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-analytic/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/account-analytic/issues/new?body=module:%20product_analytic%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* Akretion
|
||||
* Tecnativa
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
* Javier Iniesta <javieria@antiun.com>
|
||||
* Luis M. Ontalba <luis.martinez@tecnativa.com>
|
||||
* David Vidal <david.vidal@tecnativa.com>
|
||||
* Thore Baden
|
||||
* Pimolnat Suntian <pimolnats@ecosoft.co.th>
|
||||
* Reyes4711
|
||||
* Denis Roussel <denis.roussel@acsone.eu>
|
||||
|
||||
* Darius Žižys <darius@vialaurea.lt>
|
||||
* Jacques-Etienne Baudoux (BCIM) <je@bcim.be>
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/account-analytic <https://github.com/OCA/account-analytic/tree/16.0/product_analytic>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
# Copyright 2015 Akretion (http://www.akretion.com/) - Alexis de Lattre
|
||||
# Copyright 2016 Antiun Ingeniería S.L. - Javier Iniesta
|
||||
# Copyright 2017 Tecnativa - Luis Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
{
|
||||
"name": "Product Analytic",
|
||||
"version": "16.0.1.1.1",
|
||||
"category": "Accounting & Finance",
|
||||
"license": "AGPL-3",
|
||||
"summary": "Add analytic account on products and product categories",
|
||||
"author": "Akretion, Tecnativa, Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/account-analytic",
|
||||
"depends": ["account"],
|
||||
"data": ["views/product_view.xml"],
|
||||
"demo": ["demo/product_demo.xml"],
|
||||
"installable": True,
|
||||
}
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!--
|
||||
Copyright 2017 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
<odoo noupdate="1">
|
||||
<record id="product.product_product_1" model="product.product">
|
||||
<field
|
||||
name="income_analytic_account_id"
|
||||
ref="analytic.analytic_our_super_product"
|
||||
/>
|
||||
<field
|
||||
name="expense_analytic_account_id"
|
||||
ref="analytic.analytic_our_super_product"
|
||||
/>
|
||||
</record>
|
||||
<record id="product.product_product_3" model="product.product">
|
||||
<field
|
||||
name="income_analytic_account_id"
|
||||
ref="analytic.analytic_integration_c2c"
|
||||
/>
|
||||
<field name="expense_analytic_account_id" ref="analytic.analytic_agrolait" />
|
||||
</record>
|
||||
<record id="product.product_delivery_01" model="product.product">
|
||||
<field
|
||||
name="income_analytic_account_id"
|
||||
ref="analytic.analytic_our_super_product"
|
||||
/>
|
||||
<field
|
||||
name="expense_analytic_account_id"
|
||||
ref="analytic.analytic_our_super_product"
|
||||
/>
|
||||
</record>
|
||||
<record id="product.product_product_10" model="product.product">
|
||||
<field name="income_analytic_account_id" ref="analytic.analytic_seagate_p2" />
|
||||
<field name="expense_analytic_account_id" ref="analytic.analytic_seagate_p2" />
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,61 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2018-09-22 15:16+0000\n"
|
||||
"Last-Translator: yaseentai <eltahiryaseen@outlook.com>\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 3.1.1\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "حساب المنصرفات التحليلي"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "حساب الدخل التحليلي"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "فئة المنتج"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "قالب المنتج"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "خط الفاتورة"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr "Model analitičke distribucije"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "Analitički konto troška"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "Analitički konto prihoda"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka dnevnika"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Kategorija proizvoda"
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-13 23:06+0000\n"
|
||||
"PO-Revision-Date: 2024-09-11 16:05+0000\n"
|
||||
"Last-Translator: Jaume Planas <jaumeplan@gmail.com>\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.6.2\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "Compte analític per a despeses"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "Compte analític per a ingressos"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Assentament Comptable"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Producte"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Categoria de producte"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Plantilla del producte"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Línia factura"
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
|
||||
"Language: cs\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>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Řádek faktury"
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# Lukáš Spurný <lukasspurny8@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-21 03:54+0000\n"
|
||||
"PO-Revision-Date: 2018-02-21 03:54+0000\n"
|
||||
"Last-Translator: Lukáš Spurný <lukasspurny8@gmail.com>, 2018\n"
|
||||
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/"
|
||||
"teams/23907/cs_CZ/)\n"
|
||||
"Language: cs_CZ\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>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "Analytický účet výdajů"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "Analytický účet příjmů"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Kategorie produktů"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Šablona produktu"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Linka faktur"
|
||||
|
|
@ -0,0 +1,59 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
||||
"Language: de\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "Aufwands-Kostenstelle"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "Erlös-Kostenstelle"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Produktkategorie"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Produktvorlage"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Rechnungszeile"
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/"
|
||||
"teams/23907/en_GB/)\n"
|
||||
"Language: en_GB\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Invoice Line"
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2025-08-07 10:25+0000\n"
|
||||
"Last-Translator: Miquel Romera <mromera@pmsastro.es>\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||
"Language: es\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"
|
||||
"X-Generator: Weblate 5.10.4\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr "Modelo analítico de distribución"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "Cuenta analítica para gastos"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "Cuenta analítica para ingresos"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Asiento Contable"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Categoría de producto"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Plantilla de producto"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Línea de factura"
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 12.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-05-27 02:39+0000\n"
|
||||
"PO-Revision-Date: 2018-05-27 02:39+0000\n"
|
||||
"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail."
|
||||
"com>, 2018\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
|
||||
"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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Linea de Factura"
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
|
||||
"teams/23907/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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Línea de factura"
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
|
||||
"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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Detalle de Factura"
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# Juan González <bifomania@protonmail.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-03 13:34+0000\n"
|
||||
"PO-Revision-Date: 2016-12-03 13:34+0000\n"
|
||||
"Last-Translator: Juan González <bifomania@protonmail.com>, 2016\n"
|
||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_MX/)\n"
|
||||
"Language: es_MX\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Categoria del producto"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Plantilla del producto"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Línea de factura"
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
|
||||
"Language: et\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Arve rida"
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-09-30 22:27+0000\n"
|
||||
"PO-Revision-Date: 2019-12-31 14:13+0000\n"
|
||||
"Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>\n"
|
||||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
|
||||
"Language: fi\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"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Tuotekategoria"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Tuotteen malli"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Laskurivi"
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2024-02-01 12:37+0000\n"
|
||||
"Last-Translator: Rémi <remi@le-filament.com>\n"
|
||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
||||
"Language: fr\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"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "Compte Analytique Dépenses"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "Compte Analytique Revenu"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Écriture Comptable"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Catégorie d'article"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Modèle d'article"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Lignes de facture"
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# leemannd <leemannd@gmail.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-24 23:14+0000\n"
|
||||
"PO-Revision-Date: 2016-11-24 23:14+0000\n"
|
||||
"Last-Translator: leemannd <leemannd@gmail.com>, 2016\n"
|
||||
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/"
|
||||
"teams/23907/fr_CH/)\n"
|
||||
"Language: fr_CH\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Template de produit"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Ligne de facture"
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Bole <bole@dajmi5.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-21 03:54+0000\n"
|
||||
"PO-Revision-Date: 2024-06-17 17:37+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>\n"
|
||||
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/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"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "Analitički konto troška"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "Analitički konto prihoda"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka dnevnika"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Kategorija proizvoda"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Predložak proizvoda"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Stavka računa"
|
||||
|
|
@ -0,0 +1,61 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-30 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-30 02:40+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2017\n"
|
||||
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/"
|
||||
"hr_HR/)\n"
|
||||
"Language: hr_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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "Analitički konto troška"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "Analitički konto prihoda"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Kategorija proizvoda"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Predložak proizvoda"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Stavka računa"
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
|
||||
"Language: hu\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Számlasor"
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# Andrea Cometa <a.cometa@apuliasoftware.it>, 2016
|
||||
# Paolo Valier <paolo.valier@hotmail.it>, 2016
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-09-30 22:27+0000\n"
|
||||
"PO-Revision-Date: 2025-05-20 09:26+0000\n"
|
||||
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
||||
"Language: it\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"
|
||||
"X-Generator: Weblate 5.10.4\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr "Modello distribuzione analitica"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "Conto analitico spese"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "Conto analitico guadagni"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Movimento contabile"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Prodotto"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Categoria prodotto"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Modello prodotto"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Riga fattura"
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
|
||||
"Language: ja\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "請求行"
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
|
||||
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Sąskaitos faktūros eilutė"
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
|
||||
"Language: mk\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) ? 0 : 1;\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Ставка од фактура"
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Нэхэмжлэлийн мөр"
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/"
|
||||
"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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Fakturalinje"
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
||||
"Language: nl\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Productcategorie"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Factuurregel"
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/"
|
||||
"nl_BE/)\n"
|
||||
"Language: nl_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Factuurlijn"
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# Peter Hageman <hageman.p@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n"
|
||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
|
||||
"teams/23907/nl_NL/)\n"
|
||||
"Language: nl_NL\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Factuurregel"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
||||
"Language: pt\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Linha de fatura"
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# falexandresilva <falexandresilva@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2023-10-13 12:42+0000\n"
|
||||
"Last-Translator: Adriano Prado <adrianojprado@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_BR/)\n"
|
||||
"Language: pt_BR\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"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "Conta Analítica de Despesa"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "Conta Analítica de Receita"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item diário"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Categoria do produto"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Modelo de Produto"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "LInha da fatura"
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# Pedro Castro Silva <pedrocs@sossia.pt>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-16 03:41+0000\n"
|
||||
"PO-Revision-Date: 2016-12-16 03:41+0000\n"
|
||||
"Last-Translator: Pedro Castro Silva <pedrocs@sossia.pt>, 2016\n"
|
||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_PT/)\n"
|
||||
"Language: pt_PT\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Linha da Fatura"
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Linie factura"
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
|
||||
"(n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Позиция счета"
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "Analitični konto stroškov"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "Analitični konto prihodkov"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Kategorija proizvoda"
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Predloga proizvoda"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Postavka računa"
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2024-02-27 12:38+0000\n"
|
||||
"Last-Translator: jakobkrabbe <jakob@syscare.se>\n"
|
||||
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
|
||||
"Language: sv\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"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr "Konto för kostnadsobjekt"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr "Konto för intäktsobjekt"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Transaktion"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr "Produktkategori"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Fakturarad"
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# Ozge Altinisik <ozge@altinkaya.com.tr>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-30 23:06+0000\n"
|
||||
"PO-Revision-Date: 2016-12-30 23:06+0000\n"
|
||||
"Last-Translator: Ozge Altinisik <ozge@altinkaya.com.tr>, 2017\n"
|
||||
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
|
||||
"Language: tr\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Fatura kalemi"
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# Ozge Altinisik <ozge@altinkaya.com.tr>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-30 23:06+0000\n"
|
||||
"PO-Revision-Date: 2016-12-30 23:06+0000\n"
|
||||
"Last-Translator: Ozge Altinisik <ozge@altinkaya.com.tr>, 2017\n"
|
||||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/"
|
||||
"tr_TR/)\n"
|
||||
"Language: tr_TR\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Product Template"
|
||||
#~ msgstr "Ürün şablonu"
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "Fatura hizası"
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
|
||||
"zh_CN/)\n"
|
||||
"Language: zh_CN\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "发票明细"
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_analytic
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-21 02:40+0000\n"
|
||||
"PO-Revision-Date: 2017-06-21 02:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/"
|
||||
"zh_TW/)\n"
|
||||
"Language: zh_TW\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: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_analytic_distribution_model
|
||||
msgid "Analytic Distribution Model"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__expense_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__expense_analytic_account_id
|
||||
msgid "Expense Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_category__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_product__income_analytic_account_id
|
||||
#: model:ir.model.fields,field_description:product_analytic.field_product_template__income_analytic_account_id
|
||||
msgid "Income Analytic Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_template
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_analytic
|
||||
#: model:ir.model,name:product_analytic.model_product_category
|
||||
msgid "Product Category"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice Line"
|
||||
#~ msgstr "發票明細"
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import account_move_line
|
||||
from . import account_analytic_distribution_model
|
||||
from . import product
|
||||
from . import product_category
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Copyright 2015 Akretion (http://www.akretion.com/) - Alexis de Lattre
|
||||
# Copyright 2016 Antiun Ingeniería S.L. - Javier Iniesta
|
||||
# Copyright 2017 Tecnativa - Luis Martínez
|
||||
# Copyright 2025 Jacques-Etienne Baudoux (BCIM) <je@bcim.be>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import api, models
|
||||
|
||||
INV_TYPE_MAP = {
|
||||
"out_invoice": "income",
|
||||
"out_refund": "income",
|
||||
"out_receipt": "income",
|
||||
"in_invoice": "expense",
|
||||
"in_refund": "expense",
|
||||
"in_receipt": "expense",
|
||||
}
|
||||
|
||||
|
||||
class AccountAnalyticDistributionModel(models.Model):
|
||||
_inherit = "account.analytic.distribution.model"
|
||||
|
||||
@api.model
|
||||
def _get_distribution(self, vals):
|
||||
res = super()._get_distribution(vals)
|
||||
if res:
|
||||
return res
|
||||
# Compatibility with `pos_analytic_by_config`
|
||||
if self.env.context.get("pos_config_id"):
|
||||
return res
|
||||
# Compute distribution from product
|
||||
move_type = self.env.context.get("move_type")
|
||||
if vals.get("product_id") and move_type and move_type in INV_TYPE_MAP:
|
||||
product = self.env["product.product"].browse(vals["product_id"])
|
||||
ana_accounts = product.product_tmpl_id._get_product_analytic_accounts()
|
||||
ana_account = ana_accounts[INV_TYPE_MAP[move_type]]
|
||||
if ana_account:
|
||||
return {ana_account.id: 100}
|
||||
return res
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
# Copyright 2025 Jacques-Etienne Baudoux (BCIM) <je@bcim.be>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class AccountMoveLine(models.Model):
|
||||
_inherit = "account.move.line"
|
||||
|
||||
def _compute_analytic_distribution(self):
|
||||
for line in self:
|
||||
move_type = self.env.context.get("move_type", line.move_id.move_type)
|
||||
super(
|
||||
AccountMoveLine, line.with_context(move_type=move_type)
|
||||
)._compute_analytic_distribution()
|
||||
return
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
# Copyright 2015 Akretion (http://www.akretion.com/) - Alexis de Lattre
|
||||
# Copyright 2016 Antiun Ingeniería S.L. - Javier Iniesta
|
||||
# Copyright 2017 Tecnativa - Luis Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ProductTemplate(models.Model):
|
||||
_inherit = "product.template"
|
||||
|
||||
income_analytic_account_id = fields.Many2one(
|
||||
"account.analytic.account",
|
||||
string="Income Analytic Account",
|
||||
company_dependent=True,
|
||||
)
|
||||
expense_analytic_account_id = fields.Many2one(
|
||||
"account.analytic.account",
|
||||
string="Expense Analytic Account",
|
||||
company_dependent=True,
|
||||
)
|
||||
|
||||
def _get_product_analytic_accounts(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"income": self.income_analytic_account_id
|
||||
or self.categ_id.income_analytic_account_id,
|
||||
"expense": self.expense_analytic_account_id
|
||||
or self.categ_id.expense_analytic_account_id,
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
# Copyright 2015 Akretion (http://www.akretion.com/) - Alexis de Lattre
|
||||
# Copyright 2016 Antiun Ingeniería S.L. - Javier Iniesta
|
||||
# Copyright 2017 Tecnativa - Luis Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ProductCategory(models.Model):
|
||||
_inherit = "product.category"
|
||||
|
||||
income_analytic_account_id = fields.Many2one(
|
||||
"account.analytic.account",
|
||||
string="Income Analytic Account",
|
||||
company_dependent=True,
|
||||
)
|
||||
expense_analytic_account_id = fields.Many2one(
|
||||
"account.analytic.account",
|
||||
string="Expense Analytic Account",
|
||||
company_dependent=True,
|
||||
)
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
* Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
* Javier Iniesta <javieria@antiun.com>
|
||||
* Luis M. Ontalba <luis.martinez@tecnativa.com>
|
||||
* David Vidal <david.vidal@tecnativa.com>
|
||||
* Thore Baden
|
||||
* Pimolnat Suntian <pimolnats@ecosoft.co.th>
|
||||
* Reyes4711
|
||||
* Denis Roussel <denis.roussel@acsone.eu>
|
||||
|
||||
* Darius Žižys <darius@vialaurea.lt>
|
||||
* Jacques-Etienne Baudoux (BCIM) <je@bcim.be>
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
This module allows to define an analytic account at product or category level
|
||||
for using it when creating invoices.
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
15.0.1.0.0 (2022-01-28)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Migrated to odoo 15.
|
||||
|
||||
14.0.1.0.0 (2021-10-24)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Migrated to odoo 14.
|
||||
|
||||
13.0.1.0.0 (2020-01-08)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Migrated to odoo 13.
|
||||
|
||||
12.0.1.0.0 (2019-05-26)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Migrated to odoo 12.
|
||||
|
||||
11.0.1.0.0 (2018-05-18)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Migrated to odoo 11.
|
||||
|
||||
10.0.1.0.1 (2017-07-18)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
[ADD] Demo data and feature to set analytic account for products.
|
||||
|
||||
10.0.1.0.0 (2017-06-13)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Migrated to odoo 10.
|
||||
|
||||
8.0.1.0.2 (2016-12-03)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
[FIX] Travis errors.
|
||||
|
||||
8.0.1.0.1 (2016-01-05)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
[IMP] Analytic account creating invoice lines.
|
||||
|
||||
8.0.1.0.0 (2015-11-30)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
First version.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
This module allows you to configure an **income analytic account** and an
|
||||
**expense analytic account** on products and on product categories. When you
|
||||
select the product in an invoice line, it will check if this product has an
|
||||
income analytic account (for customer invoice/refunds) or an expense analytic
|
||||
account (for supplier invoice/refunds) ; if it doesn't find any, it checks if
|
||||
the category of the product has an income or expense analytic account ; if an
|
||||
analytic account is found, it will be set by default on the invoice line.
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
|
|
@ -0,0 +1,501 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
||||
<title>Product Analytic</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
Despite the name, some widely supported CSS2 features are used.
|
||||
|
||||
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: gray; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic, pre.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="product-analytic">
|
||||
<h1 class="title">Product Analytic</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:16de67eb9971353431791b549a46dd9b01ab27ac9598bb1b589df3745d1789c6
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/account-analytic/tree/16.0/product_analytic"><img alt="OCA/account-analytic" src="https://img.shields.io/badge/github-OCA%2Faccount--analytic-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/account-analytic-16-0/account-analytic-16-0-product_analytic"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/account-analytic&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module allows to define an analytic account at product or category level
|
||||
for using it when creating invoices.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#usage" id="toc-entry-1">Usage</a></li>
|
||||
<li><a class="reference internal" href="#changelog" id="toc-entry-2">Changelog</a><ul>
|
||||
<li><a class="reference internal" href="#section-1" id="toc-entry-3">15.0.1.0.0 (2022-01-28)</a></li>
|
||||
<li><a class="reference internal" href="#section-2" id="toc-entry-4">14.0.1.0.0 (2021-10-24)</a></li>
|
||||
<li><a class="reference internal" href="#section-3" id="toc-entry-5">13.0.1.0.0 (2020-01-08)</a></li>
|
||||
<li><a class="reference internal" href="#section-4" id="toc-entry-6">12.0.1.0.0 (2019-05-26)</a></li>
|
||||
<li><a class="reference internal" href="#section-5" id="toc-entry-7">11.0.1.0.0 (2018-05-18)</a></li>
|
||||
<li><a class="reference internal" href="#section-6" id="toc-entry-8">10.0.1.0.1 (2017-07-18)</a></li>
|
||||
<li><a class="reference internal" href="#section-7" id="toc-entry-9">10.0.1.0.0 (2017-06-13)</a></li>
|
||||
<li><a class="reference internal" href="#section-8" id="toc-entry-10">8.0.1.0.2 (2016-12-03)</a></li>
|
||||
<li><a class="reference internal" href="#section-9" id="toc-entry-11">8.0.1.0.1 (2016-01-05)</a></li>
|
||||
<li><a class="reference internal" href="#section-10" id="toc-entry-12">8.0.1.0.0 (2015-11-30)</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-13">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="toc-entry-14">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="toc-entry-15">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="toc-entry-16">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="toc-entry-17">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
|
||||
<p>This module allows you to configure an <strong>income analytic account</strong> and an
|
||||
<strong>expense analytic account</strong> on products and on product categories. When you
|
||||
select the product in an invoice line, it will check if this product has an
|
||||
income analytic account (for customer invoice/refunds) or an expense analytic
|
||||
account (for supplier invoice/refunds) ; if it doesn’t find any, it checks if
|
||||
the category of the product has an income or expense analytic account ; if an
|
||||
analytic account is found, it will be set by default on the invoice line.</p>
|
||||
</div>
|
||||
<div class="section" id="changelog">
|
||||
<h1><a class="toc-backref" href="#toc-entry-2">Changelog</a></h1>
|
||||
<div class="section" id="section-1">
|
||||
<h2><a class="toc-backref" href="#toc-entry-3">15.0.1.0.0 (2022-01-28)</a></h2>
|
||||
<p>Migrated to odoo 15.</p>
|
||||
</div>
|
||||
<div class="section" id="section-2">
|
||||
<h2><a class="toc-backref" href="#toc-entry-4">14.0.1.0.0 (2021-10-24)</a></h2>
|
||||
<p>Migrated to odoo 14.</p>
|
||||
</div>
|
||||
<div class="section" id="section-3">
|
||||
<h2><a class="toc-backref" href="#toc-entry-5">13.0.1.0.0 (2020-01-08)</a></h2>
|
||||
<p>Migrated to odoo 13.</p>
|
||||
</div>
|
||||
<div class="section" id="section-4">
|
||||
<h2><a class="toc-backref" href="#toc-entry-6">12.0.1.0.0 (2019-05-26)</a></h2>
|
||||
<p>Migrated to odoo 12.</p>
|
||||
</div>
|
||||
<div class="section" id="section-5">
|
||||
<h2><a class="toc-backref" href="#toc-entry-7">11.0.1.0.0 (2018-05-18)</a></h2>
|
||||
<p>Migrated to odoo 11.</p>
|
||||
</div>
|
||||
<div class="section" id="section-6">
|
||||
<h2><a class="toc-backref" href="#toc-entry-8">10.0.1.0.1 (2017-07-18)</a></h2>
|
||||
<p>[ADD] Demo data and feature to set analytic account for products.</p>
|
||||
</div>
|
||||
<div class="section" id="section-7">
|
||||
<h2><a class="toc-backref" href="#toc-entry-9">10.0.1.0.0 (2017-06-13)</a></h2>
|
||||
<p>Migrated to odoo 10.</p>
|
||||
</div>
|
||||
<div class="section" id="section-8">
|
||||
<h2><a class="toc-backref" href="#toc-entry-10">8.0.1.0.2 (2016-12-03)</a></h2>
|
||||
<p>[FIX] Travis errors.</p>
|
||||
</div>
|
||||
<div class="section" id="section-9">
|
||||
<h2><a class="toc-backref" href="#toc-entry-11">8.0.1.0.1 (2016-01-05)</a></h2>
|
||||
<p>[IMP] Analytic account creating invoice lines.</p>
|
||||
</div>
|
||||
<div class="section" id="section-10">
|
||||
<h2><a class="toc-backref" href="#toc-entry-12">8.0.1.0.0 (2015-11-30)</a></h2>
|
||||
<p>First version.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#toc-entry-13">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/account-analytic/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/account-analytic/issues/new?body=module:%20product_analytic%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#toc-entry-14">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-15">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Akretion</li>
|
||||
<li>Tecnativa</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-16">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Alexis de Lattre <<a class="reference external" href="mailto:alexis.delattre@akretion.com">alexis.delattre@akretion.com</a>></li>
|
||||
<li>Javier Iniesta <<a class="reference external" href="mailto:javieria@antiun.com">javieria@antiun.com</a>></li>
|
||||
<li>Luis M. Ontalba <<a class="reference external" href="mailto:luis.martinez@tecnativa.com">luis.martinez@tecnativa.com</a>></li>
|
||||
<li>David Vidal <<a class="reference external" href="mailto:david.vidal@tecnativa.com">david.vidal@tecnativa.com</a>></li>
|
||||
<li>Thore Baden</li>
|
||||
<li>Pimolnat Suntian <<a class="reference external" href="mailto:pimolnats@ecosoft.co.th">pimolnats@ecosoft.co.th</a>></li>
|
||||
<li>Reyes4711</li>
|
||||
<li>Denis Roussel <<a class="reference external" href="mailto:denis.roussel@acsone.eu">denis.roussel@acsone.eu</a>></li>
|
||||
<li>Darius Žižys <<a class="reference external" href="mailto:darius@vialaurea.lt">darius@vialaurea.lt</a>></li>
|
||||
<li>Jacques-Etienne Baudoux (BCIM) <<a class="reference external" href="mailto:je@bcim.be">je@bcim.be</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#toc-entry-17">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org">
|
||||
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
||||
</a>
|
||||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/account-analytic/tree/16.0/product_analytic">OCA/account-analytic</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import test_account_move
|
||||
|
|
@ -0,0 +1,275 @@
|
|||
# Copyright 2015 Antiun Ingenieria - Javier Iniesta
|
||||
# Copyright 2017 Tecnativa - Luis Martínez
|
||||
# Copyright 2025 Jacques-Etienne Baudoux (BCIM) <je@bcim.be>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from odoo import Command
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
|
||||
class TestAccountInvoiceLine(TransactionCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))
|
||||
cls.category = cls.env["product.category"].create(
|
||||
{
|
||||
"name": "Product Category",
|
||||
}
|
||||
)
|
||||
cls.default_plan = cls.env["account.analytic.plan"].create(
|
||||
{
|
||||
"name": "Default Plan",
|
||||
"company_id": False,
|
||||
}
|
||||
)
|
||||
cls.analytic_account1 = cls.env["account.analytic.account"].create(
|
||||
{
|
||||
"name": "test analytic_account1",
|
||||
"plan_id": cls.default_plan.id,
|
||||
}
|
||||
)
|
||||
cls.analytic_account2 = cls.env["account.analytic.account"].create(
|
||||
{
|
||||
"name": "test analytic_account2",
|
||||
"plan_id": cls.default_plan.id,
|
||||
}
|
||||
)
|
||||
cls.product = cls.env["product.product"].create(
|
||||
{
|
||||
"name": "test product",
|
||||
"lst_price": 50,
|
||||
"standard_price": 50,
|
||||
"income_analytic_account_id": cls.analytic_account1.id,
|
||||
"expense_analytic_account_id": cls.analytic_account2.id,
|
||||
}
|
||||
)
|
||||
cls.product_1 = cls.env["product.product"].create(
|
||||
{
|
||||
"name": "test product 1",
|
||||
"lst_price": 20,
|
||||
"standard_price": 20,
|
||||
"income_analytic_account_id": False,
|
||||
"expense_analytic_account_id": False,
|
||||
}
|
||||
)
|
||||
cls.partner = cls.env["res.partner"].create({"name": "Test partner"})
|
||||
cls.journal_sale = cls.env["account.journal"].create(
|
||||
{"name": "Test journal sale", "code": "SALE0", "type": "sale"}
|
||||
)
|
||||
cls.journal_purchase = cls.env["account.journal"].create(
|
||||
{"name": "Test journal purchase", "code": "PURCHASE0", "type": "purchase"}
|
||||
)
|
||||
cls.account_in = cls.env["account.account"].create(
|
||||
{
|
||||
"name": "Test account IN",
|
||||
"code": "TESTIN",
|
||||
"account_type": "expense",
|
||||
}
|
||||
)
|
||||
cls.account_out = cls.env["account.account"].create(
|
||||
{
|
||||
"name": "Test account OUT",
|
||||
"code": "TESTOUT",
|
||||
"account_type": "income",
|
||||
}
|
||||
)
|
||||
|
||||
def test_create_in(self):
|
||||
invoice = self.env["account.move"].create(
|
||||
[
|
||||
{
|
||||
"partner_id": self.partner.id,
|
||||
"journal_id": self.journal_purchase.id,
|
||||
"move_type": "in_invoice",
|
||||
"invoice_line_ids": [
|
||||
Command.create(
|
||||
{
|
||||
"name": "Test line",
|
||||
"quantity": 1,
|
||||
"price_unit": 50,
|
||||
"account_id": self.account_in.id,
|
||||
"product_id": self.product.id,
|
||||
}
|
||||
)
|
||||
],
|
||||
}
|
||||
]
|
||||
)
|
||||
invoice_line = invoice.invoice_line_ids[0]
|
||||
analytic_account_id = [key for key in invoice_line.analytic_distribution]
|
||||
self.assertEqual(
|
||||
int(analytic_account_id[0]),
|
||||
self.product.expense_analytic_account_id.id,
|
||||
)
|
||||
|
||||
def test_create_in_without(self):
|
||||
# Create an incoming invoice without analytic
|
||||
invoice = self.env["account.move"].create(
|
||||
[
|
||||
{
|
||||
"partner_id": self.partner.id,
|
||||
"journal_id": self.journal_purchase.id,
|
||||
"move_type": "in_invoice",
|
||||
"invoice_line_ids": [
|
||||
Command.create(
|
||||
{
|
||||
"name": "Test line",
|
||||
"quantity": 1,
|
||||
"price_unit": 50,
|
||||
"account_id": self.account_in.id,
|
||||
"product_id": self.product_1.id,
|
||||
}
|
||||
)
|
||||
],
|
||||
}
|
||||
]
|
||||
)
|
||||
invoice_line = invoice.invoice_line_ids[0]
|
||||
self.assertFalse(invoice_line.analytic_distribution)
|
||||
|
||||
def test_create_in_category(self):
|
||||
# Create an incoming invoice with analytic on category
|
||||
self.category.expense_analytic_account_id = self.analytic_account2
|
||||
self.product_1.categ_id = self.category
|
||||
invoice = self.env["account.move"].create(
|
||||
[
|
||||
{
|
||||
"partner_id": self.partner.id,
|
||||
"journal_id": self.journal_purchase.id,
|
||||
"move_type": "in_invoice",
|
||||
"invoice_line_ids": [
|
||||
Command.create(
|
||||
{
|
||||
"name": "Test line",
|
||||
"quantity": 1,
|
||||
"price_unit": 50,
|
||||
"account_id": self.account_in.id,
|
||||
"product_id": self.product_1.id,
|
||||
}
|
||||
)
|
||||
],
|
||||
}
|
||||
]
|
||||
)
|
||||
invoice_line = invoice.invoice_line_ids[0]
|
||||
analytic_account_id = [key for key in invoice_line.analytic_distribution]
|
||||
self.assertEqual(
|
||||
int(analytic_account_id[0]),
|
||||
self.analytic_account2.id,
|
||||
)
|
||||
|
||||
def test_create_out(self):
|
||||
invoice = self.env["account.move"].create(
|
||||
[
|
||||
{
|
||||
"partner_id": self.partner.id,
|
||||
"journal_id": self.journal_sale.id,
|
||||
"move_type": "out_invoice",
|
||||
"invoice_line_ids": [
|
||||
Command.create(
|
||||
{
|
||||
"name": "Test line",
|
||||
"quantity": 1,
|
||||
"price_unit": 50,
|
||||
"account_id": self.account_out.id,
|
||||
"product_id": self.product.id,
|
||||
}
|
||||
)
|
||||
],
|
||||
}
|
||||
]
|
||||
)
|
||||
invoice_line = invoice.invoice_line_ids[0]
|
||||
analytic_account_id = [key for key in invoice_line.analytic_distribution]
|
||||
self.assertEqual(
|
||||
int(analytic_account_id[0]),
|
||||
self.product.income_analytic_account_id.id,
|
||||
)
|
||||
|
||||
def test_create_out_without(self):
|
||||
# Create outgoing invoice without analytic
|
||||
invoice = self.env["account.move"].create(
|
||||
[
|
||||
{
|
||||
"partner_id": self.partner.id,
|
||||
"journal_id": self.journal_sale.id,
|
||||
"move_type": "out_invoice",
|
||||
"invoice_line_ids": [
|
||||
Command.create(
|
||||
{
|
||||
"name": "Test line",
|
||||
"quantity": 1,
|
||||
"price_unit": 50,
|
||||
"account_id": self.account_out.id,
|
||||
"product_id": self.product_1.id,
|
||||
}
|
||||
)
|
||||
],
|
||||
}
|
||||
]
|
||||
)
|
||||
invoice_line = invoice.invoice_line_ids[0]
|
||||
self.assertFalse(invoice_line.analytic_distribution)
|
||||
|
||||
def test_create_out_category(self):
|
||||
# Create outgoing invoice without analytic
|
||||
self.category.income_analytic_account_id = self.analytic_account2
|
||||
self.product_1.categ_id = self.category
|
||||
invoice = self.env["account.move"].create(
|
||||
[
|
||||
{
|
||||
"partner_id": self.partner.id,
|
||||
"journal_id": self.journal_sale.id,
|
||||
"move_type": "out_invoice",
|
||||
"invoice_line_ids": [
|
||||
Command.create(
|
||||
{
|
||||
"name": "Test line",
|
||||
"quantity": 1,
|
||||
"price_unit": 50,
|
||||
"account_id": self.account_out.id,
|
||||
"product_id": self.product_1.id,
|
||||
}
|
||||
)
|
||||
],
|
||||
}
|
||||
]
|
||||
)
|
||||
invoice_line = invoice.invoice_line_ids[0]
|
||||
analytic_account_id = [key for key in invoice_line.analytic_distribution]
|
||||
self.assertEqual(
|
||||
int(analytic_account_id[0]),
|
||||
self.analytic_account2.id,
|
||||
)
|
||||
|
||||
def test_create_out_preset(self):
|
||||
"""Test product analytic is not used when the analytic is forced"""
|
||||
invoice = self.env["account.move"].create(
|
||||
[
|
||||
{
|
||||
"partner_id": self.partner.id,
|
||||
"journal_id": self.journal_sale.id,
|
||||
"move_type": "out_invoice",
|
||||
"invoice_line_ids": [
|
||||
Command.create(
|
||||
{
|
||||
"name": "Test line",
|
||||
"quantity": 1,
|
||||
"price_unit": 50,
|
||||
"account_id": self.account_out.id,
|
||||
"product_id": self.product.id,
|
||||
"analytic_distribution": {
|
||||
self.analytic_account2.id: 100
|
||||
},
|
||||
}
|
||||
)
|
||||
],
|
||||
}
|
||||
]
|
||||
)
|
||||
invoice_line = invoice.invoice_line_ids[0]
|
||||
analytic_account_id = [key for key in invoice_line.analytic_distribution]
|
||||
self.assertEqual(
|
||||
int(analytic_account_id[0]),
|
||||
self.analytic_account2.id,
|
||||
)
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!--
|
||||
Copyright 2015 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
Copyright 2017 Tecnativa - Luis Martínez
|
||||
-->
|
||||
<odoo>
|
||||
<record id="product_template_form_view" model="ir.ui.view">
|
||||
<field name="name">product_analytic_account.product.template.form</field>
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id" ref="account.product_template_form_view" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="property_account_income_id" position="after">
|
||||
<field name="income_analytic_account_id" />
|
||||
</field>
|
||||
<field name="property_account_expense_id" position="after">
|
||||
<field name="expense_analytic_account_id" />
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
<record id="view_category_property_form" model="ir.ui.view">
|
||||
<field name="name">product_analytic_account.product.categ.form</field>
|
||||
<field name="model">product.category</field>
|
||||
<field name="inherit_id" ref="account.view_category_property_form" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="property_account_income_categ_id" position="after">
|
||||
<field name="income_analytic_account_id" />
|
||||
</field>
|
||||
<field name="property_account_expense_categ_id" position="after">
|
||||
<field name="expense_analytic_account_id" />
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-account-analytic-product_analytic"
|
||||
version = "16.0.0"
|
||||
description = "Product Analytic - Add analytic account on products and product categories"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-account>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["product_analytic"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue