Initial commit: Sale packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:49 +02:00
commit 14e3d26998
6469 changed files with 2479670 additions and 0 deletions

View file

@ -0,0 +1,47 @@
# Sales Expense Margin
When re-invoicing the expense on the SO, set the cost to the total untaxed amount of the expense.
## Installation
```bash
pip install odoo-bringout-oca-ocb-sale_expense_margin
```
## Dependencies
This addon depends on:
- sale_expense
- sale_margin
## Manifest Information
- **Name**: Sales Expense Margin
- **Version**: 1.0
- **Category**: Sales/Sales
- **License**: LGPL-3
- **Installable**: True
## Source
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `sale_expense_margin`.
## License
This package maintains the original LGPL-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
- Reports: doc/REPORTS.md
- Security: doc/SECURITY.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

View file

@ -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 Sale_expense_margin Module - sale_expense_margin
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.

View file

@ -0,0 +1,3 @@
# Configuration
Refer to Odoo settings for sale_expense_margin. Configure related models, access rights, and options as needed.

View file

@ -0,0 +1,3 @@
# Controllers
This module does not define custom HTTP controllers.

View file

@ -0,0 +1,6 @@
# Dependencies
This addon depends on:
- [sale_expense](../../odoo-bringout-oca-ocb-sale_expense)
- [sale_margin](../../odoo-bringout-oca-ocb-sale_margin)

View file

@ -0,0 +1,4 @@
# FAQ
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
- Q: How to enable? A: Start server with --addon sale_expense_margin or install in UI.

View file

@ -0,0 +1,7 @@
# Install
```bash
pip install odoo-bringout-oca-ocb-sale_expense_margin"
# or
uv pip install odoo-bringout-oca-ocb-sale_expense_margin"
```

View file

@ -0,0 +1,13 @@
# Models
Detected core models and extensions in sale_expense_margin.
```mermaid
classDiagram
class account_move_line
class sale_order_line
```
Notes
- Classes show model technical names; fields omitted for brevity.
- Items listed under _inherit are extensions of existing models.

View file

@ -0,0 +1,6 @@
# Overview
Packaged Odoo addon: sale_expense_margin. Provides features documented in upstream Odoo 16 under this addon.
- Source: OCA/OCB 16.0, addon sale_expense_margin
- License: LGPL-3

View file

@ -0,0 +1,3 @@
# Reports
This module does not define custom reports.

View file

@ -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

View file

@ -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.

View file

