diff --git a/account_payment_currency_rate/README.rst b/account_payment_currency_rate/README.rst new file mode 100644 index 0000000..2ebde87 --- /dev/null +++ b/account_payment_currency_rate/README.rst @@ -0,0 +1,129 @@ +============================= +Account Payment Currency Rate +============================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:482a98c97598b037e5884b089480b693c62cd6f2bd3cc5cdbacd981cd1e6b9b9 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-KMEE%2Fkmee--odoo--addons-lightgray.png?logo=github + :target: https://github.com/KMEE/kmee-odoo-addons/tree/16.0/account_payment_currency_rate + :alt: KMEE/kmee-odoo-addons + +|badge1| |badge2| |badge3| + +[ This file must be max 2-3 paragraphs, and is required. ] + +**Table of contents** + +.. contents:: + :local: + +Use Cases / Context +=================== + +[ This file is optional but strongly suggested to allow end-users to +evaluate the module's usefulness in their context. ] + +Installation +============ + +[ This file must only be present if there are very specific installation +instructions, such as installing non-python dependencies. The audience +is systems administrators. ] + +To install this module, you need to: + +1. Do nothing + +Configuration +============= + +[ This file is optional, it should explain how to configure the module +before using it; it is aimed at advanced users. ] + +To configure this module, you need to: + +1. Do nothing + +Usage +===== + +[ This file must be present and contains the usage instructions for +end-users. As all other rst files included in the README, it MUST NOT +contain reStructuredText sections only body text (paragraphs, lists, +tables, etc). Should you need a more elaborate structure to explain the +addon, please create a Sphinx documentation (which may include this file +as a "quick start" section). ] + +To use this module, you need to: + +1. Go to Invoice Payment Wizard and change the rate. + +Changelog +========= + +[ The change log. The goal of this file is to help readers understand +changes between version. The primary audience is end users and +integrators. Purely technical changes such as code refactoring must not +be mentioned here. + +This file may contain ONE level of section titles, underlined with the ~ +(tilde) character. Other section markers are forbidden and will likely +break the structure of the README.rst or other documents where this +fragment is included. ] + +16.0.1.0.0 (2024-05-20) +----------------------- + +- First Release + +Bug Tracker +=========== + +Bugs are tracked on `GitHub 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 +------- + +* KMEE + +Contributors +------------ + +- Luis Felipe Miléo mileo@kmee.com.br + +Other credits +------------- + +[ This file is optional and contains additional credits, other than +authors, contributors, and maintainers. ] + +The development of this module has been financially supported by: + +- KMEE + +Maintainers +----------- + +This module is part of the `KMEE/kmee-odoo-addons `_ project on GitHub. + +You are welcome to contribute. diff --git a/account_payment_currency_rate/__init__.py b/account_payment_currency_rate/__init__.py new file mode 100644 index 0000000..5cb1c49 --- /dev/null +++ b/account_payment_currency_rate/__init__.py @@ -0,0 +1 @@ +from . import wizards diff --git a/account_payment_currency_rate/__manifest__.py b/account_payment_currency_rate/__manifest__.py new file mode 100644 index 0000000..ef17007 --- /dev/null +++ b/account_payment_currency_rate/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2024 KMEE +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Account Payment Currency Rate", + "summary": """ + Account Payment Currency Manual Rate""", + "version": "16.0.1.0.0", + "license": "AGPL-3", + "author": "KMEE,Odoo Community Association (OCA)", + "website": "https://github.com/KMEE/kmee-odoo-addons", + "depends": ["account"], + "data": [ + "wizards/account_payment_register.xml", + ], +} diff --git a/account_payment_currency_rate/readme/CONFIGURE.md b/account_payment_currency_rate/readme/CONFIGURE.md new file mode 100644 index 0000000..b5bf4e8 --- /dev/null +++ b/account_payment_currency_rate/readme/CONFIGURE.md @@ -0,0 +1,6 @@ +[ This file is optional, it should explain how to configure + the module before using it; it is aimed at advanced users. ] + +To configure this module, you need to: + +1. Do nothing diff --git a/account_payment_currency_rate/readme/CONTEXT.md b/account_payment_currency_rate/readme/CONTEXT.md new file mode 100644 index 0000000..28ede68 --- /dev/null +++ b/account_payment_currency_rate/readme/CONTEXT.md @@ -0,0 +1,2 @@ +[ This file is optional but strongly suggested to allow end-users to evaluate the +module's usefulness in their context. ] diff --git a/account_payment_currency_rate/readme/CONTRIBUTORS.md b/account_payment_currency_rate/readme/CONTRIBUTORS.md new file mode 100644 index 0000000..93e2ac0 --- /dev/null +++ b/account_payment_currency_rate/readme/CONTRIBUTORS.md @@ -0,0 +1 @@ +- Luis Felipe Miléo diff --git a/account_payment_currency_rate/readme/CREDITS.md b/account_payment_currency_rate/readme/CREDITS.md new file mode 100644 index 0000000..3468989 --- /dev/null +++ b/account_payment_currency_rate/readme/CREDITS.md @@ -0,0 +1,6 @@ +[ This file is optional and contains additional credits, other than + authors, contributors, and maintainers. ] + +The development of this module has been financially supported by: + +- KMEE diff --git a/account_payment_currency_rate/readme/DESCRIPTION.md b/account_payment_currency_rate/readme/DESCRIPTION.md new file mode 100644 index 0000000..cf8202b --- /dev/null +++ b/account_payment_currency_rate/readme/DESCRIPTION.md @@ -0,0 +1 @@ +[ This file must be max 2-3 paragraphs, and is required. ] diff --git a/account_payment_currency_rate/readme/HISTORY.md b/account_payment_currency_rate/readme/HISTORY.md new file mode 100644 index 0000000..09f5864 --- /dev/null +++ b/account_payment_currency_rate/readme/HISTORY.md @@ -0,0 +1,13 @@ +[ The change log. The goal of this file is to help readers + understand changes between version. The primary audience is + end users and integrators. Purely technical changes such as + code refactoring must not be mentioned here. + + This file may contain ONE level of section titles, underlined + with the ~ (tilde) character. Other section markers are + forbidden and will likely break the structure of the README.rst + or other documents where this fragment is included. ] + +## 16.0.1.0.0 (2024-05-20) + +- First Release diff --git a/account_payment_currency_rate/readme/INSTALL.md b/account_payment_currency_rate/readme/INSTALL.md new file mode 100644 index 0000000..91c7a20 --- /dev/null +++ b/account_payment_currency_rate/readme/INSTALL.md @@ -0,0 +1,7 @@ +[ This file must only be present if there are very specific + installation instructions, such as installing non-python + dependencies. The audience is systems administrators. ] + +To install this module, you need to: + +1. Do nothing diff --git a/account_payment_currency_rate/readme/USAGE.md b/account_payment_currency_rate/readme/USAGE.md new file mode 100644 index 0000000..97bb7c6 --- /dev/null +++ b/account_payment_currency_rate/readme/USAGE.md @@ -0,0 +1,11 @@ +[ This file must be present and contains the usage instructions + for end-users. As all other rst files included in the README, + it MUST NOT contain reStructuredText sections + only body text (paragraphs, lists, tables, etc). Should you need + a more elaborate structure to explain the addon, please create a + Sphinx documentation (which may include this file as a "quick start" + section). ] + +To use this module, you need to: + +1. Go to Invoice Payment Wizard and change the rate. diff --git a/account_payment_currency_rate/static/description/icon.png b/account_payment_currency_rate/static/description/icon.png new file mode 100644 index 0000000..3a0328b Binary files /dev/null and b/account_payment_currency_rate/static/description/icon.png differ diff --git a/account_payment_currency_rate/static/description/index.html b/account_payment_currency_rate/static/description/index.html new file mode 100644 index 0000000..21e614e --- /dev/null +++ b/account_payment_currency_rate/static/description/index.html @@ -0,0 +1,487 @@ + + + + + +Account Payment Currency Rate + + + +
+

