From b0df3f7448fbb8b6aa1835feb1d506dc1c58be40 Mon Sep 17 00:00:00 2001 From: "Rinaldi Firdaus (Quartile)" <122415281+rinaldifirdaus@users.noreply.github.com> Date: Tue, 29 Aug 2023 09:12:14 +0700 Subject: [PATCH] [3570][ADD] purchase_view_adj (#36) --- purchase_view_adj/README.rst | 52 +++ purchase_view_adj/__init__.py | 0 purchase_view_adj/__manifest__.py | 15 + purchase_view_adj/readme/DESCRIPTION.rst | 1 + .../static/description/index.html | 407 ++++++++++++++++++ .../views/purchase_order_views.xml | 16 + .../odoo/addons/purchase_view_adj | 1 + setup/purchase_view_adj/setup.py | 6 + 8 files changed, 498 insertions(+) create mode 100644 purchase_view_adj/README.rst create mode 100644 purchase_view_adj/__init__.py create mode 100644 purchase_view_adj/__manifest__.py create mode 100644 purchase_view_adj/readme/DESCRIPTION.rst create mode 100644 purchase_view_adj/static/description/index.html create mode 100644 purchase_view_adj/views/purchase_order_views.xml create mode 120000 setup/purchase_view_adj/odoo/addons/purchase_view_adj create mode 100644 setup/purchase_view_adj/setup.py diff --git a/purchase_view_adj/README.rst b/purchase_view_adj/README.rst new file mode 100644 index 00000000..43d35fed --- /dev/null +++ b/purchase_view_adj/README.rst @@ -0,0 +1,52 @@ +================= +Purchase View Adj +================= + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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-qrtl%2Faxls--custom-lightgray.png?logo=github + :target: https://github.com/qrtl/axls-custom/tree/16.0/purchase_view_adj + :alt: qrtl/axls-custom + +|badge1| |badge2| |badge3| + +This module makes adjustments to purchase related views. + +**Table of contents** + +.. contents:: + :local: + +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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Quartile Limited + +Maintainers +~~~~~~~~~~~ + +This module is part of the `qrtl/axls-custom `_ project on GitHub. + +You are welcome to contribute. diff --git a/purchase_view_adj/__init__.py b/purchase_view_adj/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/purchase_view_adj/__manifest__.py b/purchase_view_adj/__manifest__.py new file mode 100644 index 00000000..3605df5a --- /dev/null +++ b/purchase_view_adj/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright 2023 Quartile Limited +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +{ + "name": "Purchase View Adj", + "version": "16.0.1.0.0", + "author": "Quartile Limited", + "website": "https://www.quartile.co", + "category": "Purchase", + "license": "AGPL-3", + "depends": ["purchase"], + "data": [ + "views/purchase_order_views.xml", + ], + "installable": True, +} diff --git a/purchase_view_adj/readme/DESCRIPTION.rst b/purchase_view_adj/readme/DESCRIPTION.rst new file mode 100644 index 00000000..d113b3d8 --- /dev/null +++ b/purchase_view_adj/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module makes adjustments to purchase related views. diff --git a/purchase_view_adj/static/description/index.html b/purchase_view_adj/static/description/index.html new file mode 100644 index 00000000..6b191adc --- /dev/null +++ b/purchase_view_adj/static/description/index.html @@ -0,0 +1,407 @@ + + + + + + +Purchase View Adj + + + +
+

Purchase View Adj

+ + +

Beta License: AGPL-3 qrtl/axls-custom

+

This module makes adjustments to purchase related views.

+

Table of contents

+ +
+

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 smashing it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Quartile Limited
  • +
+
+
+

Maintainers

+

This module is part of the qrtl/axls-custom project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/purchase_view_adj/views/purchase_order_views.xml b/purchase_view_adj/views/purchase_order_views.xml new file mode 100644 index 00000000..7d977d31 --- /dev/null +++ b/purchase_view_adj/views/purchase_order_views.xml @@ -0,0 +1,16 @@ + + + + purchase.order.form + purchase.order + + + + show + + + + diff --git a/setup/purchase_view_adj/odoo/addons/purchase_view_adj b/setup/purchase_view_adj/odoo/addons/purchase_view_adj new file mode 120000 index 00000000..daca9ade --- /dev/null +++ b/setup/purchase_view_adj/odoo/addons/purchase_view_adj @@ -0,0 +1 @@ +../../../../purchase_view_adj \ No newline at end of file diff --git a/setup/purchase_view_adj/setup.py b/setup/purchase_view_adj/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/purchase_view_adj/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)