-
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
65 changed files
with
1,216 additions
and
1,062 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 |
---|---|---|
@@ -1,9 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<openerp> | ||
<data> | ||
<record id="machine_model_1" model="machine.model"> | ||
<field name="name">Personal Computer</field> | ||
<field name="model_type">PC</field> | ||
</record> | ||
</data> | ||
</openerp> | ||
<odoo> | ||
<record id="machine_model_1" model="machine.model"> | ||
<field name="name">Personal Computer</field> | ||
<field name="model_type">PC</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 |
---|---|---|
@@ -1,30 +1,28 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<openerp> | ||
<data> | ||
<!-- | ||
Stock production lot for product | ||
--> | ||
<record id="production_lot_1" model="stock.lot"> | ||
<field name="name">L0004</field> | ||
<field name="product_id" ref="product.product_product_3" /> | ||
</record> | ||
<!-- | ||
Product converted to machine | ||
--> | ||
<record id="product.product_product_3" model="product.product"> | ||
<field name="machine_ok" eval="True" /> | ||
</record> | ||
<!-- | ||
machinery resources | ||
--> | ||
<record id="machinery_1" model="machinery"> | ||
<field name="name">Personal PC</field> | ||
<field name="purch_cost">800.0</field> | ||
<field name="year">2013</field> | ||
<field name="model">SC234</field> | ||
<field name="product_id" ref="product.product_product_3" /> | ||
<field name="serial_id" ref="production_lot_1" /> | ||
<field name="user_ids" eval="[(4, ref('machinery_user_1'))]" /> | ||
</record> | ||
</data> | ||
</openerp> | ||
<odoo> | ||
<!-- | ||
Stock production lot for product | ||
--> | ||
<record id="production_lot_1" model="stock.lot"> | ||
<field name="name">L0004</field> | ||
<field name="product_id" ref="product.product_product_3" /> | ||
</record> | ||
<!-- | ||
Product converted to machine | ||
--> | ||
<record id="product.product_product_3" model="product.product"> | ||
<field name="machine_ok" eval="True" /> | ||
</record> | ||
<!-- | ||
machinery resources | ||
--> | ||
<record id="machinery_1" model="machinery"> | ||
<field name="name">Personal PC</field> | ||
<field name="purch_cost">800.0</field> | ||
<field name="year">2013</field> | ||
<field name="model">SC234</field> | ||
<field name="product_id" ref="product.product_product_3" /> | ||
<field name="serial_id" ref="production_lot_1" /> | ||
<field name="user_ids" eval="[(4, ref('machinery_user_1'))]" /> | ||
</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 |
---|---|---|
@@ -1,19 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<openerp> | ||
<data noupdate="0"> | ||
<record model="ir.module.category" id="module_machinery_category"> | ||
<field name="name">Machine Management</field> | ||
<field name="sequence">20</field> | ||
</record> | ||
<record id="group_machine_user" model="res.groups"> | ||
<field name="name">User</field> | ||
<field name="category_id" ref="module_machinery_category" /> | ||
</record> | ||
<record id="group_machine_manager" model="res.groups"> | ||
<field name="name">Manager</field> | ||
<field name="implied_ids" eval="[(4, ref('group_machine_user'))]" /> | ||
<field name="category_id" ref="module_machinery_category" /> | ||
<field name="users" eval="[(4, ref('base.user_root'))]" /> | ||
</record> | ||
</data> | ||
</openerp> | ||
<odoo noupdate="0"> | ||
<record model="ir.module.category" id="module_machinery_category"> | ||
<field name="name">Machine Management</field> | ||
<field name="sequence">20</field> | ||
</record> | ||
<record id="group_machine_user" model="res.groups"> | ||
<field name="name">User</field> | ||
<field name="category_id" ref="module_machinery_category" /> | ||
</record> | ||
<record id="group_machine_manager" model="res.groups"> | ||
<field name="name">Manager</field> | ||
<field name="implied_ids" eval="[(4, ref('group_machine_user'))]" /> | ||
<field name="category_id" ref="module_machinery_category" /> | ||
<field name="users" eval="[(4, ref('base.user_root'))]" /> | ||
</record> | ||
</odoo> |
Oops, something went wrong.