Account Payment Currency Rate

+ + +

Beta License: AGPL-3 KMEE/kmee-odoo-addons

+

[ This file must be max 2-3 paragraphs, and is required. ]

+

Table of contents

+ +
+

Use Cases / Context

+

[ This file is optional but strongly suggested to allow end-users to +evaluate the module’s usefulness in their context. ]

+
+
+

Installation

+

[ This file must only be present if there are very specific installation +instructions, such as installing non-python dependencies. The audience +is systems administrators. ]

+

To install this module, you need to:

+
    +
  1. Do nothing
  2. +
+
+
+

Configuration

+

[ This file is optional, it should explain how to configure the module +before using it; it is aimed at advanced users. ]

+

To configure this module, you need to:

+
    +
  1. Do nothing
  2. +
+
+
+

Usage

+

[ This file must be present and contains the usage instructions for +end-users. As all other rst files included in the README, it MUST NOT +contain reStructuredText sections only body text (paragraphs, lists, +tables, etc). Should you need a more elaborate structure to explain the +addon, please create a Sphinx documentation (which may include this file +as a “quick start” section). ]

+

To use this module, you need to:

+
    +
  1. Go to Invoice Payment Wizard and change the rate.
  2. +
+
+
+

Changelog

+

[ The change log. The goal of this file is to help readers understand +changes between version. The primary audience is end users and +integrators. Purely technical changes such as code refactoring must not +be mentioned here.

+

This file may contain ONE level of section titles, underlined with the ~ +(tilde) character. Other section markers are forbidden and will likely +break the structure of the README.rst or other documents where this +fragment is included. ]

