-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '16.0' into 16.0-mig-partner_equal_ref_barcode
- Loading branch information
Showing
146 changed files
with
3,006 additions
and
1,063 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ __pycache__/ | |
*.py[cod] | ||
/.venv | ||
/.pytest_cache | ||
/.ruff_cache | ||
|
||
# C extensions | ||
*.so | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
account_invoice_product_customer_code/report/account_invoice_report.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
================== | ||
Base Import Wizard | ||
================== | ||
|
||
.. |badge1| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 | ||
|
||
|badge1| | ||
|
||
Base abstract module for implementing different import wizards. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/avanzosc/odoo-addons/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us to smash it by providing a detailed and welcomed | ||
feedback. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
~~~~~~~ | ||
|
||
* AvanzOSC | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* Oihane Crucelaegui <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,55 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
<data> | ||
<record id="res_city_zip_view_tree" model="ir.ui.view"> | ||
<field name="model">res.city.zip</field> | ||
<field name="inherit_id" ref="base_location.city_zip_tree" /> | ||
<field name="arch" type="xml"> | ||
<field name="city_id" position="after"> | ||
<field name="state_id" /> | ||
<field name="country_id" /> | ||
</field> | ||
<record id="res_city_zip_view_tree" model="ir.ui.view"> | ||
<field name="model">res.city.zip</field> | ||
<field name="inherit_id" ref="base_location.city_zip_tree" /> | ||
<field name="arch" type="xml"> | ||
<field name="city_id" position="after"> | ||
<field name="state_id" /> | ||
<field name="country_id" /> | ||
</field> | ||
</record> | ||
</field> | ||
</record> | ||
|
||
<record id="res_city_zip_view_search" model="ir.ui.view"> | ||
<field name="model">res.city.zip</field> | ||
<field name="inherit_id" ref="base_location.view_city_zip_filter" /> | ||
<field name="arch" type="xml"> | ||
<field name="city_id" position="after"> | ||
<field name="state_id" /> | ||
<field name="country_id" /> | ||
<group expand="0" string="Group By"> | ||
<filter | ||
name="city" | ||
string="City" | ||
domain="[]" | ||
context="{'group_by':'city_id'}" | ||
/> | ||
<filter | ||
name="state" | ||
string="State" | ||
domain="[]" | ||
context="{'group_by':'state_id'}" | ||
/> | ||
<filter | ||
name="country" | ||
string="Country" | ||
domain="[]" | ||
context="{'group_by':'country_id'}" | ||
/> | ||
</group> | ||
</field> | ||
<record id="res_city_zip_view_search" model="ir.ui.view"> | ||
<field name="model">res.city.zip</field> | ||
<field name="inherit_id" ref="base_location.view_city_zip_filter" /> | ||
<field name="arch" type="xml"> | ||
<field name="city_id" position="after"> | ||
<field name="state_id" /> | ||
<field name="country_id" /> | ||
<group expand="0" string="Group By"> | ||
<filter | ||
name="city" | ||
string="City" | ||
domain="[]" | ||
context="{'group_by':'city_id'}" | ||
/> | ||
<filter | ||
name="state" | ||
string="State" | ||
domain="[]" | ||
context="{'group_by':'state_id'}" | ||
/> | ||
<filter | ||
name="country" | ||
string="Country" | ||
domain="[]" | ||
context="{'group_by':'country_id'}" | ||
/> | ||
</group> | ||
</field> | ||
</record> | ||
</field> | ||
</record> | ||
|
||
<record id="res_city_zip_view_form" model="ir.ui.view"> | ||
<field name="model">res.city.zip</field> | ||
<field name="inherit_id" ref="base_location.city_zip_form" /> | ||
<field name="arch" type="xml"> | ||
<field name="city_id" position="after"> | ||
<field name="state_id" /> | ||
<field name="country_id" /> | ||
</field> | ||
<record id="res_city_zip_view_form" model="ir.ui.view"> | ||
<field name="model">res.city.zip</field> | ||
<field name="inherit_id" ref="base_location.city_zip_form" /> | ||
<field name="arch" type="xml"> | ||
<field name="city_id" position="after"> | ||
<field name="state_id" /> | ||
<field name="country_id" /> | ||
</field> | ||
</record> | ||
</data> | ||
</field> | ||
</record> | ||
</odoo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
====================== | ||
Contacts Import Wizard | ||
====================== | ||
|
||
.. |badge1| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 | ||
|
||
|badge1| | ||
|
||
Module to import contacts, it allows to create / update contacts. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/avanzosc/odoo-addons/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us to smash it by providing a detailed and welcomed | ||
feedback. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
~~~~~~~ | ||
|
||
* AvanzOSC | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* Oihane Crucelaegui <[email protected]> | ||
* Ana Juaristi <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 | ||
|
||
===================================== | ||
Event registration sale line contract | ||
===================================== | ||
|
||
* In event registration 2 new fields, sale contract line, and sale contract. | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues | ||
<https://github.com/avanzosc/odoo-addons/issues>`_. In case of trouble, | ||
please check there if your issue has already been reported. If you spotted | ||
it first, help us smash it by providing detailed and welcomed feedback. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Contributors | ||
------------ | ||
|
||
* Berezi Amubieta <[email protected]> | ||
* Alfredo de la Fuente <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Copyright 2021 Alfredo de la Fuente - AvanzOSC | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). | ||
{ | ||
"name": "Event Registration Sale Line Contract", | ||
"version": "16.0.1.0.0", | ||
"author": "Avanzosc", | ||
"website": "https://github.com/avanzosc/odoo-addons", | ||
"category": "Marketing/Events", | ||
"depends": [ | ||
"event_sale", | ||
"sale_order_line_contract", | ||
], | ||
"data": [ | ||
"views/event_registration_views.xml", | ||
], | ||
"license": "AGPL-3", | ||
"installable": True, | ||
"auto_install": True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * event_registration_sale_line_contract | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 14.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2021-05-25 12:40+0000\n" | ||
"PO-Revision-Date: 2021-05-25 12:40+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: event_registration_sale_line_contract | ||
#: model:ir.model.fields,field_description:event_registration_sale_line_contract.field_event_registration__contract_id | ||
#: model_terms:ir.ui.view,arch_db:event_registration_sale_line_contract.view_registration_search | ||
msgid "Contract" | ||
msgstr "Contrato" | ||
|
||
#. module: event_registration_sale_line_contract | ||
#: model:ir.model.fields,field_description:event_registration_sale_line_contract.field_event_registration__contract_line_id | ||
#: model_terms:ir.ui.view,arch_db:event_registration_sale_line_contract.view_registration_search | ||
msgid "Contract line" | ||
msgstr "Línea contrato" | ||
|
||
#. module: event_registration_sale_line_contract | ||
#: model:ir.model.fields,field_description:event_registration_sale_line_contract.field_event_registration__display_name | ||
msgid "Display Name" | ||
msgstr "Nombre mostrado" | ||
|
||
#. module: event_registration_sale_line_contract | ||
#: model:ir.model,name:event_registration_sale_line_contract.model_event_registration | ||
msgid "Event Registration" | ||
msgstr "Registro de eventos" | ||
|
||
#. module: event_registration_sale_line_contract | ||
#: model:ir.model.fields,field_description:event_registration_sale_line_contract.field_event_registration__id | ||
msgid "ID" | ||
msgstr "" | ||
|
||
#. module: event_registration_sale_line_contract | ||
#: model:ir.model.fields,field_description:event_registration_sale_line_contract.field_event_registration____last_update | ||
msgid "Last Modified on" | ||
msgstr "Última modificación el" | ||
|
Oops, something went wrong.