-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
44 lines (42 loc) · 2.24 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- coding: utf-8 -*-
{
'name': "Signatures",
'author': '(initially) Ashant Chalasani, Alieh Vo',
'company': 'PowerOn | Wapsol GmbH',
'application': True,
'category': 'Signatures',
'version': '16.0.0.1',
'summary': """
Module for multi-company setups which allows for all mails to be branded from the currently active company's domain.!""",
'description': """
Signatures
==========
Develop an enterprise 16 compatible module for multi-company setups which allows for all mails to be branded from the currently active company's domain.
Features:
- User can setup specific Signature per company, by going to Signatures which is in the main menu and then choose Add Signature by Company.
- There the user can see all the signatures added so far, as well as add new signatures for themselves for each company available by clicking Create button.
- It won't let you create more than one signature for the same company. Each user can create signatures only for themselves, meaning the current active user.
- Test by going to Profile (in the main odoo menu) and by choosing the Preference -> the field Signature will get the value of the Signature that the selected company has for the currently active user.
- By default the signature field has the value of the currently selected company.
- Everyone has permissions to access this menu (any type of user).
- By selecting company the field signature will automatically change its value according to the table where you have previously entered the signature in 'Signatures by Company' under main menu 'Signatures'.
- Don't forget to click Save when you change the company (and the signature along with it). Signatures field is readonly and can be edited only from the main menu 'Signatures'.
- Effects all Chatter communications.
""",
'data': [
'security/ir.model.access.csv',
'views/user_signatures_view.xml',
'views/user_signatures_config_settings.xml',
'views/res_user_signatures.xml',
],
'assets': {
'web.assets_backend': [
'signatures/static/src/js/*.js',
'signatures/static/src/xml/*.xml',
]
},
'depends': ['base','mail'],
'installable': True,
'application': False,
'license': 'LGPL-3'
}