Skip to content

Commit 0fdfdd8

Browse files
committed
Merge PR OCA#1883 into 16.0
Signed-off-by sebastienbeau
2 parents 7e9bf25 + f557443 commit 0fdfdd8

File tree

8 files changed

+530
-0
lines changed

8 files changed

+530
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
==================================
2+
Purchase Order Hide Receipt Status
3+
==================================
4+
5+
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6+
!! This file is generated by oca-gen-addon-readme !!
7+
!! changes will be overwritten. !!
8+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
9+
10+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
11+
:target: https://odoo-community.org/page/development-status
12+
:alt: Beta
13+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
14+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
15+
:alt: License: AGPL-3
16+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpurchase--workflow-lightgray.png?logo=github
17+
:target: https://github.com/OCA/purchase-workflow/tree/16.0/purchase_order_hide_receipt_status
18+
:alt: OCA/purchase-workflow
19+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
20+
:target: https://translation.odoo-community.org/projects/purchase-workflow-16-0/purchase-workflow-16-0-purchase_order_hide_receipt_status
21+
:alt: Translate me on Weblate
22+
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
23+
:target: https://runbot.odoo-community.org/runbot/142/16.0
24+
:alt: Try me on Runbot
25+
26+
|badge1| |badge2| |badge3| |badge4| |badge5|
27+
28+
This module is designed to enhance the user experience by hiding the "receipt_status" field
29+
in purchase order form view and tree view. The purpose is to avoid any confusion that may arise
30+
when 'reception_status' field becomes visible once the 'purchase_reception_status' module is installed.
31+
32+
**Table of contents**
33+
34+
.. contents::
35+
:local:
36+
37+
Bug Tracker
38+
===========
39+
40+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/purchase-workflow/issues>`_.
41+
In case of trouble, please check there if your issue has already been reported.
42+
If you spotted it first, help us smashing it by providing a detailed and welcomed
43+
`feedback <https://github.com/OCA/purchase-workflow/issues/new?body=module:%20purchase_order_hide_receipt_status%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
44+
45+
Do not contact contributors directly about support or help with technical issues.
46+
47+
Credits
48+
=======
49+
50+
Authors
51+
~~~~~~~
52+
53+
* Quartile Limited
54+
55+
Maintainers
56+
~~~~~~~~~~~
57+
58+
This module is maintained by the OCA.
59+
60+
.. image:: https://odoo-community.org/logo.png
61+
:alt: Odoo Community Association
62+
:target: https://odoo-community.org
63+
64+
OCA, or the Odoo Community Association, is a nonprofit organization whose
65+
mission is to support the collaborative development of Odoo features and
66+
promote its widespread use.
67+
68+
This module is part of the `OCA/purchase-workflow <https://github.com/OCA/purchase-workflow/tree/16.0/purchase_order_hide_receipt_status>`_ project on GitHub.
69+
70+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

purchase_order_hide_receipt_status/__init__.py

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Copyright 2023 Quartile Limited
2+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3+
{
4+
"name": "Purchase Order Hide Receipt Status",
5+
"version": "16.0.1.0.0",
6+
"category": "Purchase",
7+
"website": "https://github.com/OCA/purchase-workflow",
8+
"license": "AGPL-3",
9+
"author": "Quartile Limited, Odoo Community Association (OCA)",
10+
"depends": ["purchase_stock"],
11+
"data": ["views/purchase_order.xml"],
12+
"installable": True,
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
This module is designed to enhance the user experience by hiding the "receipt_status" field
2+
in purchase order form view and tree view. The purpose is to avoid any confusion that may arise
3+
when 'reception_status' field becomes visible once the 'purchase_reception_status' module is installed.

0 commit comments

Comments
 (0)