Skip to content

Commit 9346dfe

Browse files
author
Adasat Torres de León
committed
[ADD]web_phone_field_whatsapp
1 parent f3a122c commit 9346dfe

14 files changed

Lines changed: 631 additions & 0 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../web_phone_field_whatsapp
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import setuptools
2+
3+
setuptools.setup(
4+
setup_requires=['setuptools-odoo'],
5+
odoo_addon=True,
6+
)
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
========================
2+
Web Phone Field WhatsApp
3+
========================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:58c12c371c6ee98ab722ae1650ab897bae09a893eb28400500c3afd9bdff5175
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%2Fweb-lightgray.png?logo=github
20+
:target: https://github.com/OCA/web/tree/16.0/web_phone_field_whatsapp
21+
:alt: OCA/web
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_phone_field_whatsapp
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/web&target_branch=16.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
This module adds a shortcut functionality to WhatsApp Web or the WhatsApp application in the phone widget.
32+
33+
34+
35+
36+
**Table of contents**
37+
38+
.. contents::
39+
:local:
40+
41+
Usage
42+
=====
43+
44+
To use this new functionality, simply go to a char field with the phone widget,
45+
enter the phone number, and execute the WhatsApp Web option.
46+
47+
Bug Tracker
48+
===========
49+
50+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
51+
In case of trouble, please check there if your issue has already been reported.
52+
If you spotted it first, help us to smash it by providing a detailed and welcomed
53+
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_phone_field_whatsapp%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
54+
55+
Do not contact contributors directly about support or help with technical issues.
56+
57+
Credits
58+
=======
59+
60+
Authors
61+
~~~~~~~
62+
63+
* Binhex
64+
65+
Contributors
66+
~~~~~~~~~~~~
67+
68+
* `Binhex <https//www.binhex.cloud>`_:
69+
70+
* Adasat Torres de León <a.torres@binhex.cloud>
71+
72+
Maintainers
73+
~~~~~~~~~~~
74+
75+
This module is maintained by the OCA.
76+
77+
.. image:: https://odoo-community.org/logo.png
78+
:alt: Odoo Community Association
79+
:target: https://odoo-community.org
80+
81+
OCA, or the Odoo Community Association, is a nonprofit organization whose
82+
mission is to support the collaborative development of Odoo features and
83+
promote its widespread use.
84+
85+
.. |maintainer-adasatorres| image:: https://github.com/adasatorres.png?size=40px
86+
:target: https://github.com/adasatorres
87+
:alt: adasatorres
88+
89+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
90+
91+
|maintainer-adasatorres|
92+
93+
This module is part of the `OCA/web <https://github.com/OCA/web/tree/16.0/web_phone_field_whatsapp>`_ project on GitHub.
94+
95+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

web_phone_field_whatsapp/__init__.py

Whitespace-only changes.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "Web Phone Field WhatsApp",
3+
"summary": """
4+
This module adds a shortcut functionality to WhatsApp Web
5+
or the WhatsApp application in the phone widget.
6+
""",
7+
"author": "Binhex, Odoo Community Association (OCA)",
8+
"maintainers": ["adasatorres"],
9+
"website": "https://github.com/OCA/web",
10+
"category": "Web",
11+
"version": "16.0.1.0.0",
12+
"depends": ["web"],
13+
"data": [],
14+
"assets": {
15+
"web.assets_backend": [
16+
"web_phone_field_whatsapp/static/src/**/**.js",
17+
"web_phone_field_whatsapp/static/src/**/*.xml",
18+
],
19+
},
20+
"license": "LGPL-3",
21+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* `Binhex <https//www.binhex.cloud>`_:
2+
3+
* Adasat Torres de León <a.torres@binhex.cloud>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
This module adds a shortcut functionality to WhatsApp Web or the WhatsApp application in the phone widget.
2+
3+
4+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
To use this new functionality, simply go to a char field with the phone widget,
2+
enter the phone number, and execute the WhatsApp Web option.
9.23 KB
Loading

0 commit comments

Comments
 (0)