Skip to content

Commit ea09516

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

11 files changed

Lines changed: 546 additions & 37 deletions

File tree

contact_referred/README.rst

Lines changed: 56 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,98 @@
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

9-
This modules allows to select a referred contact.
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:66a0dd909c50348b746d95103606b38499e177e60ed8dda6a915271b90742c3f
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
1012
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
1122

12-
Installation
13-
============
23+
|badge1| |badge2| |badge3|
1424

15-
To install this module, you need to:
25+
This module allows linking a contact to another contact by defining a
26+
referred contact.
1627

17-
#. Just install the module
28+
**Table of contents**
1829

30+
.. contents::
31+
:local:
1932

20-
Configuration
21-
=============
33+
Installation
34+
============
2235

23-
To configure this module, you need to:
36+
No special configuration is required.
2437

25-
#. No configuration needed
38+
Configuration
39+
=============
2640

41+
No additional configuration is required after installation.
2742

2843
Usage
2944
=====
3045

31-
To use this module, you need to:
46+
This module adds a new field to the Contact form to define a referred
47+
contact.
3248

33-
#. No special usage instructions needed.
49+
To use it:
3450

51+
1. Go to the **Contacts** application.
52+
2. Open any contact record.
53+
3. Navigate to the **Sales & Purchases** tab at the bottom of the form.
54+
4. You will find a new field called **Referred Contact**.
55+
5. Select another contact from your database and save the record.
3556

36-
ROADMAP
37-
=======
57+
**List View**
3858

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. ]
59+
The module also adds the **Referred Contact** column to the Contacts
60+
list view.
4261

62+
- The column is hidden by default.
63+
- It can be enabled using the column selector on the right side of the
64+
list view.
4365

4466
Bug Tracker
4567
===========
4668

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>`_.
69+
Bugs are tracked on `GitHub Issues <https://github.com/sygel-technology/sy-partner-contact/issues>`_.
70+
In case of trouble, please check there if your issue has already been reported.
71+
If you spotted it first, help us to smash it by providing a detailed and welcomed
72+
`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**>`_.
5173

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

54-
5576
Credits
5677
=======
5778

5879
Authors
59-
~~~~~~~
80+
-------
6081

6182
* Sygel
6283

63-
6484
Contributors
65-
~~~~~~~~~~~~
66-
67-
* Manuel Regidor <manuel.regidor@sygel.es>
68-
85+
------------
6986

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

73-
This module is maintained by Sygel.
89+
- Manuel Regidor
90+
- Valentín Vinagre
91+
- Harald Panten
7492

93+
Maintainers
94+
-----------
7595

76-
This module is part of the `Sygel/sy-partner-contact <https://github.com/sygel-technology/sy-partner-contact>`_.
96+
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.
7797

78-
To contribute to this module, please visit https://github.com/sygel-technology.
98+
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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
No additional configuration is required after installation.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- [Sygel](https://www.sygel.es):
2+
- Manuel Regidor
3+
- Valentín Vinagre
4+
- Harald Panten
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This module allows linking a contact to another contact by defining a referred contact.

contact_referred/readme/INSTALL.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
No special configuration is required.

contact_referred/readme/USAGE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
This module adds a new field to the Contact form to define a referred contact.
2+
3+
To use it:
4+
5+
1. Go to the **Contacts** application.
6+
2. Open any contact record.
7+
3. Navigate to the **Sales & Purchases** tab at the bottom of the form.
8+
4. You will find a new field called **Referred Contact**.
9+
5. Select another contact from your database and save the record.
10+
11+
**List View**
12+
13+
The module also adds the **Referred Contact** column to the Contacts list view.
14+
- The column is hidden by default.
15+
- It can be enabled using the column selector on the right side of the list view.
-13.4 KB
Loading

0 commit comments

Comments
 (0)