@ -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 sale_expense_margin
```

View file

@ -0,0 +1,3 @@
# Wizards
This module does not include UI wizards.

View file

@ -0,0 +1,43 @@
[project]
name = "odoo-bringout-oca-ocb-sale_expense_margin"
version = "16.0.0"
description = "Sales Expense Margin - Odoo addon"
authors = [
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
]
dependencies = [
"odoo-bringout-oca-ocb-sale_expense>=16.0.0",
"odoo-bringout-oca-ocb-sale_margin>=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 = ["sale_expense_margin"]
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.4.1",
]

View file

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models

View file

@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Sales Expense Margin',
'version': '1.0',
'category': 'Sales/Sales',
'description': 'When re-invoicing the expense on the SO, set the cost to the total untaxed amount of the expense.',
'depends': ['sale_expense', 'sale_margin'],
'installable': True,
'auto_install': True,
'license': 'LGPL-3',
}

View file

@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

View file

@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: am\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "نفقة "
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "بنود اليومية "
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "بند أمر المبيعات"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# erpgo translator <jumshud@erpgo.az>, 2022
# Jumshud Sultanov <cumshud@gmail.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 2022\n"
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: az\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Xərclər"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Jurnal Sətirləri"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Satış Sifarişi Sətri"

View file

@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: be\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: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

View file

@ -0,0 +1,37 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Nikola Iliev, 2023
# aleksandar ivanov, 2023
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2023\n"
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Разход"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Счетоводна Операция"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Ред на поръчка за продажби"

View file

@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-15 12:51+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Trošak"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Stavka dnevnika"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Stavka prodajnog naloga"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# jabelchi, 2022
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Manel Fernandez Ramirez <manelfera@outlook.com>, 2022\n"
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Despesa"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Apunt comptable"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Línia comanda de venda"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
# Jiří Podhorecký, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Jiří Podhorecký, 2022\n"
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Výdaje"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Položka deníku"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Řádek zakázky"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Omkostning"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Journalpost"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Salgsordrelinje"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2023
# Larissa Manderfeld, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Larissa Manderfeld, 2023\n"
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Ausgabe"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Buchungszeile"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Verkaufsauftragszeile"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Wil Odoo, 2024\n"
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Gasto"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Apunte contable"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Línea de pedido de venta"

View file

@ -0,0 +1,37 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
# Martin Trigaux, 2022
# Fernanda Alvarez, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Fernanda Alvarez, 2024\n"
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_MX\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Gasto"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Apunte contable"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Línea de orden de venta"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Eneli Õigus <enelioigus@gmail.com>, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: et\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Kulu"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Andmiku kanderida"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Müügitellimuse rida"

View file

@ -0,0 +1,37 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2023
# Hanna Kheradroosta, 2023
# Hamid Darabi, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Hamid Darabi, 2023\n"
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fa\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "هزینه"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "آیتم روزنامه"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "سطر سفارش‌فروش"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022\n"
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Kulu"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Päiväkirjatapahtuma"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Myyntitilausrivi"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Jolien De Paepe, 2023
# Manon Rondou, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Manon Rondou, 2025\n"
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Dépense"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Écriture comptable"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Ligne de commande client"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Qaidjohar Barbhaya, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: gu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Expense"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Journal Item"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# NoaFarkash, 2022
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022\n"
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: he\n"
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "מאשר הוצאות"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "תנועת יומן"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "שורת הזמנת לקוח"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Jaisal Shah <jaisal13shah@gmail.com>, 2025
# Ujjawal Pathak, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Ujjawal Pathak, 2025\n"
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "खर्च"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "जर्नल आइटम"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "बिक्री आदेश पंक्ति"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Bole <bole@dajmi5.com>, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hr\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Trošak"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Stavka dnevnika"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Stavka prodajnog naloga"

View file

@ -0,0 +1,37 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Tamás Dombos, 2022
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Költség"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Könyvelési tételsor"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Értékesítési megrendelés sor"

View file

@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hy\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Pengeluaran"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Item Jurnal"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Detail Order Penjualan"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Heiðar Sigurðsson, 2022
# Kristófer Arnþórsson, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Kristófer Arnþórsson, 2024\n"
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Gjöld"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Sölupöntunarlína"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
# Sergio Zanchetta <primes2h@gmail.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2022\n"
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: it\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Spesa"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Movimento contabile"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Riga ordine di vendita"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
# Ryoko Tsuda <ryoko@quartile.co>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Ryoko Tsuda <ryoko@quartile.co>, 2023\n"
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "経費"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "仕訳明細"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "販売オーダ明細"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Lux Sok <sok.lux@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: km\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "ចំណាយ"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "ប្រភេទទិនានុប្បវត្ត"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "លំដាប់បញ្ជាទិញ"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "경비"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "분개 항목"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "판매 주문 내역"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
# Martin Trigaux, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2023\n"
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lo\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "ລານການລົງບັນຊີ"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "ລາຍການສິນຄ້າທີ່ສັ່ງຊື້"

View file

@ -0,0 +1,37 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
# Martin Trigaux, 2022
# Jonas Zinkevicius <jozi@odoo.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Jonas Zinkevicius <jozi@odoo.com>, 2022\n"
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lt\n"
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Išlaida"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Žurnalo įrašas"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Pardavimo užsakymo eilutė"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lv\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Avansa Norēķini"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Kontējums"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Pasūtījuma Rinda"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Niyas Raphy, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Niyas Raphy, 2023\n"
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ml\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "ചെലവ്"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "ജേർണൽ ഐറ്റം"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "സെയിൽസ് ഓർഡർ ലൈൻ"

View file

@ -0,0 +1,37 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
# Batmunkh Ganbat <batmunkh.g@bumanit.mn>, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Зардал"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Журналын бичилт"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Борлуулалтын захиалгын мөр"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Mehjabin Farsana, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Mehjabin Farsana, 2023\n"
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ms\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Perbelanjaan"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Item Jurnal"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Barisan Pesanan Jualan"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Marius Stedjan <marius@stedjan.com>, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Utlegg"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Bilagslinje"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Salgsordrelinje"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Jolien De Paepe, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Declaratie"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Dagboekitem"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Verkooporderregel"

View file

@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: no\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

View file

@ -0,0 +1,37 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2022
# Paweł Wodyński <pw@myodoo.pl>, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Wydatek"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Pozycja zapisu"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Pozycja zamówienia sprzedaży"

View file

@ -0,0 +1,37 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Nuno Silva <nuno.silva@arxi.pt>, 2022
# Manuela Silva <mmsrs@sky.com>, 2022
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022\n"
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pt\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Despesa"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Item do Diário"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Linhas da Ordem de Vendas"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Despesa"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Item de Diário"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Linha do pedido de vendas"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Dorin Hongu <dhongu@gmail.com>, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Cheltuieli"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Element jurnal"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Linie comandă vânzare"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Сергей Шебанин <sergey@shebanin.ru>, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Расход"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Элемент журнала"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Позиция заказа на продажу"

View file

@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-15 12:51+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sk\n"
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Výdavky"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Položka účtovnej knihy"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Položka objednávok"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Matjaz Mozetic <m.mozetic@matmoz.si>, 2022\n"
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Strošek"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Postavka"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Postavka prodajnega naloga"

View file

@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023\n"
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sr\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Trošak"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Stavka izveštaja"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Linija porudžbenice"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Anders Wallenquist <anders.wallenquist@vertel.se>, 2022\n"
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Utlägg"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Transaktion"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Orderrad"

View file

@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sw\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

View file

@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ta\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr ""
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Wichanon Jamwutthipreecha, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Wichanon Jamwutthipreecha, 2022\n"
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: th\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "รายจ่าย"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "รายการบันทึก"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "ไลน์คำสั่งขาย"

View file

@ -0,0 +1,37 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
# Ediz Duman <neps1192@gmail.com>, 2022
# Özlem Atalay <ozlema@eskayazilim.com.tr>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Özlem Atalay <ozlema@eskayazilim.com.tr>, 2022\n"
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: tr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Masraf"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Yevmiye Kalemi"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Satış Sipariş Satırı"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: uk\n"
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Витрати"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Елемент журналу"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Рядок замовлення"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
# Thi Huong Nguyen, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Thi Huong Nguyen, 2023\n"
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "Chi phí"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "Bút toán"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "Dòng đơn bán hàng"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
# Jeffery CHEN <jeffery9@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Jeffery CHEN <jeffery9@gmail.com>, 2023\n"
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "费用"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "日记账项目"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "销售订单行"

View file

@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_expense_margin
#
# Translators:
# Martin Trigaux, 2022
# Tony Ng, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:51+0000\n"
"PO-Revision-Date: 2022-12-16 09:47+0000\n"
"Last-Translator: Tony Ng, 2025\n"
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: sale_expense_margin
#: model:ir.model.fields,field_description:sale_expense_margin.field_sale_order_line__expense_id
msgid "Expense"
msgstr "開支"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_account_move_line
msgid "Journal Item"
msgstr "日記帳項目"
#. module: sale_expense_margin
#: model:ir.model,name:sale_expense_margin.model_sale_order_line
msgid "Sales Order Line"
msgstr "銷售訂單明細"

View file

@ -0,0 +1,5 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import account_move
from . import sale_order_line

View file

@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class AccountMoveLine(models.Model):
_inherit = 'account.move.line'
def _sale_prepare_sale_line_values(self, order, price):
res = super()._sale_prepare_sale_line_values(order, price)
if self.expense_id:
res['expense_id'] = self.expense_id.id
return res

View file

@ -0,0 +1,33 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, models, fields
class SaleOrderLine(models.Model):
_inherit = "sale.order.line"
expense_id = fields.Many2one('hr.expense', string='Expense')
@api.depends('is_expense')
def _compute_purchase_price(self):
date_today = fields.Date.context_today(self)
expense_lines = self.filtered('expense_id')
for line in expense_lines:
if line.expense_id.product_has_cost:
product_cost = line.expense_id.untaxed_amount / line.expense_id.quantity
else:
product_cost = line.expense_id.untaxed_amount
from_currency = line.expense_id.currency_id
to_currency = line.currency_id or line.order_id.currency_id
if to_currency and product_cost and from_currency != to_currency:
line.purchase_price = from_currency._convert(
from_amount=product_cost,
to_currency=to_currency,
company=line.company_id or self.env.company,
date=line.order_id.date_order or date_today,
round=False)
else:
line.purchase_price = product_cost
return super(SaleOrderLine, self - expense_lines)._compute_purchase_price()

View file

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import test_so_expense_purchase_price

View file

@ -0,0 +1,106 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.addons.hr_expense.tests.common import TestExpenseCommon
from odoo.tests import tagged
@tagged('-at_install', 'post_install')
class TestExpenseMargin(TestExpenseCommon):
def test_expense_reinvoice_purchase_price(self):
# re-invoiceable products
product_with_cost = self.product_a
product_with_cost.write({'standard_price': 1000, 'expense_policy': 'sales_price'})
product_with_no_cost = self.product_b
product_with_no_cost.write({'standard_price': 0, 'expense_policy': 'sales_price'})
# create SO line and confirm SO (with only one line)
sale_order = self.env['sale.order'].with_context(mail_notrack=True, mail_create_nolog=True).create({
'partner_id': self.partner_a.id,
'partner_invoice_id': self.partner_a.id,
'partner_shipping_id': self.partner_a.id,
'order_line': [(0, 0, {
'name': product_with_cost.name,
'product_id': product_with_cost.id,
'product_uom_qty': 2.0,
'price_unit': 13.0,
})],
})
sale_order.action_confirm()
expense_sheet = self.env['hr.expense.sheet'].create({
'name': 'First Expense for employee',
'employee_id': self.expense_employee.id,
'journal_id': self.company_data['default_journal_purchase'].id,
'accounting_date': '2020-10-12',
'expense_line_ids': [
# expense with zero cost product, with 15% tax
(0, 0, {
'name': 'expense_1',
'date': '2020-10-07',
'product_id': product_with_no_cost.id,
'unit_amount': product_with_no_cost.standard_price,
'total_amount': 100,
'tax_ids': [(6, 0, self.company_data['default_tax_purchase'].ids)],
'employee_id': self.expense_employee.id,
'sale_order_id': sale_order.id,
}),
# expense with zero cost product, with no tax
(0, 0, {
'name': 'expense_2',
'date': '2020-10-07',
'product_id': product_with_no_cost.id,
'unit_amount': product_with_no_cost.standard_price,
'total_amount': 100,
'tax_ids': False,
'employee_id': self.expense_employee.id,
'sale_order_id': sale_order.id
}),
# expense with product with cost (1000), with 15% tax
(0, 0, {
'name': 'expense_3',
'date': '2020-10-07',
'product_id': product_with_cost.id,
'quantity': 3,
'unit_amount': product_with_cost.standard_price,
'tax_ids': [(6, 0, self.company_data['default_tax_purchase'].ids)],
'employee_id': self.expense_employee.id,
'sale_order_id': sale_order.id
}),
# expense with product with cost (1000), with no tax
(0, 0, {
'name': 'expense_4',
'date': '2020-10-07',
'product_id': product_with_cost.id,
'quantity': 5,
'unit_amount': product_with_cost.standard_price,
'tax_ids': False,
'employee_id': self.expense_employee.id,
'sale_order_id': sale_order.id
}),
],
})
expense_sheet.approve_expense_sheets()
expense_sheet.action_sheet_move_create()
self.assertRecordValues(sale_order.order_line[1:], [
# Expense lines:
{
'purchase_price': 86.96,
'is_expense': True,
},
{
'purchase_price': 100.0,
'is_expense': True,
},
{
'purchase_price': 869.57,
'is_expense': True,
},
{
'purchase_price': 1000.0,
'is_expense': True,
},
])