Skip to content

Commit 6d739b0

Browse files
committed
[16.0][ADD] repair_views_kanban
1 parent b5f6df0 commit 6d739b0

11 files changed

Lines changed: 941 additions & 0 deletions

File tree

repair_views_kanban/README.rst

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
===================
2+
Repair Views Kanban
3+
===================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:b7dfc3e8e318a3b562f418159422d0608561871788f5435c5f22e33f59b414f9
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-LGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
18+
:alt: License: LGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Frepair-lightgray.png?logo=github
20+
:target: https://github.com/OCA/repair/tree/16.0/repair_views_kanban
21+
:alt: OCA/repair
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/repair-16-0/repair-16-0-repair_views_kanban
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/repair&target_branch=16.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
This module provides mobile-optimized kanban views for repair orders, designed to improve usability on mobile devices and tablets.
32+
33+
Key Features:
34+
- **Mobile-First Kanban Views**: Invoice-style kanban cards for repair parts (repair.line) and operations (repair.fee)
35+
- **Type-Based Visual Indicators**: Color-coded icons showing add/remove operations with FontAwesome icons
36+
- **Responsive Design**: Optimized layout for mobile devices (viewport ≤ 768px)
37+
- **Touch-Friendly Interface**: Large touch targets and improved spacing for mobile interaction
38+
- **Dual View Mode**: Seamless switching between tree and kanban views in repair order forms
39+
- **Visual Status Indicators**: Clear display of invoiced status and operation types
40+
41+
**Table of contents**
42+
43+
.. contents::
44+
:local:
45+
46+
Bug Tracker
47+
===========
48+
49+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/repair/issues>`_.
50+
In case of trouble, please check there if your issue has already been reported.
51+
If you spotted it first, help us to smash it by providing a detailed and welcomed
52+
`feedback <https://github.com/OCA/repair/issues/new?body=module:%20repair_views_kanban%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
53+
54+
Do not contact contributors directly about support or help with technical issues.
55+
56+
Credits
57+
=======
58+
59+
Authors
60+
~~~~~~~
61+
62+
* Binhex
63+
64+
Contributors
65+
~~~~~~~~~~~~
66+
67+
* Binhex <https://binhex.cloud>
68+
- Antonio Ruban <antoniodavid8@gmail.com>
69+
70+
Maintainers
71+
~~~~~~~~~~~
72+
73+
This module is maintained by the OCA.
74+
75+
.. image:: https://odoo-community.org/logo.png
76+
:alt: Odoo Community Association
77+
:target: https://odoo-community.org
78+
79+
OCA, or the Odoo Community Association, is a nonprofit organization whose
80+
mission is to support the collaborative development of Odoo features and
81+
promote its widespread use.
82+
83+
This module is part of the `OCA/repair <https://github.com/OCA/repair/tree/16.0/repair_views_kanban>`_ project on GitHub.
84+
85+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

repair_views_kanban/__init__.py

Whitespace-only changes.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "Repair Views Kanban",
3+
"version": "16.0.1.0.0",
4+
"license": "LGPL-3",
5+
"category": "Repair",
6+
"summary": "Mobile-optimized kanban views for repair orders",
7+
"author": "Binhex, Odoo Community Association (OCA)",
8+
"website": "https://github.com/OCA/repair",
9+
"depends": ["repair"],
10+
"data": [
11+
"views/repair_views_kanban.xml",
12+
],
13+
"assets": {
14+
"web.assets_backend": [
15+
"repair_views_kanban/static/src/js/list_renderer_mobile.js",
16+
],
17+
},
18+
"installable": True,
19+
"application": False,
20+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* Binhex <https://binhex.cloud>
2+
- Antonio Ruban <antoniodavid8@gmail.com>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
This module provides mobile-optimized kanban views for repair orders, designed to improve usability on mobile devices and tablets.
2+
3+
Key Features:
4+
- **Mobile-First Kanban Views**: Invoice-style kanban cards for repair parts (repair.line) and operations (repair.fee)
5+
- **Type-Based Visual Indicators**: Color-coded icons showing add/remove operations with FontAwesome icons
6+
- **Responsive Design**: Optimized layout for mobile devices (viewport ≤ 768px)
7+
- **Touch-Friendly Interface**: Large touch targets and improved spacing for mobile interaction
8+
- **Dual View Mode**: Seamless switching between tree and kanban views in repair order forms
9+
- **Visual Status Indicators**: Clear display of invoiced status and operation types
9.23 KB
Loading

0 commit comments

Comments
 (0)