Skip to content

Commit 3b597a2

Browse files
committed
[T-8768][MIG] contact_referred
1 parent 40f8102 commit 3b597a2

9 files changed

Lines changed: 498 additions & 35 deletions

File tree

contact_referred/README.rst

Lines changed: 39 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,83 @@
1-
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
2-
:target: http://www.gnu.org/licenses/agpl
3-
:alt: License: AGPL-3
4-
51
================
62
Contact Referred
73
================
84

5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:66a0dd909c50348b746d95103606b38499e177e60ed8dda6a915271b90742c3f
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-sygel--technology%2Fsy--partner--contact-lightgray.png?logo=github
20+
:target: https://github.com/sygel-technology/sy-partner-contact/tree/18.0/contact_referred
21+
:alt: sygel-technology/sy-partner-contact
22+
23+
|badge1| |badge2| |badge3|
24+
925
This modules allows to select a referred contact.
1026

27+
**Table of contents**
28+
29+
.. contents::
30+
:local:
1131

1232
Installation
1333
============
1434

1535
To install this module, you need to:
1636

17-
#. Just install the module
18-
37+
- Just install the module
1938

2039
Configuration
2140
=============
2241

2342
To configure this module, you need to:
2443

25-
#. No configuration needed
26-
44+
- No configuration needed
2745

2846
Usage
2947
=====
3048

3149
To use this module, you need to:
3250

33-
#. No special usage instructions needed.
34-
35-
36-
ROADMAP
37-
=======
38-
39-
[ Enumerate known caveats and future potential improvements.
40-
It is mostly intended for end-users, and can also help
41-
potential new contributors discovering new features to implement. ]
42-
51+
- No special usage instructions needed.
4352

4453
Bug Tracker
4554
===========
4655

47-
Bugs and errors are managed in `issues of GitHub <https://github.com/sygel-technology/sy-partner-contact/issues>`_.
48-
In case of problems, please check if your problem has already been
49-
reported. If you are the first to discover it, help us solving it by indicating
50-
a detailed description `here <https://github.com/sygel-technology/sy-partner-contact/issues/new>`_.
56+
Bugs are tracked on `GitHub Issues <https://github.com/sygel-technology/sy-partner-contact/issues>`_.
57+
In case of trouble, please check there if your issue has already been reported.
58+
If you spotted it first, help us to smash it by providing a detailed and welcomed
59+
`feedback <https://github.com/sygel-technology/sy-partner-contact/issues/new?body=module:%20contact_referred%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
5160

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

54-
5563
Credits
5664
=======
5765

5866
Authors
59-
~~~~~~~
67+
-------
6068

6169
* Sygel
6270

63-
6471
Contributors
65-
~~~~~~~~~~~~
66-
67-
* Manuel Regidor <manuel.regidor@sygel.es>
68-
72+
------------
6973

70-
Maintainer
71-
~~~~~~~~~~
74+
- `Sygel <https://www.sygel.es>`__:
7275

73-
This module is maintained by Sygel.
76+
- Manuel Regidor
7477

78+
Maintainers
79+
-----------
7580

76-
This module is part of the `Sygel/sy-partner-contact <https://github.com/sygel-technology/sy-partner-contact>`_.
81+
This module is part of the `sygel-technology/sy-partner-contact <https://github.com/sygel-technology/sy-partner-contact/tree/18.0/contact_referred>`_ project on GitHub.
7782

78-
To contribute to this module, please visit https://github.com/sygel-technology.
83+
You are welcome to contribute.

contact_referred/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
{
55
"name": "Contact Referred",
6-
"version": "15.0.1.0.0",
6+
"version": "18.0.1.0.0",
77
"author": "Sygel",
88
"category": "Contact",
99
"summary": "Referred Contact Field.",

contact_referred/pyproject.toml

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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
To configure this module, you need to:
2+
3+
- No configuration needed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- [Sygel](https://www.sygel.es):
2+
- Manuel Regidor
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This modules allows to select a referred contact.

contact_referred/readme/INSTALL.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
To install this module, you need to:
2+
3+
- Just install the module

contact_referred/readme/USAGE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
To use this module, you need to:
2+
3+
- No special usage instructions needed.

0 commit comments

Comments
 (0)