-
-
Notifications
You must be signed in to change notification settings - Fork 803
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by StefanRijnhart
- Loading branch information
Showing
26 changed files
with
1,617 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
================================ | ||
Purchase Request Tier Validation | ||
================================ | ||
|
||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |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-OCA%2Fpurchase--workflow-lightgray.png?logo=github | ||
:target: https://github.com/OCA/purchase-workflow/tree/15.0/purchase_request_tier_validation | ||
:alt: OCA/purchase-workflow | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/purchase-workflow-15-0/purchase-workflow-15-0-purchase_request_tier_validation | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png | ||
:target: https://runbot.odoo-community.org/runbot/142/15.0 | ||
:alt: Try me on Runbot | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This module extends the functionality of Purchase Requests to support a tier validation process. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Installation | ||
============ | ||
|
||
This module depends on ``base_tier_validation``. You can find it at | ||
`OCA/server-ux <https://github.com/OCA/server-ux>`_ | ||
|
||
Configuration | ||
============= | ||
|
||
A default tier is created allowing Purchase Request Manager to approve Purchase | ||
Requests. | ||
|
||
In addition, you may want to add more tiers, so: | ||
|
||
#. Go to *Settings > Technical > Tier Validations > Tier Definition*. | ||
#. Create as many tiers as you want for Purchase Order model. | ||
|
||
Usage | ||
===== | ||
|
||
To use this module, you need to: | ||
|
||
#. Create a Purchase Request triggering at least one "Tier Definition". | ||
#. Click on *Request Validation* button. | ||
#. Under the tab *Reviews* have a look to pending reviews and their statuses. | ||
#. Once all reviews are validated button to *Confirm* will be shown. | ||
|
||
Additional features: | ||
|
||
* You can filter the Purchase Request requesting your review through the filter *Needs my | ||
Review*. | ||
* User with rights to confirm the Purchase Request (validate all tiers that would | ||
be generated) can directly do the operation, this is, there is no need for | ||
her/him to request a validation. | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/purchase-workflow/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us smashing it by providing a detailed and welcomed | ||
`feedback <https://github.com/OCA/purchase-workflow/issues/new?body=module:%20purchase_request_tier_validation%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
~~~~~~~ | ||
|
||
* ForgeFlow | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* Adria Gil <[email protected]> | ||
|
||
Other credits | ||
~~~~~~~~~~~~~ | ||
|
||
Images | ||
------ | ||
|
||
* Enric Tobella (logo) | ||
|
||
Maintainers | ||
~~~~~~~~~~~ | ||
|
||
This module is maintained by the OCA. | ||
|
||
.. image:: https://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: https://odoo-community.org | ||
|
||
OCA, or the Odoo Community Association, is a nonprofit organization whose | ||
mission is to support the collaborative development of Odoo features and | ||
promote its widespread use. | ||
|
||
This module is part of the `OCA/purchase-workflow <https://github.com/OCA/purchase-workflow/tree/15.0/purchase_request_tier_validation>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
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,3 @@ | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
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 2019-2020 ForgeFlow S.L. | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
{ | ||
"name": "Purchase Request Tier Validation", | ||
"summary": "Extends the functionality of Purchase Requests to " | ||
"support a tier validation process.", | ||
"version": "16.0.1.0.0", | ||
"category": "Purchase Management", | ||
"website": "https://github.com/OCA/purchase-workflow", | ||
"author": "ForgeFlow, Odoo Community Association (OCA)", | ||
"license": "AGPL-3", | ||
"application": False, | ||
"installable": True, | ||
"depends": ["purchase_request", "base_tier_validation"], | ||
"data": [ | ||
"data/purchase_request_tier_definition.xml", | ||
"views/purchase_request_view.xml", | ||
], | ||
} |
15 changes: 15 additions & 0 deletions
15
purchase_request_tier_validation/data/purchase_request_tier_definition.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!-- Copyright 2019-2020 ForgeFlow S.L. | ||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). --> | ||
<odoo noupdate="1"> | ||
<record id="purchase_request_default_tier_definition" model="tier.definition"> | ||
<field name="model_id" ref="model_purchase_request" /> | ||
<field name="definition_type">domain</field> | ||
<field name="definition_domain" /> | ||
<field name="review_type">group</field> | ||
<field | ||
name="reviewer_group_id" | ||
ref='purchase_request.group_purchase_request_manager' | ||
/> | ||
</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,150 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * purchase_request_tier_validation | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 11.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2019-05-23 11:19+0000\n" | ||
"Last-Translator: Lois Rilo <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: es\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=n != 1;\n" | ||
"X-Generator: Weblate 3.6.1\n" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_purchase_request__can_review | ||
msgid "Can Review" | ||
msgstr "" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model_terms:ir.ui.view,arch_db:purchase_request_tier_validation.view_purchase_request_form_inherit_tier | ||
msgid "Confirm" | ||
msgstr "Confirmar" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_purchase_request__display_name | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_tier_definition__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_purchase_request__has_comment | ||
msgid "Has Comment" | ||
msgstr "" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_purchase_request__id | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_tier_definition__id | ||
msgid "ID" | ||
msgstr "" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_purchase_request____last_update | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_tier_definition____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model_terms:ir.ui.view,arch_db:purchase_request_tier_validation.view_purchase_request_filter | ||
msgid "My Purchases to review" | ||
msgstr "Mis Compras a revisar" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_purchase_request__need_validation | ||
msgid "Need Validation" | ||
msgstr "" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model_terms:ir.ui.view,arch_db:purchase_request_tier_validation.view_purchase_request_filter | ||
msgid "Need actions" | ||
msgstr "Acción necesaria" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model_terms:ir.ui.view,arch_db:purchase_request_tier_validation.view_purchase_request_filter | ||
msgid "Needs my Review" | ||
msgstr "Necesita mi revisión" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:tier.definition,name:purchase_request_tier_validation.purchase_request_default_tier_definition | ||
msgid "New Tier Validation" | ||
msgstr "Nueva Validación de Nivel" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_purchase_request__next_review | ||
msgid "Next Review" | ||
msgstr "" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model,name:purchase_request_tier_validation.model_purchase_request | ||
msgid "Purchase Request" | ||
msgstr "Solicitud de Compra" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model_terms:ir.ui.view,arch_db:purchase_request_tier_validation.view_purchase_request_filter | ||
msgid "Purchase Requests validated and ready to be confirmed" | ||
msgstr "Solicitudes de compra validadas y preparadas para ser confirmadas" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_purchase_request__rejected | ||
msgid "Rejected" | ||
msgstr "" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_purchase_request__reviewer_ids | ||
msgid "Reviewers" | ||
msgstr "" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model,name:purchase_request_tier_validation.model_tier_definition | ||
#, fuzzy | ||
msgid "Tier Definition" | ||
msgstr "tier.definition" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_purchase_request__validated | ||
#: model_terms:ir.ui.view,arch_db:purchase_request_tier_validation.view_purchase_request_filter | ||
msgid "Validated" | ||
msgstr "Validada" | ||
|
||
#. module: purchase_request_tier_validation | ||
#: model:ir.model.fields,field_description:purchase_request_tier_validation.field_purchase_request__review_ids | ||
msgid "Validations" | ||
msgstr "" | ||
|
||
#~ msgid "" | ||
#~ "<i class=\"fa fa-info-circle\"/>This Purchase Request needs to be\n" | ||
#~ " validated." | ||
#~ msgstr "" | ||
#~ "<i class=\"fa fa-info-circle\"/>Esta Solicitud de compra debe ser\n" | ||
#~ " validada." | ||
|
||
#~ msgid "<i class=\"fa fa-thumbs-down\"/> Operation has been <b>rejected</b>." | ||
#~ msgstr "" | ||
#~ "<i class=\"fa fa-thumbs-down\"/>La operación ha sido <b>rechazada</b>." | ||
|
||
#~ msgid "<i class=\"fa fa-thumbs-up\"/> Operation has been <b>validated</b>!" | ||
#~ msgstr "" | ||
#~ "<i class=\"fa fa-thumbs-up\"/> La operación ha sido <b>validada</b>!" | ||
|
||
#~ msgid "Dismiss" | ||
#~ msgstr "Descartar" | ||
|
||
#~ msgid "Reject" | ||
#~ msgstr "Rechazar" | ||
|
||
#~ msgid "Request Validation" | ||
#~ msgstr "Solicitar Validación" | ||
|
||
#~ msgid "Restart Validation" | ||
#~ msgstr "Reiniciar Validación" | ||
|
||
#~ msgid "Tier Review" | ||
#~ msgstr "Revisión de nivel" | ||
|
||
#~ msgid "Validate" | ||
#~ msgstr "Validar" |
Oops, something went wrong.