Skip to content

Commit

Permalink
[17.0][MIG] fleet_vehicle_service_kanban: Migration to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elheit committed Nov 5, 2024
1 parent 79d1086 commit 2f83006
Show file tree
Hide file tree
Showing 35 changed files with 3,565 additions and 0 deletions.
112 changes: 112 additions & 0 deletions fleet_vehicle_service_kanban/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
====================================
Kanban Features for Vehicle Services
====================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:69fcd4eb2580beed020668780c749155b966aab059ffcc6afac6f6d6bcd1e3b7
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
:target: https://odoo-community.org/page/development-status
:alt: Production/Stable
.. |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-OCA%2Ffleet-lightgray.png?logo=github
:target: https://github.com/OCA/fleet/tree/17.0/fleet_vehicle_service_kanban
:alt: OCA/fleet
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/fleet-17-0/fleet-17-0-fleet_vehicle_service_kanban
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/fleet&target_branch=17.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module adds the following features to vehicle services
(fleet.vehicle.log.service):

- Kanban view.
- Features of mail (chatter) and acitivities, includes a new activity
view.
- Configurable activity types. Menu under Fleet / Configuration /
Services Logs / Activity Types.
- New fields: Responsible, Priority, Tags, Active, Stage.
- Configurable stages. Menu under Fleet / Configuration / Services Logs
/ Vehicle Services Stages.
- Configurable tags. Menu under Fleet / Configuration / Services Logs /
Vehicle Services Tags.

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/fleet/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/fleet/issues/new?body=module:%20fleet_vehicle_service_kanban%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
-------

* Druidoo

Contributors
------------

- `Druidoo <https://www.druidoo.io>`__:

- Iván Todorovich <ivan.todorovich@druidoo.io>
- Manuel Marquez <manuel.marquez@druidoo.io>

- `Escodoo <https://www.escodoo.com.br>`__:

- Marcel Savegnago <marcel.savegnago@escodoo.com.br>
- Kaynnan Lemes <kaynnan.lemes@escodoo.com.br>

..
- `Tecnativa <https://www.tecnativa.com>`__:

..
- Carolina Fernandez

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

.. |maintainer-elheit| image:: https://github.com/elheit.png?size=40px
:target: https://github.com/elheit
:alt: elheit

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-elheit|

This module is part of the `OCA/fleet <https://github.com/OCA/fleet/tree/17.0/fleet_vehicle_service_kanban>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
4 changes: 4 additions & 0 deletions fleet_vehicle_service_kanban/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright 2020-Present Druidoo - Manuel Marquez <manuel.marquez@druidoo.io>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from . import models
26 changes: 26 additions & 0 deletions fleet_vehicle_service_kanban/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Copyright 2020-Present Druidoo - Manuel Marquez <manuel.marquez@druidoo.io>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "Kanban Features for Vehicle Services",
"summary": "Add features of kanban to logs of vehicle services.",
"category": "Human Resources/Fleet",
"author": "Druidoo, Odoo Community Association (OCA)",
"maintainers": ["elheit"],
"development_status": "Production/Stable",
"website": "https://github.com/OCA/fleet",
"license": "AGPL-3",
"version": "17.0.1.1.0",
"depends": ["fleet", "mail"],
"data": [
"security/ir.model.access.csv",
"data/fleet_vehicle_log_services_stage_data.xml",
"data/mail_message_subtype_data.xml",
"views/fleet_vehicle_log_services_views.xml",
"views/fleet_vehicle_log_services_stage_views.xml",
"views/fleet_vehicle_log_services_tag_views.xml",
"views/fleet_service_type_views.xml",
"views/mail_activity_type_views.xml",
],
"installable": True,
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo noupdate="1">
<record
id="fleet_vehicle_log_services_stage_draft"
model="fleet.vehicle.log.services.stage"
>
<field name="name">Draft</field>
<field name="sequence">1</field>
</record>
</odoo>
33 changes: 33 additions & 0 deletions fleet_vehicle_service_kanban/data/mail_message_subtype_data.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo noupdate="1">
<record
id="mail_message_subtype_fleet_service_purchaser_updated"
model="mail.message.subtype"
>
<field name="name">Changed Purchaser</field>
<field name="sequence">0</field>
<field name="res_model">fleet.vehicle.log.services</field>
<field name="default" eval="True" />
<field name="description">Changed Purchaser</field>
</record>
<record
id="mail_message_subtype_fleet_service_vendor_updated"
model="mail.message.subtype"
>
<field name="name">Changed Vendor</field>
<field name="sequence">1</field>
<field name="res_model">fleet.vehicle.log.services</field>
<field name="default" eval="True" />
<field name="description">Changed Vendor</field>
</record>
<record
id="mail_message_subtype_fleet_service_user_updated"
model="mail.message.subtype"
>
<field name="name">Changed Responsible</field>
<field name="sequence">2</field>
<field name="res_model">fleet.vehicle.log.services</field>
<field name="default" eval="True" />
<field name="description">Changed Responsible</field>
</record>
</odoo>
Loading

0 comments on commit 2f83006

Please sign in to comment.