-
Notifications
You must be signed in to change notification settings - Fork 3
/
__openerp__.py
35 lines (34 loc) · 1.04 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
# -*- coding: utf-8 -*-
# © 2014-2015 Taktik (http://www.taktik.be) - Adil Houmadi <[email protected]>
# © 2016 Serv. Tecnol. Avanzados - Pedro M. Baeza
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'POS Pricelist',
'version': '8.0.1.4.0',
'category': 'Point Of Sale',
'sequence': 1,
'author': "Adil Houmadi @Taktik, "
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
"Odoo Community Association (OCA)",
'summary': 'Pricelist for Point of sale',
'depends': [
"point_of_sale",
],
'data': [
"views/pos_pricelist_template.xml",
"views/pos_pricelist_views.xml",
"views/point_of_sale_view.xml",
"report/report_receipt.xml",
"security/ir.model.access.csv",
"security/account_fiscal_position_security.xml",
],
'demo': [
'demo/pos_pricelist_demo.yml',
],
'qweb': [
'static/src/xml/pos.xml'
],
'post_init_hook': "set_pos_line_taxes",
'installable': True,
'license': 'AGPL-3',
}