Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions crm_claim_portal/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

================
CRM Claim Portal
================
This module allows portal user access to their related claims.


Key Features
------------
- New button **preview_crm_claim** on Claims.
- Visible in **form** view.


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

Bugs are tracked on `GitHub Issues
<https://github.com/avanzosc/crm-addons/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smash it by providing detailed and welcomed feedback.

Credits
=======

Contributors
------------
* Oihane Crucelaegui <[email protected]>

Do not contact contributors directly about support or help with technical issues.
2 changes: 2 additions & 0 deletions crm_claim_portal/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import controllers
from . import models
24 changes: 24 additions & 0 deletions crm_claim_portal/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2021 Oihane Crucelaegui - AvanzOSC
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

{
"name": "CRM Claim Portal",
"version": "18.0.1.0.0",
"category": "Customer Relationship Management",
"license": "AGPL-3",
"author": "AvanzOSC",
"website": "https://github.com/avanzosc/crm-addons",
"depends": [
"crm_claim",
"crm_claim_code",
"crm_claim_usability",
"portal",
],
"data": [
"security/ir.model.access.csv",
"security/crm_claim_security.xml",
"views/crm_claim_template.xml",
"views/crm_claim_view.xml",
],
"installable": True,
}
1 change: 1 addition & 0 deletions crm_claim_portal/controllers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import crm_claim_portal
Loading