-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__openerp__.py
36 lines (35 loc) · 1.14 KB
/
__openerp__.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
# -*- coding: utf-8 -*-
# Copyright (C) 2016-Today: La Louve (<http://www.lalouve.net/>)
# @author: La Louve, modified by Supercoop
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'SP - Point of Sale',
'version': '9.0.5.0.0',
'category': 'Custom',
'summary': """
Customize Point of Sale Display
Supercoop fork from coop_point_of_sale (Coop - Point of Sale Custom views),
only removing their custom OrderWidget that remove order line when setting quantity equal to 0
""",
'author': 'La Louve, Supercoop',
'website': 'http://www.lalouve.net',
'depends': [
'point_of_sale',
'coop_membership',
],
'qweb': [
'static/src/xml/point_of_sale.xml',
'static/src/xml/popups.xml',
],
'data': [
'security/ir.model.access.csv',
'static/src/xml/templates.xml',
'views/view_pos_order.xml',
'views/view_res_config.xml',
'views/view_pos_session.xml',
'views/view_pos_order_line.xml',
'views/view_pos_config_settings.xml',
'views/view_pos_category.xml',
],
'installable': True,
}