+
+

16.0.1.0.0 (2024-05-20)

+
    +
  • First Release
  • +
+
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub 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

+
    +
  • KMEE
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+

[ This file is optional and contains additional credits, other than +authors, contributors, and maintainers. ]

+

The development of this module has been financially supported by:

+
    +
  • KMEE
  • +
+
+
+

Maintainers

+

This module is part of the KMEE/kmee-odoo-addons project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/account_payment_currency_rate/wizards/__init__.py b/account_payment_currency_rate/wizards/__init__.py new file mode 100644 index 0000000..019698a --- /dev/null +++ b/account_payment_currency_rate/wizards/__init__.py @@ -0,0 +1 @@ +from . import account_payment_register diff --git a/account_payment_currency_rate/wizards/account_payment_register.py b/account_payment_currency_rate/wizards/account_payment_register.py new file mode 100644 index 0000000..769d291 --- /dev/null +++ b/account_payment_currency_rate/wizards/account_payment_register.py @@ -0,0 +1,44 @@ +# Copyright 2024 KMEE +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class AccountPaymentRegister(models.TransientModel): + + _inherit = "account.payment.register" + + change_rate = fields.Float( + digits=(12, 6), + default=1, + ) + original_rate = fields.Float( + digits=(12, 6), + default=1, + related="currency_id.rate", + readonly=True, + ) + change_rate_percent = fields.Float( + digits=(12, 6), + ) + + @api.onchange("change_rate", "original_rate") + def onchange_change_rate(self): + self.change_rate_percent = self.change_rate / self.original_rate + + @api.onchange("original_rate") + def onchange_currency_id(self): + if self.original_rate: + self.change_rate = self.original_rate + + @api.onchange("change_rate_percent") + def onchange_change_rate_percent(self): + if self.amount and (self.change_rate != self.original_rate): + self.amount = self.amount * (self.change_rate_percent) + self.payment_difference_handling = "reconcile" + self.writeoff_label = "Cambio" + + if self.change_rate_percent > 1: + self.writeoff_account_id = self.journal_id.profit_account_id + elif self.change_rate_percent < 1: + self.writeoff_account_id = self.journal_id.loss_account_id diff --git a/account_payment_currency_rate/wizards/account_payment_register.xml b/account_payment_currency_rate/wizards/account_payment_register.xml new file mode 100644 index 0000000..b41a5e2 --- /dev/null +++ b/account_payment_currency_rate/wizards/account_payment_register.xml @@ -0,0 +1,25 @@ + + + + + + account.payment.register + + + + + + + + diff --git a/partner_display_name_ref/README.rst b/partner_display_name_ref/README.rst new file mode 100644 index 0000000..50e0b75 --- /dev/null +++ b/partner_display_name_ref/README.rst @@ -0,0 +1,146 @@ +======================== +Partner Display Name Ref +======================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:ca59ccd25f5a1db0e44ebc42882577158d229ec8868e67ba1dd57bde45d5f37c + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-KMEE%2Fkmee--odoo--addons-lightgray.png?logo=github + :target: https://github.com/KMEE/kmee-odoo-addons/tree/16.0/partner_display_name_ref + :alt: KMEE/kmee-odoo-addons + +|badge1| |badge2| |badge3| + +[ This file must be max 2-3 paragraphs, and is required. ] + +This module changes the res partner display name behavier to show the +reference, like as products: [1234] NAME + +**Table of contents** + +.. contents:: + :local: + +Use Cases / Context +=================== + +[ This file is optional but strongly suggested to allow end-users to +evaluate the module's usefulness in their context. ] + +It should explain the “why” of the module: + +- in which context or use cases this module can be useful (practical + examples are welcome!). +- what is the business requirement that generated the need to develop + this module + +It can also inform on related modules: + +- modules it depends on and their features +- other modules that can work well together with this one +- suggested setups where the module is useful (eg: multicompany, + multi-website) + +Installation +============ + +[ This file must only be present if there are very specific installation +instructions, such as installing non-python dependencies. The audience +is systems administrators. ] + +To install this module, you need to: + +1. Do do nothing + +Configuration +============= + +[ This file is optional, it should explain how to configure the module +before using it; it is aimed at advanced users. ] + +To configure this module, you need to: + +- Go to do nothing + +Usage +===== + +[ This file must be present and contains the usage instructions for +end-users. As all other rst files included in the README, it MUST NOT +contain reStructuredText sections only body text (paragraphs, lists, +tables, etc). Should you need a more elaborate structure to explain the +addon, please create a Sphinx documentation (which may include this file +as a "quick start" section). ] + +To use this module, you need to: + +1. Go to any place and you gonna see the partner with the reference. + +Changelog +========= + +[ The change log. The goal of this file is to help readers understand +changes between version. The primary audience is end users and +integrators. Purely technical changes such as code refactoring must not +be mentioned here. + +This file may contain ONE level of section titles, underlined with the ~ +(tilde) character. Other section markers are forbidden and will likely +break the structure of the README.rst or other documents where this +fragment is included. ] + +16.0.1.0.0 +---------- + +- First Release + +Bug Tracker +=========== + +Bugs are tracked on `GitHub 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 +------- + +* KMEE + +Contributors +------------ + +- Luis Felipe Miléo mileo@kmee.com.br + +Other credits +------------- + +[ This file is optional and contains additional credits, other than +authors, contributors, and maintainers. ] + +The development of this module has been financially supported by: + +- KMEE + +Maintainers +----------- + +This module is part of the `KMEE/kmee-odoo-addons `_ project on GitHub. + +You are welcome to contribute. diff --git a/partner_display_name_ref/__init__.py b/partner_display_name_ref/__init__.py new file mode 100644 index 0000000..0650744 --- /dev/null +++ b/partner_display_name_ref/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/partner_display_name_ref/__manifest__.py b/partner_display_name_ref/__manifest__.py new file mode 100644 index 0000000..e7372dd --- /dev/null +++ b/partner_display_name_ref/__manifest__.py @@ -0,0 +1,14 @@ +# Copyright 2024 KMEE +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Partner Display Name Ref", + "summary": """Display Partner Reference on Many2one""", + "version": "16.0.1.0.0", + "license": "AGPL-3", + "author": "KMEE,Odoo Community Association (OCA)", + "website": "https://github.com/KMEE/kmee-odoo-addons", + "depends": [ + "base", + ], +} diff --git a/partner_display_name_ref/models/__init__.py b/partner_display_name_ref/models/__init__.py new file mode 100644 index 0000000..91fed54 --- /dev/null +++ b/partner_display_name_ref/models/__init__.py @@ -0,0 +1 @@ +from . import res_partner diff --git a/partner_display_name_ref/models/res_partner.py b/partner_display_name_ref/models/res_partner.py new file mode 100644 index 0000000..2068a9b --- /dev/null +++ b/partner_display_name_ref/models/res_partner.py @@ -0,0 +1,15 @@ +# Copyright 2024 KMEE +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import models + + +class ResPartner(models.Model): + + _inherit = "res.partner" + + def _get_name(self): + name = super()._get_name() + if self.ref: + name = "[{}] {}".format(self.ref, name) + return name diff --git a/partner_display_name_ref/readme/CONFIGURE.md b/partner_display_name_ref/readme/CONFIGURE.md new file mode 100644 index 0000000..1cf92b3 --- /dev/null +++ b/partner_display_name_ref/readme/CONFIGURE.md @@ -0,0 +1,6 @@ +[ This file is optional, it should explain how to configure + the module before using it; it is aimed at advanced users. ] + +To configure this module, you need to: + +- Go to do nothing diff --git a/partner_display_name_ref/readme/CONTEXT.md b/partner_display_name_ref/readme/CONTEXT.md new file mode 100644 index 0000000..cdc297a --- /dev/null +++ b/partner_display_name_ref/readme/CONTEXT.md @@ -0,0 +1,13 @@ +[ This file is optional but strongly suggested to allow end-users to evaluate the +module's usefulness in their context. ] + +It should explain the “why” of the module: + +- in which context or use cases this module can be useful (practical examples are welcome!). +- what is the business requirement that generated the need to develop this module + +It can also inform on related modules: + +- modules it depends on and their features +- other modules that can work well together with this one +- suggested setups where the module is useful (eg: multicompany, multi-website) diff --git a/partner_display_name_ref/readme/CONTRIBUTORS.md b/partner_display_name_ref/readme/CONTRIBUTORS.md new file mode 100644 index 0000000..93e2ac0 --- /dev/null +++ b/partner_display_name_ref/readme/CONTRIBUTORS.md @@ -0,0 +1 @@ +- Luis Felipe Miléo diff --git a/partner_display_name_ref/readme/CREDITS.md b/partner_display_name_ref/readme/CREDITS.md new file mode 100644 index 0000000..3468989 --- /dev/null +++ b/partner_display_name_ref/readme/CREDITS.md @@ -0,0 +1,6 @@ +[ This file is optional and contains additional credits, other than + authors, contributors, and maintainers. ] + +The development of this module has been financially supported by: + +- KMEE diff --git a/partner_display_name_ref/readme/DESCRIPTION.md b/partner_display_name_ref/readme/DESCRIPTION.md new file mode 100644 index 0000000..edf6192 --- /dev/null +++ b/partner_display_name_ref/readme/DESCRIPTION.md @@ -0,0 +1,4 @@ +[ This file must be max 2-3 paragraphs, and is required. ] + +This module changes the res partner display name behavier to show the reference, like as products: [1234] NAME + diff --git a/partner_display_name_ref/readme/HISTORY.md b/partner_display_name_ref/readme/HISTORY.md new file mode 100644 index 0000000..f9e4ccd --- /dev/null +++ b/partner_display_name_ref/readme/HISTORY.md @@ -0,0 +1,13 @@ +[ The change log. The goal of this file is to help readers + understand changes between version. The primary audience is + end users and integrators. Purely technical changes such as + code refactoring must not be mentioned here. + + This file may contain ONE level of section titles, underlined + with the ~ (tilde) character. Other section markers are + forbidden and will likely break the structure of the README.rst + or other documents where this fragment is included. ] + +## 16.0.1.0.0 + +- First Release diff --git a/partner_display_name_ref/readme/INSTALL.md b/partner_display_name_ref/readme/INSTALL.md new file mode 100644 index 0000000..9dc3073 --- /dev/null +++ b/partner_display_name_ref/readme/INSTALL.md @@ -0,0 +1,7 @@ +[ This file must only be present if there are very specific + installation instructions, such as installing non-python + dependencies. The audience is systems administrators. ] + +To install this module, you need to: + +1. Do do nothing diff --git a/partner_display_name_ref/readme/USAGE.md b/partner_display_name_ref/readme/USAGE.md new file mode 100644 index 0000000..0ade21f --- /dev/null +++ b/partner_display_name_ref/readme/USAGE.md @@ -0,0 +1,11 @@ +[ This file must be present and contains the usage instructions + for end-users. As all other rst files included in the README, + it MUST NOT contain reStructuredText sections + only body text (paragraphs, lists, tables, etc). Should you need + a more elaborate structure to explain the addon, please create a + Sphinx documentation (which may include this file as a "quick start" + section). ] + +To use this module, you need to: + +1. Go to any place and you gonna see the partner with the reference. diff --git a/partner_display_name_ref/static/description/icon.png b/partner_display_name_ref/static/description/icon.png new file mode 100644 index 0000000..3a0328b Binary files /dev/null and b/partner_display_name_ref/static/description/icon.png differ diff --git a/partner_display_name_ref/static/description/index.html b/partner_display_name_ref/static/description/index.html new file mode 100644 index 0000000..9896b4d --- /dev/null +++ b/partner_display_name_ref/static/description/index.html @@ -0,0 +1,503 @@ + + + + + +Partner Display Name Ref + + + +
+

