-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy path__manifest__.py
More file actions
85 lines (85 loc) · 2.81 KB
/
Copy path__manifest__.py
File metadata and controls
85 lines (85 loc) · 2.81 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
'name': 'Agricultural Store',
'version': '1.0',
'category': 'Retail',
'description': """
Tailored Setup for Agricultural Retail Businesses:
This module is for B2B and B2C sales of farming products, including seeds, pesticides, plant nutrition, and equipment. The setup integrates all necessary modules (Point of Sale, Inventory, Sales, Purchase, ...) to run your business with the possibility to expand into online sales with the ecommerce and website applications.
""",
'depends': [
'crm',
'knowledge',
'pos_sale',
'product_expiry',
'purchase_requisition',
'sale_purchase',
'survey',
'web_studio',
'website_sale_loyalty',
'theme_enark',
],
'data': [
'data/res_config_settings.xml',
'data/ir_actions_server.xml',
'data/ir_attachment_pre.xml',
'data/ir_model_fields.xml',
'data/ir_ui_view.xml',
'data/pos_category.xml',
'data/pos_config.xml',
'data/product_category.xml',
'data/product_pricelist.xml',
'data/product_product.xml',
'data/product_pricelist_item.xml',
'data/knowledge_cover.xml',
'data/knowledge_article.xml',
'data/knowledge_article_favorite.xml',
'data/mail_message.xml',
'data/website_view.xml',
'data/website_theme_apply.xml',
'data/knowledge_tour.xml',
'data/purchase_tour.xml',
],
'demo': [
'demo/res_partner.xml',
'demo/product_product.xml',
'demo/survey_survey.xml',
'demo/survey_question.xml',
'demo/survey_question_answer.xml',
'demo/crm_lead.xml',
'demo/product_supplierinfo.xml',
'demo/loyalty_program.xml',
'demo/loyalty_rule.xml',
'demo/loyalty_reward.xml',
'demo/stock_lot.xml',
'demo/purchase_order.xml',
'demo/purchase_order_line.xml',
'demo/purchase_order_post.xml',
'demo/sale_order.xml',
'demo/sale_order_line.xml',
'demo/loyalty_card.xml',
'demo/sale_order_post.xml',
'demo/website.xml',
'demo/website_view.xml',
'demo/website_page.xml',
'demo/website_menu.xml',
'demo/website_theme_apply.xml',
'demo/website_ir_attachment.xml',
'demo/payment_provider_demo_post.xml',
],
'license': 'OPL-1',
'assets': {
'web.assets_backend': [
'agriculture_shop/static/src/js/my_tour.js',
'agriculture_shop/static/src/js/tours/purchase_flow.js',
]
},
'author': 'Odoo S.A.',
"cloc_exclude": [
"data/knowledge_article.xml",
"static/src/js/my_tour.js",
"static/src/js/tours/purchase_flow.js",
"data/website_view.xml",
"demo/website_view.xml",
],
'images': ['images/main.png'],
}