Skip to content

Commit

Permalink
[11.0][MIG] purchase_tier_validation
Browse files Browse the repository at this point in the history
  • Loading branch information
LoisRForgeFlow committed May 10, 2018
1 parent d0fbe85 commit 504a407
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 10 deletions.
6 changes: 3 additions & 3 deletions purchase_tier_validation/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Installation
============

This module depends on ``base_tier_validation``. You can find it at
`OCA/server-tools <https://github.com/OCA/purchase-workflow>`_
`OCA/server-ux <https://github.com/OCA/server-ux>`_

Configuration
=============
Expand Down Expand Up @@ -43,13 +43,13 @@ Additional features:

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/142/10.0
:target: https://runbot.odoo-community.org/runbot/142/11.0

Bug Tracker
===========

Bugs are tracked on `GitHub Issues
<https://github.com/OCA/server-tools/issues>`_. In case of trouble, please
<https://github.com/OCA/server-ux/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.

Expand Down
1 change: 0 additions & 1 deletion purchase_tier_validation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from . import models
3 changes: 1 addition & 2 deletions purchase_tier_validation/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Purchase Tier Validation",
"summary": "Extends the functionality of Purchase Orders to "
"support a tier validation process.",
"version": "10.0.1.0.0",
"version": "11.0.1.0.0",
"category": "Purchases",
"website": "https://github.com/OCA/purchase-workflow",
"author": "Eficent, Odoo Community Association (OCA)",
Expand Down
1 change: 0 additions & 1 deletion purchase_tier_validation/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from . import purchase_order
Expand Down
1 change: 0 additions & 1 deletion purchase_tier_validation/models/purchase_order.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

Expand Down
1 change: 0 additions & 1 deletion purchase_tier_validation/models/tier_definition.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

Expand Down
2 changes: 1 addition & 1 deletion purchase_tier_validation/views/purchase_order_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<field name="arch" type="xml">
<filter name="message_needaction" position="after">
<filter name="needs_review" string="Needs my Review"
domain="[('reviewer_ids','in',uid)]"
domain="[('reviewer_ids','in',uid), ('state', 'not in', ['done', 'cancel'])]"
help="My Purchases to review"/>
<filter name="tier_validated" string="Validated"
domain="[('validated', '=', True)]"
Expand Down

0 comments on commit 504a407

Please sign in to comment.