Partner Display Name Ref

+ + +

Beta License: AGPL-3 KMEE/kmee-odoo-addons

+

[ This file must be max 2-3 paragraphs, and is required. ]

+

This module changes the res partner display name behavier to show the +reference, like as products: [1234] NAME

+

Table of contents

+ +
+

Use Cases / Context

+

[ This file is optional but strongly suggested to allow end-users to +evaluate the module’s usefulness in their context. ]

+

It should explain the “why” of the module:

+
    +
  • in which context or use cases this module can be useful (practical +examples are welcome!).
  • +
  • what is the business requirement that generated the need to develop +this module
  • +
+

It can also inform on related modules:

+
    +
  • modules it depends on and their features
  • +
  • other modules that can work well together with this one
  • +
  • suggested setups where the module is useful (eg: multicompany, +multi-website)
  • +
+
+
+

Installation

+

[ This file must only be present if there are very specific installation +instructions, such as installing non-python dependencies. The audience +is systems administrators. ]

+

To install this module, you need to:

+
    +
  1. Do do nothing
  2. +
+
+
+

Configuration

+

[ This file is optional, it should explain how to configure the module +before using it; it is aimed at advanced users. ]

+

To configure this module, you need to:

+
    +
  • Go to do nothing
  • +
+
+
+

