forked from OCA/pos
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path__manifest__.py
31 lines (30 loc) · 915 Bytes
/
__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
# Copyright 2018 - Today Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Point of Sale - Picking Creation Delayed',
'summary': 'Delay the creation of the picking when PoS order is created',
'version': '12.0.2.0.2',
'category': 'Point Of Sale',
'author': 'GRAP, '
'Odoo Community Association (OCA)',
'maintainers': ['legalsylvain'],
'license': 'AGPL-3',
'website': 'https://github.com/OCA/pos',
'depends': [
'point_of_sale',
'queue_job',
],
'data': [
'data/queue_job_channel.xml',
'data/queue_job_function.xml',
'views/view_pos_config.xml',
'views/view_pos_order.xml',
],
'demo': [
'demo/pos_config.xml',
],
'images': [
'static/description/pos_order_tree.png',
],
'installable': True,
}