-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
35 lines (34 loc) · 1.09 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
# -*- coding: utf-8 -*-
{
'name': 'Point of Sale Quotations',
'version': '1.0',
'sequence': 6,
'summary': 'Create and Save Quotations of Point Of Sale',
'description': """
This module allows the seller to quickly save quotation to load it in future
""",
'author': "AB Tech",
'website': '',
'category': 'Sales/Point of Sale',
'depends': ['point_of_sale', 'hr'],
'data': [
'security/ir.model.access.csv',
'views/assests.xml',
'views/pos_quotation.xml',
'data/ir_sequence.xml',
'views/pos_config.xml',
'views/pos_order.xml',
],
'qweb': [
'static/src/xml/AnalyticAccountButton.xml',
'static/src/xml/AnalyticTagsButton.xml',
'static/src/xml/LoadQuotationButton.xml',
'static/src/xml/SaveQuotationButton.xml',
'static/src/xml/SaveQuotationPopUp.xml',
'static/src/xml/LoadQuotationPopup.xml',
'static/src/xml/MultiSelectionPopup.xml',
'static/src/xml/PaymentScreen.xml',
'static/src/xml/OrderReceipt.xml',
],
'installable': True,
}