Usage

+

[ This file must be present and contains the usage instructions for +end-users. As all other rst files included in the README, it MUST NOT +contain reStructuredText sections only body text (paragraphs, lists, +tables, etc). Should you need a more elaborate structure to explain the +addon, please create a Sphinx documentation (which may include this file +as a “quick start” section). ]

+

To use this module, you need to:

+
    +
  1. Go to any place and you gonna see the partner with the reference.
  2. +
+
+
+

Changelog

+

[ The change log. The goal of this file is to help readers understand +changes between version. The primary audience is end users and +integrators. Purely technical changes such as code refactoring must not +be mentioned here.

+

This file may contain ONE level of section titles, underlined with the ~ +(tilde) character. Other section markers are forbidden and will likely +break the structure of the README.rst or other documents where this +fragment is included. ]

+
+

16.0.1.0.0

+
    +
  • First Release
  • +
+
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub 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

+
    +
  • KMEE
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+

[ This file is optional and contains additional credits, other than +authors, contributors, and maintainers. ]

+

The development of this module has been financially supported by:

+
    +
  • KMEE
  • +
+
+
+

Maintainers

+

This module is part of the KMEE/kmee-odoo-addons project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/setup/account_payment_currency_rate/odoo/addons/account_payment_currency_rate b/setup/account_payment_currency_rate/odoo/addons/account_payment_currency_rate new file mode 120000 index 0000000..8a20e4f --- /dev/null +++ b/setup/account_payment_currency_rate/odoo/addons/account_payment_currency_rate @@ -0,0 +1 @@ +../../../../account_payment_currency_rate \ No newline at end of file diff --git a/setup/account_payment_currency_rate/setup.py b/setup/account_payment_currency_rate/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/account_payment_currency_rate/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/setup/partner_display_name_ref/odoo/addons/partner_display_name_ref b/setup/partner_display_name_ref/odoo/addons/partner_display_name_ref new file mode 120000 index 0000000..14cdc05 --- /dev/null +++ b/setup/partner_display_name_ref/odoo/addons/partner_display_name_ref @@ -0,0 +1 @@ +../../../../partner_display_name_ref \ No newline at end of file diff --git a/setup/partner_display_name_ref/setup.py b/setup/partner_display_name_ref/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/partner_display_name_ref/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)