36 lines
1.3 KiB
Python
Executable File
36 lines
1.3 KiB
Python
Executable File
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "Sign Sequence Field",
|
|
'summary': "Add a Sequence field type to Sign templates to auto-generate numbers",
|
|
'description': """
|
|
This module extends the Odoo Sign app to add a new field type 'Sequence'.
|
|
When dropped onto a template, it allows linking to an ir.sequence.
|
|
Upon document completion, the sequence number is generated and stamped on the document.
|
|
User can edit the sequence format directly from the field properties.
|
|
""",
|
|
'author': "Mapan",
|
|
'category': 'Sign',
|
|
'version': '0.1',
|
|
'depends': ['sign'],
|
|
'data': [
|
|
'data/sign_item_type_data.xml',
|
|
'views/sign_item_views.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'sign_sequence_field/static/src/xml/sign_item_sequence.xml',
|
|
],
|
|
'web.assets_backend': [
|
|
'sign_sequence_field/static/src/xml/sign_item_sequence.xml',
|
|
'sign_sequence_field/static/src/js/sign_item_custom_popover_patch.js',
|
|
'sign_sequence_field/static/src/js/sign_backend_patch.js',
|
|
'sign_sequence_field/static/src/xml/sign_item_custom_popover_patch.xml',
|
|
],
|
|
'sign.assets_public_sign': [
|
|
'sign_sequence_field/static/src/xml/sign_item_sequence.xml',
|
|
]
|
|
},
|
|
'demo': [],
|
|
'license': 'LGPL-3',
|
|
}
|