mirror of
https://github.com/bringout/oca-ocb-l10n_me-africa.git
synced 2026-04-27 00:42:02 +02:00
Initial commit: L10N_Me Africa packages
This commit is contained in:
commit
c265268138
611 changed files with 75334 additions and 0 deletions
54
odoo-bringout-oca-ocb-l10n_il/README.md
Normal file
54
odoo-bringout-oca-ocb-l10n_il/README.md
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
# Israel - Accounting
|
||||
|
||||
|
||||
This is the latest basic Israelian localisation necessary to run Odoo in Israel:
|
||||
================================================================================
|
||||
|
||||
This module consists of:
|
||||
- Generic Israel Chart of Accounts
|
||||
- Taxes and tax report
|
||||
- Multiple Fiscal positions
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-l10n_il
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- l10n_multilang
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Israel - Accounting
|
||||
- **Version**: 1.0
|
||||
- **Category**: Accounting/Localizations/Account Charts
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `l10n_il`.
|
||||
|
||||
## 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
|
||||
32
odoo-bringout-oca-ocb-l10n_il/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-l10n_il/doc/ARCHITECTURE.md
Normal 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 L10n_il Module - l10n_il
|
||||
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.
|
||||
3
odoo-bringout-oca-ocb-l10n_il/doc/CONFIGURATION.md
Normal file
3
odoo-bringout-oca-ocb-l10n_il/doc/CONFIGURATION.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for l10n_il. Configure related models, access rights, and options as needed.
|
||||
3
odoo-bringout-oca-ocb-l10n_il/doc/CONTROLLERS.md
Normal file
3
odoo-bringout-oca-ocb-l10n_il/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
5
odoo-bringout-oca-ocb-l10n_il/doc/DEPENDENCIES.md
Normal file
5
odoo-bringout-oca-ocb-l10n_il/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [l10n_multilang](../../odoo-bringout-oca-ocb-l10n_multilang)
|
||||
4
odoo-bringout-oca-ocb-l10n_il/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-l10n_il/doc/FAQ.md
Normal 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 l10n_il or install in UI.
|
||||
7
odoo-bringout-oca-ocb-l10n_il/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-l10n_il/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-l10n_il"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-l10n_il"
|
||||
```
|
||||
11
odoo-bringout-oca-ocb-l10n_il/doc/MODELS.md
Normal file
11
odoo-bringout-oca-ocb-l10n_il/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in l10n_il.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-l10n_il/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-l10n_il/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: l10n_il. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon l10n_il
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-l10n_il/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-l10n_il/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
8
odoo-bringout-oca-ocb-l10n_il/doc/SECURITY.md
Normal file
8
odoo-bringout-oca-ocb-l10n_il/doc/SECURITY.md
Normal 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
|
||||
5
odoo-bringout-oca-ocb-l10n_il/doc/TROUBLESHOOTING.md
Normal file
5
odoo-bringout-oca-ocb-l10n_il/doc/TROUBLESHOOTING.md
Normal 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.
|
||||
7
odoo-bringout-oca-ocb-l10n_il/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-l10n_il/doc/USAGE.md
Normal 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 l10n_il
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-l10n_il/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-l10n_il/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
2
odoo-bringout-oca-ocb-l10n_il/l10n_il/__init__.py
Normal file
2
odoo-bringout-oca-ocb-l10n_il/l10n_il/__init__.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
35
odoo-bringout-oca-ocb-l10n_il/l10n_il/__manifest__.py
Normal file
35
odoo-bringout-oca-ocb-l10n_il/l10n_il/__manifest__.py
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Israel - Accounting',
|
||||
'version': '1.0',
|
||||
'category': 'Accounting/Localizations/Account Charts',
|
||||
'description': """
|
||||
This is the latest basic Israelian localisation necessary to run Odoo in Israel:
|
||||
================================================================================
|
||||
|
||||
This module consists of:
|
||||
- Generic Israel Chart of Accounts
|
||||
- Taxes and tax report
|
||||
- Multiple Fiscal positions
|
||||
""",
|
||||
'website': 'http://www.odoo.com/accounting',
|
||||
'depends': ['l10n_multilang'],
|
||||
'data': [
|
||||
'data/account_chart_template_data.xml',
|
||||
'data/account_tax_group_data.xml',
|
||||
'data/account_account_tag.xml',
|
||||
'data/account.account.template.csv',
|
||||
'data/account.group.template.csv',
|
||||
'data/account_tax_report_data.xml',
|
||||
'data/account_tax_template_data.xml',
|
||||
'data/fiscal_templates_data.xml',
|
||||
'data/account_chart_template_post_data.xml',
|
||||
'data/account_chart_template_configure_data.xml',
|
||||
],
|
||||
'demo': [
|
||||
'demo/demo_company.xml',
|
||||
],
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,87 @@
|
|||
id,code,name,account_type,reconcile,tag_ids/id,chart_template_id:id
|
||||
il_account_100100,100100,Land and buildings,asset_fixed,FALSE,,il_chart_template
|
||||
il_account_100200,100200,Machinery and equipment,asset_fixed,FALSE,,il_chart_template
|
||||
il_account_100300,100300,Vehicles,asset_fixed,FALSE,,il_chart_template
|
||||
il_account_100400,100400,Other property,asset_fixed,FALSE,,il_chart_template
|
||||
il_account_101110,101110,Stock Valuation,asset_current,FALSE,,il_chart_template
|
||||
il_account_101120,101120,Stock Interim Account (Received),asset_current,FALSE,,il_chart_template
|
||||
il_account_101130,101130,Stock Interim Account (Delivered),asset_current,FALSE,,il_chart_template
|
||||
il_account_101140,101140,Inventory - Raw materials,asset_current,FALSE,,il_chart_template
|
||||
il_account_101150,101150,Inventory - Work in progress,asset_current,FALSE,,il_chart_template
|
||||
il_account_101160,101160,Inventory - Finished goods,asset_current,FALSE,,il_chart_template
|
||||
il_account_101200,101200,Account Receivable,asset_receivable,TRUE,,il_chart_template
|
||||
il_account_101201,101201,Account Receivable(POS),asset_receivable,TRUE,,il_chart_template
|
||||
il_account_101250,101250,Allowance for credit losses,asset_current,TRUE,,il_chart_template
|
||||
il_account_101410,101410,Bank Deposit,asset_cash,FALSE,,il_chart_template
|
||||
il_account_101420,101420,Cheques,asset_cash,FALSE,,il_chart_template
|
||||
il_account_101430,101430,Financial Assets,asset_cash,FALSE,,il_chart_template
|
||||
il_account_101440,101440,Petty Cash,asset_cash,FALSE,,il_chart_template
|
||||
il_account_101310,101310,VAT - Inputs,asset_current,FALSE,,il_chart_template
|
||||
il_account_101320,101320,VAT - Fixed Assets,asset_current,FALSE,,il_chart_template
|
||||
il_account_101330,101330,VAT - Import Transactions,asset_current,FALSE,,il_chart_template
|
||||
il_account_101340,101340,VAT - PA Import Transactions,asset_current,FALSE,,il_chart_template
|
||||
il_account_101840,101840,VAT - Inputs import line,asset_current,FALSE,,il_chart_template
|
||||
il_account_100110,100110,Land and buildings depreciation,asset_non_current,FALSE,,il_chart_template
|
||||
il_account_100210,100210,Machinery and equipment depreciation,asset_non_current,FALSE,,il_chart_template
|
||||
il_account_100310,100310,Vehicles depreciation,asset_non_current,FALSE,,il_chart_template
|
||||
il_account_100410,100410,Other property depreciation,asset_non_current,FALSE,,il_chart_template
|
||||
il_account_100420,100420,Intangible Assets,asset_non_current,FALSE,,il_chart_template
|
||||
il_account_101350,101350,Prepayments,asset_current,FALSE,,il_chart_template
|
||||
il_account_111000,111000,Current Liabilities,liability_current,FALSE,,il_chart_template
|
||||
il_account_111100,111100,Account Payable,liability_payable,TRUE,,il_chart_template
|
||||
il_account_111110,111110,VAT Sales,liability_current,FALSE,,il_chart_template
|
||||
il_account_111120,111120,VAT PA Sales,liability_current,FALSE,,il_chart_template
|
||||
il_account_111200,111200,Income tax withheld - vendors,liability_current,FALSE,account_tag_retention_tax_vendor_account,il_chart_template
|
||||
il_account_111210,111210,Income tax withheld - employees,liability_current,FALSE,account_tag_retention_tax_employees_account,il_chart_template
|
||||
il_account_111220,111220,Income tax withheld - dividends,liability_current,FALSE,account_tag_retention_tax_dividend_account,il_chart_template
|
||||
il_account_111230,111230,Income tax withheld - customers,liability_current,FALSE,account_tag_retention_tax_customers_account,il_chart_template
|
||||
il_account_300300,300300,Reserve and Profit/Loss,equity,FALSE,,il_chart_template
|
||||
il_account_111400,111400,Credit cards,liability_current,FALSE,,il_chart_template
|
||||
il_account_111450,111450,Short term loans,liability_current,FALSE,,il_chart_template
|
||||
il_account_111460,111460,Interest Payable,liability_current,TRUE,,il_chart_template
|
||||
il_account_111500,111500,Employees wages,liability_current,TRUE,,il_chart_template
|
||||
il_account_111550,111550,Employees Benefits,liability_current,TRUE,,il_chart_template
|
||||
il_account_112210,112210,Deferred Revenue,liability_non_current,FALSE,,il_chart_template
|
||||
il_account_111650,111650,Advances,liability_current,TRUE,,il_chart_template
|
||||
il_account_111660,111660,Other Payable,liability_current,TRUE,,il_chart_template
|
||||
il_account_111700,111700,Income Tax,liability_current,TRUE,,il_chart_template
|
||||
il_account_111710,111710,National Insurance,liability_current,TRUE,,il_chart_template
|
||||
il_account_111720,111720,VAT due,liability_current,TRUE,,il_chart_template
|
||||
il_account_111730,111730,Deferred Taxes,liability_current,FALSE,,il_chart_template
|
||||
il_account_112000,112000,Non-current Liabilities,liability_non_current,FALSE,,il_chart_template
|
||||
il_account_112100,112100,Long Term loans,liability_non_current,FALSE,,il_chart_template
|
||||
il_account_112150,112150,Provisions,liability_non_current,FALSE,,il_chart_template
|
||||
il_account_200000,200000,Product Sales,income,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_200100,200100,Services Sales,income,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_200200,200200,Other Income,income_other,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_200300,200300,Interest Income,income_other,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_202000,202000,Other Expenses,expense,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_202100,202100,Foreign Exchange Gain&Loss,expense,FALSE,account.account_tag_financing,il_chart_template
|
||||
il_account_202200,202200,Interest Expenses,expense,FALSE,account.account_tag_financing,il_chart_template
|
||||
il_account_202300,202300,Donations,expense,FALSE,,il_chart_template
|
||||
il_account_202400,202400,Fines,expense,FALSE,,il_chart_template
|
||||
il_account_201000,201000,Cost of Goods Sold,expense_direct_cost,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_211000,211000,Cost of Services Sold,expense_direct_cost,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_212000,212000,Customer discounts,expense,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_212100,212100,Salary Expenses,expense,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_212200,212200,Purchase of Equipments,expense,FALSE,account.account_tag_investing,il_chart_template
|
||||
il_account_212300,212300,Bank Fees,expense,FALSE,account.account_tag_financing,il_chart_template
|
||||
il_account_213000,213000,Customer returns,expense_direct_cost,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_214000,214000,Vendor returns,expense_direct_cost,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_215000,215000,Vendor discounts,expense_direct_cost,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_216000,216000,Good's Shrinkage,expense_direct_cost,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_217000,217000,Lost goods,expense_direct_cost,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_220000,220000,G&A Expenses,expense,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_220100,220100,Rent Expenses,expense,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_220200,220200,Communication expenses,expense,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_220300,220300,Transportation expenses,expense,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_220400,220400,Depretiation expenses,expense,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_220500,220500,Credit provision expenses,expense,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_220600,220600,Sales and marketing expenses,expense,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_220700,220700,Other non-operating expenses,expense,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_220800,220800,Bad debts expense,expense,FALSE,account.account_tag_operating,il_chart_template
|
||||
il_account_300100,300100,Capital,equity,FALSE,,il_chart_template
|
||||
il_account_300110,300110,Ordinary Shares,equity,FALSE,,il_chart_template
|
||||
il_account_300120,300120,Preferred Shares,equity,FALSE,,il_chart_template
|
||||
il_account_300130,300130,Shares Premium,equity,FALSE,,il_chart_template
|
||||
il_account_300270,300270,current year earnings,equity_unaffected,FALSE,,il_chart_template
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
id,code_prefix_start,code_prefix_end,name,chart_template_id/id
|
||||
il_group_100100,100100,100499,"Fixed Assets",l10n_il.il_chart_template
|
||||
il_group_101110,101110,101400,"Current Assets",l10n_il.il_chart_template
|
||||
il_group_101401,101401,101799,"Bank And Cash",l10n_il.il_chart_template
|
||||
il_group_111000,111000,111999,"Current Liabilities",l10n_il.il_chart_template
|
||||
il_group_112000,112000,112210,"Non-current Liabilities",l10n_il.il_chart_template
|
||||
il_group_200000,200000,200199,"Sales Income",l10n_il.il_chart_template
|
||||
il_group_200200,200200,200300,"Other Income",l10n_il.il_chart_template
|
||||
il_group_201000,201000,201299,"Cost of Goods",l10n_il.il_chart_template
|
||||
il_group_202000,202000,220900,"Expenses",l10n_il.il_chart_template
|
||||
il_group_300000,300000,399999,"Capital And Shares",l10n_il.il_chart_template
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="account_tag_retention_tax_vendor_account" model="account.account.tag">
|
||||
<field name="name">Withholding Vendor Tax Account</field>
|
||||
</record>
|
||||
|
||||
<record id="account_tag_dividend_account" model="account.account.tag">
|
||||
<field name="name">Dividend Account</field>
|
||||
</record>
|
||||
|
||||
<record id="account_tag_retention_tax_dividend_account" model="account.account.tag">
|
||||
<field name="name">Withholding Dividend Tax Account</field>
|
||||
</record>
|
||||
|
||||
<record id="account_tag_retention_tax_employees_account" model="account.account.tag">
|
||||
<field name="name">Withholding Employees Tax Account</field>
|
||||
</record>
|
||||
|
||||
<record id="account_tag_retention_tax_customers_account" model="account.account.tag">
|
||||
<field name="name">Withholding Customers Tax Account</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
<function model="account.chart.template" name="try_loading">
|
||||
<value eval="[ref('l10n_il.il_chart_template')]"/>
|
||||
</function>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="il_chart_template" model="account.chart.template">
|
||||
<field name="name">Israel - Chart of Accounts</field>
|
||||
<field name="bank_account_code_prefix">1014</field>
|
||||
<field name="cash_account_code_prefix">1015</field>
|
||||
<field name="transfer_account_code_prefix">1017</field>
|
||||
<field name="code_digits">6</field>
|
||||
<field name="currency_id" ref="base.ILS"/>
|
||||
<field name="spoken_languages" eval="'he_IL'"/>
|
||||
<field name="country_id" ref="base.il"/>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="il_chart_template" model="account.chart.template">
|
||||
<field name="property_account_receivable_id" ref="il_account_101200"/>
|
||||
<field name="property_account_payable_id" ref="il_account_111100"/>
|
||||
<field name="property_account_expense_categ_id" ref="il_account_212200"/>
|
||||
<field name="property_account_income_categ_id" ref="il_account_200000"/>
|
||||
<field name="property_stock_account_input_categ_id" ref="il_account_101120"/>
|
||||
<field name="property_stock_account_output_categ_id" ref="il_account_101130"/>
|
||||
<field name="property_stock_valuation_account_id" ref="il_account_101110"/>
|
||||
<field name="income_currency_exchange_account_id" ref="il_account_201000"/>
|
||||
<field name="expense_currency_exchange_account_id" ref="il_account_202100"/>
|
||||
<field name="default_pos_receivable_account_id" ref="il_account_101201"/>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
<record id="tax_group_vat_16" model="account.tax.group">
|
||||
<field name="name">VAT 16%</field>
|
||||
<field name="country_id" ref="base.il"/>
|
||||
</record>
|
||||
<record id="tax_group_vat_17" model="account.tax.group">
|
||||
<field name="name">VAT 17%</field>
|
||||
<field name="country_id" ref="base.il"/>
|
||||
</record>
|
||||
<record id="tax_group_vat_exempt" model="account.tax.group">
|
||||
<field name="name">VAT exempt sale</field>
|
||||
<field name="country_id" ref="base.il"/>
|
||||
</record>
|
||||
<record id="tax_group_vat_exempt_purchase" model="account.tax.group">
|
||||
<field name="name">VAT exempt purchase</field>
|
||||
<field name="country_id" ref="base.il"/>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="vat_report" model="account.report">
|
||||
<field name="name">VAT Report (PCN874)</field>
|
||||
<field name="root_report_id" ref="account.generic_tax_report"/>
|
||||
<field name="country_id" ref="base.il"/>
|
||||
<field name="filter_fiscal_position" eval="True"/>
|
||||
<field name="availability_condition">country</field>
|
||||
<field name="column_ids">
|
||||
<record id="vat_report_balance" model="account.report.column">
|
||||
<field name="name">Balance</field>
|
||||
<field name="expression_label">balance</field>
|
||||
</record>
|
||||
</field>
|
||||
<field name="line_ids">
|
||||
<record id="account_tax_report_line_out_base_title" model="account.report.line">
|
||||
<field name="name">VAT SALES (BASE)</field>
|
||||
<field name="aggregation_formula">ILTAX_OUT_BASE.balance</field>
|
||||
<field name="children_ids">
|
||||
<record id="account_tax_report_line_out_base" model="account.report.line">
|
||||
<field name="name">VAT SALES (BASE)</field>
|
||||
<field name="code">ILTAX_OUT_BASE</field>
|
||||
<field name="expression_ids">
|
||||
<record id="account_tax_report_line_out_base_tag" model="account.report.expression">
|
||||
<field name="label">balance</field>
|
||||
<field name="engine">tax_tags</field>
|
||||
<field name="formula">VAT SALES (BASE)</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
<record id="account_tax_report_line_vat_sales_tax" model="account.report.line">
|
||||
<field name="name">VAT SALES (TAX)</field>
|
||||
<field name="code">ILTAX_OUT_BALANCE</field>
|
||||
<field name="aggregation_formula">ILTAX_OUT_BALANCE_00.balance+ILTAX_OUT_BALANCE_PA.balance</field>
|
||||
<field name="children_ids">
|
||||
<record id="account_tax_report_line_out_balance" model="account.report.line">
|
||||
<field name="name">VAT Sales</field>
|
||||
<field name="code">ILTAX_OUT_BALANCE_00</field>
|
||||
<field name="expression_ids">
|
||||
<record id="account_tax_report_line_out_balance_tag" model="account.report.expression">
|
||||
<field name="label">balance</field>
|
||||
<field name="engine">tax_tags</field>
|
||||
<field name="formula">VAT Sales</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
<record id="account_tax_report_line_out_balance_pa" model="account.report.line">
|
||||
<field name="name">VAT PA Sales</field>
|
||||
<field name="code">ILTAX_OUT_BALANCE_PA</field>
|
||||
<field name="expression_ids">
|
||||
<record id="account_tax_report_line_out_balance_pa_tag" model="account.report.expression">
|
||||
<field name="label">balance</field>
|
||||
<field name="engine">tax_tags</field>
|
||||
<field name="formula">VAT PA Sales</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
<record id="account_tax_report_line_out_base_exempt_title" model="account.report.line">
|
||||
<field name="name">VAT Exempt Sales (BASE)</field>
|
||||
<field name="aggregation_formula">ILTAX_OUT_BASE_exempt.balance</field>
|
||||
<field name="children_ids">
|
||||
<record id="account_tax_report_line_out_base_exempt" model="account.report.line">
|
||||
<field name="name">VAT Exempt Sales (BASE)</field>
|
||||
<field name="code">ILTAX_OUT_BASE_exempt</field>
|
||||
<field name="expression_ids">
|
||||
<record id="account_tax_report_line_out_base_exempt_tag" model="account.report.expression">
|
||||
<field name="label">balance</field>
|
||||
<field name="engine">tax_tags</field>
|
||||
<field name="formula">VAT Exempt Sales (BASE)</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
<record id="account_tax_report_line_in_balance" model="account.report.line">
|
||||
<field name="name">VAT INPUTS (TAX)</field>
|
||||
<field name="code">ILTAX_IN_BALANCE</field>
|
||||
<field name="aggregation_formula">ILTAX_IN_BALANCE_17.balance+ILTAX_IN_BALANCE_2_3.balance+ILTAX_IN_BALANCE_1_4.balance+ILTAX_IN_BALANCE_PA.balance</field>
|
||||
<field name="children_ids">
|
||||
<record id="account_tax_report_line_in_balance_17" model="account.report.line">
|
||||
<field name="name">VAT Inputs 17%</field>
|
||||
<field name="code">ILTAX_IN_BALANCE_17</field>
|
||||
<field name="expression_ids">
|
||||
<record id="account_tax_report_line_in_balance_17_tag" model="account.report.expression">
|
||||
<field name="label">balance</field>
|
||||
<field name="engine">tax_tags</field>
|
||||
<field name="formula">VAT Inputs 17%</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
<record id="account_tax_report_line_in_balance_pa_16" model="account.report.line">
|
||||
<field name="name">VAT Inputs PA 16%</field>
|
||||
<field name="code">ILTAX_IN_BALANCE_PA</field>
|
||||
<field name="expression_ids">
|
||||
<record id="account_tax_report_line_in_balance_pa_16_tag" model="account.report.expression">
|
||||
<field name="label">balance</field>
|
||||
<field name="engine">tax_tags</field>
|
||||
<field name="formula">VAT Inputs PA 16%</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
<record id="account_tax_report_line_in_balance_2_3" model="account.report.line">
|
||||
<field name="name">VAT Inputs 2/3</field>
|
||||
<field name="code">ILTAX_IN_BALANCE_2_3</field>
|
||||
<field name="expression_ids">
|
||||
<record id="account_tax_report_line_in_balance_2_3_tag" model="account.report.expression">
|
||||
<field name="label">balance</field>
|
||||
<field name="engine">tax_tags</field>
|
||||
<field name="formula">VAT Inputs 2/3</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
<record id="account_tax_report_line_in_balance_1_4" model="account.report.line">
|
||||
<field name="name">VAT Inputs 1/4</field>
|
||||
<field name="code">ILTAX_IN_BALANCE_1_4</field>
|
||||
<field name="expression_ids">
|
||||
<record id="account_tax_report_line_in_balance_1_4_tag" model="account.report.expression">
|
||||
<field name="label">balance</field>
|
||||
<field name="engine">tax_tags</field>
|
||||
<field name="formula">VAT Inputs 1/4</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
<record id="account_tax_report_line_vat_in_fa_title" model="account.report.line">
|
||||
<field name="name">VAT INPUTS (fixed assets)</field>
|
||||
<field name="aggregation_formula">ILTAX_VAT_IN_FA.balance</field>
|
||||
<field name="children_ids">
|
||||
<record id="account_tax_report_line_vat_in_fa" model="account.report.line">
|
||||
<field name="name">VAT INPUTS (fixed assets)</field>
|
||||
<field name="code">ILTAX_VAT_IN_FA</field>
|
||||
<field name="expression_ids">
|
||||
<record id="account_tax_report_line_vat_in_fa_tag" model="account.report.expression">
|
||||
<field name="label">balance</field>
|
||||
<field name="engine">tax_tags</field>
|
||||
<field name="formula">VAT INPUTS (fixed assets)</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
<record id="account_tax_report_line_vat_due" model="account.report.line">
|
||||
<field name="name">VAT DUE</field>
|
||||
<field name="code">ILTAX_VAT_DUE</field>
|
||||
<field name="aggregation_formula">(ILTAX_OUT_BALANCE_00.balance + ILTAX_OUT_BALANCE_PA.balance) - (ILTAX_IN_BALANCE_17.balance + ILTAX_IN_BALANCE_2_3.balance + ILTAX_IN_BALANCE_1_4.balance + ILTAX_IN_BALANCE_PA.balance) - ILTAX_VAT_IN_FA.balance</field>
|
||||
</record>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,406 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<!-- Sales Taxes -->
|
||||
<record id="il_vat_sales_17" model="account.tax.template">
|
||||
<field name="sequence">1</field>
|
||||
<field name="description">17%</field>
|
||||
<field name="name">VAT Sales</field>
|
||||
<field name="amount">17</field>
|
||||
<field name="amount_type">percent</field>
|
||||
<field name="type_tax_use">sale</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_17"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {
|
||||
'repartition_type': 'base',
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_out_base_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_111110'),
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_out_balance_tag')],
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {
|
||||
'repartition_type': 'base',
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_out_base_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_111110'),
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_out_balance_tag')],
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
<record id="il_vat_pa_sales_17" model="account.tax.template">
|
||||
<field name="sequence">8</field>
|
||||
<field name="description">17%</field>
|
||||
<field name="name">VAT PA Sales</field>
|
||||
<field name="amount">17</field>
|
||||
<field name="amount_type">percent</field>
|
||||
<field name="type_tax_use">sale</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_17"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {
|
||||
'repartition_type': 'base',
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_out_base_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_111120'),
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_out_balance_pa_tag')],
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {
|
||||
'repartition_type': 'base',
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_out_base_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_111120'),
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_out_balance_pa_tag')],
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
<record id="il_vat_sales_exempt" model="account.tax.template">
|
||||
<field name="sequence">9</field>
|
||||
<field name="description">0%</field>
|
||||
<field name="name">VAT exempt sales</field>
|
||||
<field name="price_include" eval="1"/>
|
||||
<field name="amount">0</field>
|
||||
<field name="amount_type">percent</field>
|
||||
<field name="type_tax_use">sale</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_exempt"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {
|
||||
'repartition_type': 'base',
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_out_base_exempt_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_111110'),
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {
|
||||
'repartition_type': 'base',
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_out_base_exempt_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_111110'),
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
<record id="il_vat_self_inv_purchase" model="account.tax.template">
|
||||
<field name="sequence">10</field>
|
||||
<field name="description">17%</field>
|
||||
<field name="name">Self Invoice</field>
|
||||
<field name="amount">17</field>
|
||||
<field name="amount_type">percent</field>
|
||||
<field name="type_tax_use">purchase</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_17"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {
|
||||
'factor_percent': 100,
|
||||
'repartition_type': 'base',
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_out_base_tag')]
|
||||
}),
|
||||
(0,0, {
|
||||
'factor_percent': 100,
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101310'),
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_in_balance_17_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'factor_percent': -100,
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_111110'),
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_out_balance_tag')]
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {
|
||||
'repartition_type': 'base',
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_out_base_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'factor_percent': 100,
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101310'),
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_in_balance_17_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'factor_percent': -100,
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_111110'),
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_out_balance_tag')],
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
<!-- Purchase Taxes -->
|
||||
<record id="il_vat_inputs_17" model="account.tax.template">
|
||||
<field name="sequence">2</field>
|
||||
<field name="description">17%</field>
|
||||
<field name="name">VAT inputs</field>
|
||||
<field name="amount">17</field>
|
||||
<field name="amount_type">percent</field>
|
||||
<field name="type_tax_use">purchase</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_17"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101310'),
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_in_balance_17_tag')],
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101310'),
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_in_balance_17_tag')],
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
<record id="il_vat_pa_purchase_16" model="account.tax.template">
|
||||
<field name="sequence">3</field>
|
||||
<field name="description">16%</field>
|
||||
<field name="name">VAT 16% (PA)</field>
|
||||
<field name="amount">16</field>
|
||||
<field name="amount_type">percent</field>
|
||||
<field name="type_tax_use">purchase</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_16"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101340'),
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_in_balance_pa_16_tag')],
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101340'),
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_in_balance_pa_16_tag')],
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
<record id="il_vat_inputs_2_3_17" model="account.tax.template">
|
||||
<field name="sequence">4</field>
|
||||
<field name="description">17%</field>
|
||||
<field name="name">VAT Inputs 2/3</field>
|
||||
<field name="amount">17</field>
|
||||
<field name="amount_type">percent</field>
|
||||
<field name="type_tax_use">purchase</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_17"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'factor_percent': 66.67,
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101310'),
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_in_balance_2_3_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'factor_percent': 33.33,
|
||||
'repartition_type': 'tax',
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'factor_percent': 66.67,
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101310'),
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_in_balance_2_3_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'factor_percent': 33.33,
|
||||
'repartition_type': 'tax',
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
<record id="il_vat_inputs_1_4_17" model="account.tax.template">
|
||||
<field name="sequence">5</field>
|
||||
<field name="description">17%</field>
|
||||
<field name="name">VAT Inputs 1/4</field>
|
||||
<field name="amount">17</field>
|
||||
<field name="amount_type">percent</field>
|
||||
<field name="type_tax_use">purchase</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_17"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'factor_percent': 75,
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101310'),
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_in_balance_1_4_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'factor_percent': 25,
|
||||
'repartition_type': 'tax',
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'factor_percent': 75,
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101310'),
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_in_balance_1_4_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'factor_percent': 25,
|
||||
'repartition_type': 'tax',
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
<record id="il_vat_inputs_fa_17" model="account.tax.template">
|
||||
<field name="sequence">6</field>
|
||||
<field name="description">17%</field>
|
||||
<field name="name">VAT inputs for fixed assets</field>
|
||||
<field name="amount">17</field>
|
||||
<field name="amount_type">percent</field>
|
||||
<field name="type_tax_use">purchase</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_17"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101320'),
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_vat_in_fa_tag')],
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101320'),
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_vat_in_fa_tag')],
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
<record id="il_vat_purchase_exempt" model="account.tax.template">
|
||||
<field name="sequence">7</field>
|
||||
<field name="description">0%</field>
|
||||
<field name="name">VAT exempt purchase</field>
|
||||
<field name="amount">0</field>
|
||||
<field name="price_include" eval="1"/>
|
||||
<field name="amount_type">percent</field>
|
||||
<field name="type_tax_use">purchase</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_exempt_purchase"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101310'),
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101310'),
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
<record id="il_vat_only_purchase" model="account.tax.template">
|
||||
<field name="sequence">17</field>
|
||||
<field name="description">0%</field>
|
||||
<field name="name">VAT Import Line</field>
|
||||
<field name="description">VAT Import Line</field>
|
||||
<field name="amount">100</field>
|
||||
<field name="amount_type">division</field>
|
||||
<field name="type_tax_use">purchase</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_17"/>
|
||||
<field name="price_include" eval="True"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101840'),
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_in_balance_17_tag')],
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101840'),
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_in_balance_17_tag')],
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
<record id="il_vat_purchase_zero" model="account.tax.template">
|
||||
<field name="sequence">7</field>
|
||||
<field name="description">0%</field>
|
||||
<field name="name">VAT Zero</field>
|
||||
<field name="amount">0</field>
|
||||
<field name="amount_type">percent</field>
|
||||
<field name="price_include" eval="1"/>
|
||||
<field name="type_tax_use">purchase</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_exempt_purchase"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101310'),
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {'repartition_type': 'base'}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_101310'),
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
<record id="il_vat_sales_zero" model="account.tax.template">
|
||||
<field name="sequence">9</field>
|
||||
<field name="description">0%</field>
|
||||
<field name="name">VAT Zero</field>
|
||||
<field name="price_include" eval="1"/>
|
||||
<field name="amount">0</field>
|
||||
<field name="amount_type">percent</field>
|
||||
<field name="type_tax_use">sale</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="tax_group_id" ref="tax_group_vat_exempt"/>
|
||||
<field name="invoice_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {
|
||||
'repartition_type': 'base',
|
||||
'plus_report_expression_ids': [ref('account_tax_report_line_out_base_exempt_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_111110'),
|
||||
}),
|
||||
]"/>
|
||||
<field name="refund_repartition_line_ids" eval="[(5, 0, 0),
|
||||
(0,0, {
|
||||
'repartition_type': 'base',
|
||||
'minus_report_expression_ids': [ref('account_tax_report_line_out_base_exempt_tag')],
|
||||
}),
|
||||
(0,0, {
|
||||
'repartition_type': 'tax',
|
||||
'account_id': ref('il_account_111110'),
|
||||
}),
|
||||
]"/>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<!-- Israel keep standard taxes -->
|
||||
<record id="account_fiscal_position_israel" model="account.fiscal.position.template">
|
||||
<field name="name">Israel</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
<field name="country_id" ref="base.il"/>
|
||||
<field name="auto_apply" eval="True"/>
|
||||
</record>
|
||||
|
||||
<!-- Palestinian Authority (PA) -->
|
||||
<record id="account_fiscal_position_palestinian_authority" model="account.fiscal.position.template">
|
||||
<field name="name">Palestinian Authority (PA)</field>
|
||||
<field name="auto_apply" eval="True"/>
|
||||
<field name="country_id" ref="base.ps"/>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
</record>
|
||||
|
||||
<record id="account_fiscal_position_palestinian_authority_01" model="account.fiscal.position.tax.template">
|
||||
<field name="tax_src_id" ref="il_vat_sales_17"/>
|
||||
<field name="tax_dest_id" ref="il_vat_pa_sales_17"/>
|
||||
<field name="position_id" ref="account_fiscal_position_palestinian_authority"/>
|
||||
</record>
|
||||
|
||||
<record id="account_fiscal_position_palestinian_authority_02" model="account.fiscal.position.tax.template">
|
||||
<field name="tax_src_id" ref="il_vat_inputs_17"/>
|
||||
<field name="tax_dest_id" ref="il_vat_pa_purchase_16"/>
|
||||
<field name="position_id" ref="account_fiscal_position_palestinian_authority"/>
|
||||
</record>
|
||||
|
||||
<!-- Import / Export -->
|
||||
<record id="account_fiscal_position_import_export" model="account.fiscal.position.template">
|
||||
<field name="name">Import / Export</field>
|
||||
<field name="auto_apply" eval="True"/>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
</record>
|
||||
|
||||
<record id="account_fiscal_position_import_export_01" model="account.fiscal.position.tax.template">
|
||||
<field name="tax_src_id" ref="il_vat_sales_17"/>
|
||||
<field name="tax_dest_id" ref="il_vat_sales_exempt"/>
|
||||
<field name="position_id" ref="account_fiscal_position_import_export"/>
|
||||
</record>
|
||||
|
||||
<record id="account_fiscal_position_import_export_02" model="account.fiscal.position.tax.template">
|
||||
<field name="tax_src_id" ref="il_vat_inputs_17"/>
|
||||
<field name="position_id" ref="account_fiscal_position_import_export"/>
|
||||
</record>
|
||||
|
||||
<!-- Eilat City -->
|
||||
<record id="account_fiscal_position_eilat" model="account.fiscal.position.template">
|
||||
<field name="name">Eilat</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
</record>
|
||||
|
||||
<record id="account_fiscal_position_eilat_01" model="account.fiscal.position.tax.template">
|
||||
<field name="tax_src_id" ref="il_vat_sales_17"/>
|
||||
<field name="tax_dest_id" ref="il_vat_sales_exempt"/>
|
||||
<field name="position_id" ref="account_fiscal_position_eilat"/>
|
||||
</record>
|
||||
|
||||
<record id="account_fiscal_position_eilat_02" model="account.fiscal.position.tax.template">
|
||||
<field name="tax_src_id" ref="il_vat_inputs_17"/>
|
||||
<field name="tax_dest_id" ref="il_vat_purchase_exempt"/>
|
||||
<field name="position_id" ref="account_fiscal_position_eilat"/>
|
||||
</record>
|
||||
|
||||
<!-- Vat Zero -->
|
||||
<record id="account_fiscal_position_vat_zero" model="account.fiscal.position.template">
|
||||
<field name="name">Vat Zero</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
</record>
|
||||
|
||||
<record id="account_fiscal_position_vat_zero_01" model="account.fiscal.position.tax.template">
|
||||
<field name="tax_src_id" ref="il_vat_sales_17"/>
|
||||
<field name="tax_dest_id" ref="il_vat_sales_zero"/>
|
||||
<field name="position_id" ref="account_fiscal_position_vat_zero"/>
|
||||
</record>
|
||||
|
||||
<record id="account_fiscal_position_vat_zero_02" model="account.fiscal.position.tax.template">
|
||||
<field name="tax_src_id" ref="il_vat_inputs_17"/>
|
||||
<field name="tax_dest_id" ref="il_vat_purchase_zero"/>
|
||||
<field name="position_id" ref="account_fiscal_position_vat_zero"/>
|
||||
</record>
|
||||
|
||||
<!-- Self Invoice -->
|
||||
<record id="account_fiscal_position_self_invoice" model="account.fiscal.position.template">
|
||||
<field name="name">Self Invoice</field>
|
||||
<field name="chart_template_id" ref="il_chart_template"/>
|
||||
</record>
|
||||
|
||||
<record id="account_fiscal_position_self_invoice_01" model="account.fiscal.position.tax.template">
|
||||
<field name="tax_src_id" ref="il_vat_inputs_17"/>
|
||||
<field name="tax_dest_id" ref="il_vat_self_inv_purchase"/>
|
||||
<field name="position_id" ref="account_fiscal_position_self_invoice"/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
34
odoo-bringout-oca-ocb-l10n_il/l10n_il/demo/demo_company.xml
Normal file
34
odoo-bringout-oca-ocb-l10n_il/l10n_il/demo/demo_company.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="partner_demo_company_il" model="res.partner">
|
||||
<field name="name">IL Company</field>
|
||||
<field name="vat"></field>
|
||||
<field name="street">500 </field>
|
||||
<field name="city">תל אביב-יפו</field>
|
||||
<field name="country_id" ref="base.il"/>
|
||||
|
||||
<field name="zip">no</field>
|
||||
<field name="phone">+972 50-234-5678</field>
|
||||
<field name="email">info@company.ilexample.com</field>
|
||||
<field name="website">www.ilexample.com</field>
|
||||
</record>
|
||||
|
||||
<record id="demo_company_il" model="res.company">
|
||||
<field name="name">IL Company</field>
|
||||
<field name="partner_id" ref="partner_demo_company_il"/>
|
||||
</record>
|
||||
|
||||
<function model="res.company" name="_onchange_country_id">
|
||||
<value eval="[ref('demo_company_il')]"/>
|
||||
</function>
|
||||
|
||||
<function model="res.users" name="write">
|
||||
<value eval="[ref('base.user_root'), ref('base.user_admin'), ref('base.user_demo')]"/>
|
||||
<value eval="{'company_ids': [(4, ref('l10n_il.demo_company_il'))]}"/>
|
||||
</function>
|
||||
|
||||
<function model="account.chart.template" name="try_loading">
|
||||
<value eval="[ref('l10n_il.il_chart_template')]"/>
|
||||
<value model="res.company" eval="obj().env.ref('l10n_il.demo_company_il')"/>
|
||||
</function>
|
||||
</odoo>
|
||||
687
odoo-bringout-oca-ocb-l10n_il/l10n_il/i18n/he_IL.po
Normal file
687
odoo-bringout-oca-ocb-l10n_il/l10n_il/i18n/he_IL.po
Normal file
|
|
@ -0,0 +1,687 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * l10n_il
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-11-02 14:57+0000\n"
|
||||
"PO-Revision-Date: 2022-11-02 14:57+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: l10n_il
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_pa_purchase_16
|
||||
msgid "16%"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_inputs_17
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_inputs_1_4_17
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_inputs_2_3_17
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_inputs_fa_17
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_pa_sales_17
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_sales_17
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_self_inv_purchase
|
||||
msgid "17%"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111100
|
||||
msgid "Account Payable"
|
||||
msgstr "חשבון ספקים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101200
|
||||
msgid "Account Receivable"
|
||||
msgstr "חשבון לקוחות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101201
|
||||
msgid "Account Receivable(POS)"
|
||||
msgstr "חשבון לקוחות (קופה)"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111650
|
||||
msgid "Advances"
|
||||
msgstr "מקדמות מלקוחות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101250
|
||||
msgid "Allowance for credit losses"
|
||||
msgstr "הפרשה לחובות מסופקים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220800
|
||||
msgid "Bad debts expense"
|
||||
msgstr "חובות מסופקים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_101401
|
||||
msgid "Bank And Cash"
|
||||
msgstr "בנק ומזומנים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101410
|
||||
msgid "Bank Deposit"
|
||||
msgstr "פקדונות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_212300
|
||||
msgid "Bank Fees"
|
||||
msgstr "עמלות בנקים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_300100
|
||||
msgid "Capital"
|
||||
msgstr "הון"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_300000
|
||||
msgid "Capital And Shares"
|
||||
msgstr "הון ומניות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101420
|
||||
msgid "Cheques"
|
||||
msgstr "קופת שיקים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220200
|
||||
msgid "Communication expenses"
|
||||
msgstr "הוצאות תקשורת"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_201000
|
||||
msgid "Cost of Goods"
|
||||
msgstr "עלות המכר"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_201000
|
||||
msgid "Cost of Goods Sold"
|
||||
msgstr "רווח ממטבע חוץ"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_211000
|
||||
msgid "Cost of Services Sold"
|
||||
msgstr "עלות המכר - שרותים שנמכרו"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111400
|
||||
msgid "Credit cards"
|
||||
msgstr "כרטיסי אשראי"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220500
|
||||
msgid "Credit provision expenses"
|
||||
msgstr "הוצאות הפרשות אשראי"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_101110
|
||||
msgid "Current Assets"
|
||||
msgstr "רכוש שוטף"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111000
|
||||
#: model:account.group.template,name:l10n_il.il_group_111000
|
||||
msgid "Current Liabilities"
|
||||
msgstr "התחייבויות שוטפות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_212000
|
||||
msgid "Customer discounts"
|
||||
msgstr "הנחות לקוח"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_213000
|
||||
msgid "Customer returns"
|
||||
msgstr "החזרות מלקוחות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_112210
|
||||
msgid "Deferred Revenue"
|
||||
msgstr "הכנסות נדחות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111730
|
||||
msgid "Deferred Taxes"
|
||||
msgstr "מיסים נדחים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220400
|
||||
msgid "Depretiation expenses"
|
||||
msgstr "הוצאות פחת"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.tag,name:l10n_il.account_tag_dividend_account
|
||||
msgid "Dividend Account"
|
||||
msgstr "דיבידנדים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_202300
|
||||
msgid "Donations"
|
||||
msgstr "תרומות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.fiscal.position.template,name:l10n_il.account_fiscal_position_eilat
|
||||
msgid "Eilat"
|
||||
msgstr "אילת"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111550
|
||||
msgid "Employees Benefits"
|
||||
msgstr "הטבות לעובדים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111500
|
||||
msgid "Employees wages"
|
||||
msgstr "משכורות עובדים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_202000
|
||||
msgid "Expenses"
|
||||
msgstr "הוצאות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101430
|
||||
msgid "Financial Assets"
|
||||
msgstr "נכסים פיננסיים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_202400
|
||||
msgid "Fines"
|
||||
msgstr "קנסות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_100100
|
||||
msgid "Fixed Assets"
|
||||
msgstr "רכוש קבוע"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_202100
|
||||
msgid "Foreign Exchange Gain&Loss"
|
||||
msgstr "הפסד ממטבע חוץ"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220000
|
||||
msgid "G&A Expenses"
|
||||
msgstr "הוצאות הנהלה וכלליות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_216000
|
||||
msgid "Good's Shrinkage"
|
||||
msgstr "התכווצות סחורה"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.fiscal.position.template,name:l10n_il.account_fiscal_position_import_export
|
||||
msgid "Import / Export"
|
||||
msgstr "ייבוא \\ ייצוא"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111700
|
||||
msgid "Income Tax"
|
||||
msgstr "מס הכנסה"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111230
|
||||
msgid "Income tax withheld - customers"
|
||||
msgstr "ניכוי מס במקור- לקוחות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111220
|
||||
msgid "Income tax withheld - dividends"
|
||||
msgstr "ניכוי מס במקור- דיבידנד"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111210
|
||||
msgid "Income tax withheld - employees"
|
||||
msgstr "ניכוי מס במקור- עובדים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111200
|
||||
msgid "Income tax withheld - vendors"
|
||||
msgstr "ניכוי מס במקור- ספקים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100420
|
||||
msgid "Intangible Assets"
|
||||
msgstr "נכסים בלתי מוחשיים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_202200
|
||||
msgid "Interest Expenses"
|
||||
msgstr "הוצאות ריבית"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_200300
|
||||
msgid "Interest Income"
|
||||
msgstr "הכנסות מריבית"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111460
|
||||
msgid "Interest Payable"
|
||||
msgstr "ריבית לשלם"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101160
|
||||
msgid "Inventory - Finished goods"
|
||||
msgstr "מלאי- מוצרים מוגמרים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101140
|
||||
msgid "Inventory - Raw materials"
|
||||
msgstr "מלאי- חומרי גלם"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101150
|
||||
msgid "Inventory - Work in progress"
|
||||
msgstr "מלאי- עבודה בתהליך"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.fiscal.position.template,name:l10n_il.account_fiscal_position_israel
|
||||
msgid "Israel"
|
||||
msgstr "ישראל"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.chart.template,name:l10n_il.il_chart_template
|
||||
msgid "Israel - Chart of Accounts"
|
||||
msgstr "ישראל - לוח חשבונות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100100
|
||||
msgid "Land and buildings"
|
||||
msgstr "קרקע ומבנים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100110
|
||||
msgid "Land and buildings depreciation"
|
||||
msgstr "הוצאות פחת קרקע ומבנים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_chart_template_liquidity_transfer
|
||||
msgid "Liquidity Transfer"
|
||||
msgstr "התאמה בין יומנים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_112100
|
||||
msgid "Long Term loans"
|
||||
msgstr "הלוואות לטווח ארוך"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_217000
|
||||
msgid "Lost goods"
|
||||
msgstr "איבוד סחורה"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100200
|
||||
msgid "Machinery and equipment"
|
||||
msgstr "מכונות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100210
|
||||
msgid "Machinery and equipment depreciation"
|
||||
msgstr "הוצאות פחת מכונות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111710
|
||||
msgid "National Insurance"
|
||||
msgstr "ביטוח לאומי"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_112000
|
||||
#: model:account.group.template,name:l10n_il.il_group_112000
|
||||
msgid "Non-current Liabilities"
|
||||
msgstr "התחייבויות לא שוטפות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_300110
|
||||
msgid "Ordinary Shares"
|
||||
msgstr "מניות רגילות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_202000
|
||||
msgid "Other Expenses"
|
||||
msgstr "הכנסות אחרות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_200200
|
||||
#: model:account.group.template,name:l10n_il.il_group_200200
|
||||
msgid "Other Income"
|
||||
msgstr "הכנסות אחרות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111660
|
||||
msgid "Other Payable"
|
||||
msgstr "הוצאות לשלם"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220700
|
||||
msgid "Other non-operating expenses"
|
||||
msgstr "הוצאות אחרות שאינן תפעוליות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100400
|
||||
msgid "Other property"
|
||||
msgstr "נכסים אחרים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100410
|
||||
msgid "Other property depreciation"
|
||||
msgstr "הוצאות פחת נכסים אחרים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.fiscal.position.template,name:l10n_il.account_fiscal_position_palestinian_authority
|
||||
msgid "Palestinian Authority (PA)"
|
||||
msgstr "הרשות הפלסטינית"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101440
|
||||
msgid "Petty Cash"
|
||||
msgstr "קופה קטנה"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_300120
|
||||
msgid "Preferred Shares"
|
||||
msgstr "מניות מועדפות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101350
|
||||
msgid "Prepayments"
|
||||
msgstr "הוצאות מראש"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_200000
|
||||
msgid "Product Sales"
|
||||
msgstr "מכירות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_112150
|
||||
msgid "Provisions"
|
||||
msgstr "הפרשות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_212200
|
||||
msgid "Purchase of Equipments"
|
||||
msgstr "רכישת ציוד"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220100
|
||||
msgid "Rent Expenses"
|
||||
msgstr "הוצאות שכירות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_300300
|
||||
msgid "Reserve and Profit/Loss Account"
|
||||
msgstr "יתרות וחשבון רווח והפסד"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_212100
|
||||
msgid "Salary Expenses"
|
||||
msgstr "הוצאות משכורת"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_200000
|
||||
msgid "Sales Income"
|
||||
msgstr "הכנסות ממכירות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220600
|
||||
msgid "Sales and marketing expenses"
|
||||
msgstr "הוצאות מכירות ושיווק"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.fiscal.position.template,name:l10n_il.account_fiscal_position_self_invoice
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_self_inv_purchase
|
||||
msgid "Self Invoice"
|
||||
msgstr "חשבונית עצמית"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_200100
|
||||
msgid "Services Sales"
|
||||
msgstr "מכירות שירות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_300130
|
||||
msgid "Shares Premium"
|
||||
msgstr "מניות פרימיום"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111450
|
||||
msgid "Short term loans"
|
||||
msgstr "הלוואות לזמן קצר"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101130
|
||||
msgid "Stock Interim Account (Delivered)"
|
||||
msgstr "חשבון זמני - מלאי שנשלח"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101120
|
||||
msgid "Stock Interim Account (Received)"
|
||||
msgstr "חשבון זמני - מלאי שהתקבל"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101110
|
||||
msgid "Stock Valuation account"
|
||||
msgstr "חשבון שווי מלאי"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220300
|
||||
msgid "Transportation expenses"
|
||||
msgstr "הוצאות תחבורה"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101320
|
||||
msgid "VAT - Fixed Assets"
|
||||
msgstr "מע\"מ תשומות (רכוש קבוע)"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101330
|
||||
msgid "VAT - Import Transactions"
|
||||
msgstr "מע\"מ - ייבוא"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101310
|
||||
msgid "VAT - Inputs"
|
||||
msgstr "מע\"מ תשומות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101840
|
||||
msgid "VAT - Inputs import line"
|
||||
msgstr "מע\"מ - תשומות ייבוא"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101340
|
||||
msgid "VAT - PA Import Transactions"
|
||||
msgstr "מע\"מ - ייבוא מפלסטין"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.group,name:l10n_il.tax_group_vat_16
|
||||
msgid "VAT 16%"
|
||||
msgstr "מע\"מ 16%"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_pa_purchase_16
|
||||
msgid "VAT 16% (PA)"
|
||||
msgstr "מע\"מ תשומות 16%"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.group,name:l10n_il.tax_group_vat_17
|
||||
msgid "VAT 17%"
|
||||
msgstr "מע\"מ 17%"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_vat_due
|
||||
msgid "VAT DUE"
|
||||
msgstr "מע\"מ לתשלום"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_out_base_exempt
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_out_base_exempt_title
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_out_base_exempt
|
||||
msgid "VAT Exempt Sales (BASE)"
|
||||
msgstr "הכנסות פטורות ממע\"מ"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_in_balance
|
||||
msgid "VAT INPUTS (TAX)"
|
||||
msgstr "מע\"מ תשומות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_vat_in_fa
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_vat_in_fa_title
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_vat_in_fa
|
||||
msgid "VAT INPUTS (fixed assets)"
|
||||
msgstr "מע\"מ תשומות (רכוש קבוע)"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_only_purchase
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_only_purchase
|
||||
msgid "VAT Import Line"
|
||||
msgstr "שורת מע\"מ ייבוא"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_in_balance_1_4
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_in_balance_1_4
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_inputs_1_4_17
|
||||
msgid "VAT Inputs 1/4"
|
||||
msgstr "מע\"מ תשומות 1/4"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_in_balance_17
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_in_balance_17
|
||||
msgid "VAT Inputs 17%"
|
||||
msgstr "מע\"מ תשומות 17%"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_in_balance_2_3
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_in_balance_2_3
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_inputs_2_3_17
|
||||
msgid "VAT Inputs 2/3"
|
||||
msgstr "מע\"מ תשומות 2/3"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_in_balance_pa_16
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_in_balance_pa_16
|
||||
msgid "VAT Inputs PA 16%"
|
||||
msgstr "מע\"מ תשומות 16%"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111120
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_out_balance_pa
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_out_balance_pa
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_pa_sales_17
|
||||
msgid "VAT PA Sales"
|
||||
msgstr "מע\"מ עסקאות- פלסטין"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_out_base
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_out_base_title
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_out_base
|
||||
msgid "VAT SALES (BASE)"
|
||||
msgstr "הכנסות חייבות במע\"מ"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_vat_sales_tax
|
||||
msgid "VAT SALES (TAX)"
|
||||
msgstr "מע\"מ עסקאות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111110
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_out_balance
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_out_balance
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_sales_17
|
||||
msgid "VAT Sales"
|
||||
msgstr "מע\"מ עסקאות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_purchase_zero
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_sales_zero
|
||||
msgid "VAT Zero"
|
||||
msgstr "מע\"מ אפס"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111720
|
||||
msgid "VAT due"
|
||||
msgstr "מע\"מ לתשלום"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.group,name:l10n_il.tax_group_vat_exempt_purchase
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_purchase_exempt
|
||||
msgid "VAT exempt purchase"
|
||||
msgstr "מע\"מ תשומות פטורות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.group,name:l10n_il.tax_group_vat_exempt
|
||||
msgid "VAT exempt sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_sales_exempt
|
||||
msgid "VAT exempt sales"
|
||||
msgstr "מע\"מ עסקאות פטורות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_inputs_17
|
||||
msgid "VAT inputs"
|
||||
msgstr "מע\"מ תשומות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_inputs_fa_17
|
||||
msgid "VAT inputs for fixed assets"
|
||||
msgstr "מע\"מ תשומות לרכוש קבוע"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.fiscal.position.template,name:l10n_il.account_fiscal_position_vat_zero
|
||||
msgid "Vat Zero"
|
||||
msgstr "מע\"מ אפס"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100300
|
||||
msgid "Vehicles"
|
||||
msgstr "כלי רכב"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100310
|
||||
msgid "Vehicles depreciation"
|
||||
msgstr "הוצאות פחת מכוניות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_215000
|
||||
msgid "Vendor discounts"
|
||||
msgstr "הנחות מספקים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_214000
|
||||
msgid "Vendor returns"
|
||||
msgstr "החזרות לספקים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.tag,name:l10n_il.account_tag_retention_tax_customers_account
|
||||
msgid "Withholding Customers Tax Account"
|
||||
msgstr "ניכוי במקור - לקוחות"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.tag,name:l10n_il.account_tag_retention_tax_dividend_account
|
||||
msgid "Withholding Dividend Tax Account"
|
||||
msgstr "ניכוי מס במקור- דיבידנד"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.tag,name:l10n_il.account_tag_retention_tax_employees_account
|
||||
msgid "Withholding Employees Tax Account"
|
||||
msgstr "ניכוי במקור - עובדים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.tag,name:l10n_il.account_tag_retention_tax_vendor_account
|
||||
msgid "Withholding Vendor Tax Account"
|
||||
msgstr "ניכוי מס במקור- ספקים"
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_300270
|
||||
msgid "current year earnings"
|
||||
msgstr "עודפים מהשנה הנוכחית"
|
||||
687
odoo-bringout-oca-ocb-l10n_il/l10n_il/i18n/l10n_il.pot
Normal file
687
odoo-bringout-oca-ocb-l10n_il/l10n_il/i18n/l10n_il.pot
Normal file
|
|
@ -0,0 +1,687 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * l10n_il
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-11-02 14:52+0000\n"
|
||||
"PO-Revision-Date: 2022-11-02 14:52+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: l10n_il
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_pa_purchase_16
|
||||
msgid "16%"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_inputs_17
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_inputs_1_4_17
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_inputs_2_3_17
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_inputs_fa_17
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_pa_sales_17
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_sales_17
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_self_inv_purchase
|
||||
msgid "17%"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111100
|
||||
msgid "Account Payable"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101200
|
||||
msgid "Account Receivable"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101201
|
||||
msgid "Account Receivable(POS)"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111650
|
||||
msgid "Advances"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101250
|
||||
msgid "Allowance for credit losses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220800
|
||||
msgid "Bad debts expense"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_101401
|
||||
msgid "Bank And Cash"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101410
|
||||
msgid "Bank Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_212300
|
||||
msgid "Bank Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_300100
|
||||
msgid "Capital"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_300000
|
||||
msgid "Capital And Shares"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101420
|
||||
msgid "Cheques"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220200
|
||||
msgid "Communication expenses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_201000
|
||||
msgid "Cost of Goods"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_201000
|
||||
msgid "Cost of Goods Sold"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_211000
|
||||
msgid "Cost of Services Sold"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111400
|
||||
msgid "Credit cards"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220500
|
||||
msgid "Credit provision expenses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_101110
|
||||
msgid "Current Assets"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111000
|
||||
#: model:account.group.template,name:l10n_il.il_group_111000
|
||||
msgid "Current Liabilities"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_212000
|
||||
msgid "Customer discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_213000
|
||||
msgid "Customer returns"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_112210
|
||||
msgid "Deferred Revenue"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111730
|
||||
msgid "Deferred Taxes"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220400
|
||||
msgid "Depretiation expenses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.tag,name:l10n_il.account_tag_dividend_account
|
||||
msgid "Dividend Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_202300
|
||||
msgid "Donations"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.fiscal.position.template,name:l10n_il.account_fiscal_position_eilat
|
||||
msgid "Eilat"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111550
|
||||
msgid "Employees Benefits"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111500
|
||||
msgid "Employees wages"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_202000
|
||||
msgid "Expenses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101430
|
||||
msgid "Financial Assets"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_202400
|
||||
msgid "Fines"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_100100
|
||||
msgid "Fixed Assets"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_202100
|
||||
msgid "Foreign Exchange Gain&Loss"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220000
|
||||
msgid "G&A Expenses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_216000
|
||||
msgid "Good's Shrinkage"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.fiscal.position.template,name:l10n_il.account_fiscal_position_import_export
|
||||
msgid "Import / Export"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111700
|
||||
msgid "Income Tax"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111230
|
||||
msgid "Income tax withheld - customers"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111220
|
||||
msgid "Income tax withheld - dividends"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111210
|
||||
msgid "Income tax withheld - employees"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111200
|
||||
msgid "Income tax withheld - vendors"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100420
|
||||
msgid "Intangible Assets"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_202200
|
||||
msgid "Interest Expenses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_200300
|
||||
msgid "Interest Income"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111460
|
||||
msgid "Interest Payable"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101160
|
||||
msgid "Inventory - Finished goods"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101140
|
||||
msgid "Inventory - Raw materials"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101150
|
||||
msgid "Inventory - Work in progress"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.fiscal.position.template,name:l10n_il.account_fiscal_position_israel
|
||||
msgid "Israel"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.chart.template,name:l10n_il.il_chart_template
|
||||
msgid "Israel - Chart of Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100100
|
||||
msgid "Land and buildings"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100110
|
||||
msgid "Land and buildings depreciation"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_chart_template_liquidity_transfer
|
||||
msgid "Liquidity Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_112100
|
||||
msgid "Long Term loans"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_217000
|
||||
msgid "Lost goods"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100200
|
||||
msgid "Machinery and equipment"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100210
|
||||
msgid "Machinery and equipment depreciation"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111710
|
||||
msgid "National Insurance"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_112000
|
||||
#: model:account.group.template,name:l10n_il.il_group_112000
|
||||
msgid "Non-current Liabilities"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_300110
|
||||
msgid "Ordinary Shares"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_202000
|
||||
msgid "Other Expenses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_200200
|
||||
#: model:account.group.template,name:l10n_il.il_group_200200
|
||||
msgid "Other Income"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111660
|
||||
msgid "Other Payable"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220700
|
||||
msgid "Other non-operating expenses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100400
|
||||
msgid "Other property"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100410
|
||||
msgid "Other property depreciation"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.fiscal.position.template,name:l10n_il.account_fiscal_position_palestinian_authority
|
||||
msgid "Palestinian Authority (PA)"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101440
|
||||
msgid "Petty Cash"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_300120
|
||||
msgid "Preferred Shares"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101350
|
||||
msgid "Prepayments"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_200000
|
||||
msgid "Product Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_112150
|
||||
msgid "Provisions"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_212200
|
||||
msgid "Purchase of Equipments"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220100
|
||||
msgid "Rent Expenses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_300300
|
||||
msgid "Reserve and Profit/Loss Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_212100
|
||||
msgid "Salary Expenses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.group.template,name:l10n_il.il_group_200000
|
||||
msgid "Sales Income"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220600
|
||||
msgid "Sales and marketing expenses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.fiscal.position.template,name:l10n_il.account_fiscal_position_self_invoice
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_self_inv_purchase
|
||||
msgid "Self Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_200100
|
||||
msgid "Services Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_300130
|
||||
msgid "Shares Premium"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111450
|
||||
msgid "Short term loans"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101130
|
||||
msgid "Stock Interim Account (Delivered)"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101120
|
||||
msgid "Stock Interim Account (Received)"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101110
|
||||
msgid "Stock Valuation account"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_220300
|
||||
msgid "Transportation expenses"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101320
|
||||
msgid "VAT - Fixed Assets"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101330
|
||||
msgid "VAT - Import Transactions"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101310
|
||||
msgid "VAT - Inputs"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101840
|
||||
msgid "VAT - Inputs import line"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_101340
|
||||
msgid "VAT - PA Import Transactions"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.group,name:l10n_il.tax_group_vat_16
|
||||
msgid "VAT 16%"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_pa_purchase_16
|
||||
msgid "VAT 16% (PA)"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.group,name:l10n_il.tax_group_vat_17
|
||||
msgid "VAT 17%"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_vat_due
|
||||
msgid "VAT DUE"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_out_base_exempt
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_out_base_exempt_title
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_out_base_exempt
|
||||
msgid "VAT Exempt Sales (BASE)"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_in_balance
|
||||
msgid "VAT INPUTS (TAX)"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_vat_in_fa
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_vat_in_fa_title
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_vat_in_fa
|
||||
msgid "VAT INPUTS (fixed assets)"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,description:l10n_il.il_vat_only_purchase
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_only_purchase
|
||||
msgid "VAT Import Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_in_balance_1_4
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_in_balance_1_4
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_inputs_1_4_17
|
||||
msgid "VAT Inputs 1/4"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_in_balance_17
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_in_balance_17
|
||||
msgid "VAT Inputs 17%"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_in_balance_2_3
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_in_balance_2_3
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_inputs_2_3_17
|
||||
msgid "VAT Inputs 2/3"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_in_balance_pa_16
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_in_balance_pa_16
|
||||
msgid "VAT Inputs PA 16%"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111120
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_out_balance_pa
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_out_balance_pa
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_pa_sales_17
|
||||
msgid "VAT PA Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_out_base
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_out_base_title
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_out_base
|
||||
msgid "VAT SALES (BASE)"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_vat_sales_tax
|
||||
msgid "VAT SALES (TAX)"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111110
|
||||
#: model:account.report.line,name:l10n_il.account_tax_report_line_out_balance
|
||||
#: model:account.report.line,tag_name:l10n_il.account_tax_report_line_out_balance
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_sales_17
|
||||
msgid "VAT Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_purchase_zero
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_sales_zero
|
||||
msgid "VAT Zero"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_111720
|
||||
msgid "VAT due"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.group,name:l10n_il.tax_group_vat_exempt_purchase
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_purchase_exempt
|
||||
msgid "VAT exempt purchase"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.group,name:l10n_il.tax_group_vat_exempt
|
||||
msgid "VAT exempt sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_sales_exempt
|
||||
msgid "VAT exempt sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_inputs_17
|
||||
msgid "VAT inputs"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.tax.template,name:l10n_il.il_vat_inputs_fa_17
|
||||
msgid "VAT inputs for fixed assets"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.fiscal.position.template,name:l10n_il.account_fiscal_position_vat_zero
|
||||
msgid "Vat Zero"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100300
|
||||
msgid "Vehicles"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_100310
|
||||
msgid "Vehicles depreciation"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_215000
|
||||
msgid "Vendor discounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_214000
|
||||
msgid "Vendor returns"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.tag,name:l10n_il.account_tag_retention_tax_customers_account
|
||||
msgid "Withholding Customers Tax Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.tag,name:l10n_il.account_tag_retention_tax_dividend_account
|
||||
msgid "Withholding Dividend Tax Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.tag,name:l10n_il.account_tag_retention_tax_employees_account
|
||||
msgid "Withholding Employees Tax Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.tag,name:l10n_il.account_tag_retention_tax_vendor_account
|
||||
msgid "Withholding Vendor Tax Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: l10n_il
|
||||
#: model:account.account.template,name:l10n_il.il_account_300270
|
||||
msgid "current year earnings"
|
||||
msgstr ""
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 2.7 KiB |
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 6.6 KiB |
42
odoo-bringout-oca-ocb-l10n_il/pyproject.toml
Normal file
42
odoo-bringout-oca-ocb-l10n_il/pyproject.toml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-l10n_il"
|
||||
version = "16.0.0"
|
||||
description = "Israel - Accounting - Odoo addon"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-l10n_multilang>=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 = ["l10n_il"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue