Skip to content

Commit 044c6a7

Browse files
[18.0][ADD]purchase_mobile_catalog:Show the 'Catalog' action in mobile (kanban) view for purchase order lines.
1 parent 62512cf commit 044c6a7

File tree

12 files changed

+584
-0
lines changed

12 files changed

+584
-0
lines changed

purchase_mobile_catalog/README.rst

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
=======================
2+
Purchase Mobile Catalog
3+
=======================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:75dcd83cf0adc314018d19dba373aef5483edb5c0a26e74730073512e12de932
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpurchase--workflow-lightgray.png?logo=github
20+
:target: https://github.com/OCA/purchase-workflow/tree/18.0/purchase_mobile_catalog
21+
:alt: OCA/purchase-workflow
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/purchase-workflow-18-0/purchase-workflow-18-0-purchase_mobile_catalog
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/purchase-workflow&target_branch=18.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
Show the 'Catalog' action in mobile (kanban) view for purchase order
32+
lines.
33+
34+
**Table of contents**
35+
36+
.. contents::
37+
:local:
38+
39+
Installation
40+
============
41+
42+
To use this module, you need to install "purchase" addons.
43+
44+
Configuration
45+
=============
46+
47+
No configuration needed
48+
49+
Usage
50+
=====
51+
52+
1. Go to *Purchase > Orders > Purchase Orders*.
53+
2. The Catalog button will be displayed in the mobile view.
54+
55+
Bug Tracker
56+
===========
57+
58+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/purchase-workflow/issues>`_.
59+
In case of trouble, please check there if your issue has already been reported.
60+
If you spotted it first, help us to smash it by providing a detailed and welcomed
61+
`feedback <https://github.com/OCA/purchase-workflow/issues/new?body=module:%20purchase_mobile_catalog%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
62+
63+
Do not contact contributors directly about support or help with technical issues.
64+
65+
Credits
66+
=======
67+
68+
Authors
69+
-------
70+
71+
* Binhex
72+
73+
Contributors
74+
------------
75+
76+
- `Binhex <https://www.binhex.cloud>`__:
77+
78+
- Carlos R. Rodriguez Trujillo\ [email protected]
79+
80+
Maintainers
81+
-----------
82+
83+
This module is maintained by the OCA.
84+
85+
.. image:: https://odoo-community.org/logo.png
86+
:alt: Odoo Community Association
87+
:target: https://odoo-community.org
88+
89+
OCA, or the Odoo Community Association, is a nonprofit organization whose
90+
mission is to support the collaborative development of Odoo features and
91+
promote its widespread use.
92+
93+
This module is part of the `OCA/purchase-workflow <https://github.com/OCA/purchase-workflow/tree/18.0/purchase_mobile_catalog>`_ project on GitHub.
94+
95+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

purchase_mobile_catalog/__init__.py

Whitespace-only changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Copyright 2025 Binhex <https://www.binhex.cloud>
2+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3+
4+
{
5+
"name": "Purchase Mobile Catalog",
6+
"summary": "Show the 'Catalog' action in mobile (kanban) view for purchase order lines.",
7+
"version": "18.0.1.0.0",
8+
"author": "Binhex, Odoo Community Association (OCA)",
9+
"category": "Purchase Management",
10+
"website": "https://github.com/OCA/purchase-workflow",
11+
"depends": ["purchase", "product"],
12+
"data": ["views/purchase_mobile_catalog_views.xml"],
13+
"installable": True,
14+
"license": "AGPL-3",
15+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
No configuration needed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- [Binhex](https://www.binhex.cloud):
2+
- Carlos R. Rodriguez Trujillo<[email protected]>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Show the 'Catalog' action in mobile (kanban) view for purchase order lines.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
To use this module, you need to install "purchase" addons.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
1. Go to *Purchase \> Orders \> Purchase Orders*.
2+
2. The Catalog button will be displayed in the mobile view.
9.23 KB
Loading

0 commit comments

Comments
 (0)