summaryrefslogtreecommitdiff
path: root/addons/lunch/__manifest__.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/lunch/__manifest__.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/lunch/__manifest__.py')
-rw-r--r--addons/lunch/__manifest__.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/addons/lunch/__manifest__.py b/addons/lunch/__manifest__.py
new file mode 100644
index 00000000..495ad85c
--- /dev/null
+++ b/addons/lunch/__manifest__.py
@@ -0,0 +1,46 @@
+# -*- coding: utf-8 -*-
+
+{
+ 'name': 'Lunch',
+ 'sequence': 300,
+ 'version': '1.0',
+ 'depends': ['mail'],
+ 'category': 'Human Resources/Lunch',
+ 'summary': 'Handle lunch orders of your employees',
+ 'description': """
+The base module to manage lunch.
+================================
+
+Many companies order sandwiches, pizzas and other, from usual vendors, for their employees to offer them more facilities.
+
+However lunches management within the company requires proper administration especially when the number of employees or vendors is important.
+
+The “Lunch Order” module has been developed to make this management easier but also to offer employees more tools and usability.
+
+In addition to a full meal and vendor management, this module offers the possibility to display warning and provides quick order selection based on employee’s preferences.
+
+If you want to save your employees' time and avoid them to always have coins in their pockets, this module is essential.
+ """,
+ 'data': [
+ 'security/lunch_security.xml',
+ 'security/ir.model.access.csv',
+ 'report/lunch_cashmove_report_views.xml',
+ 'views/lunch_templates.xml',
+ 'views/lunch_alert_views.xml',
+ 'views/lunch_cashmove_views.xml',
+ 'views/lunch_location_views.xml',
+ 'views/lunch_orders_views.xml',
+ 'views/lunch_product_views.xml',
+ 'views/lunch_supplier_views.xml',
+ 'views/res_config_settings.xml',
+ 'views/lunch_views.xml',
+ 'data/lunch_data.xml',
+ 'data/ir_cron_data.xml'
+ ],
+ 'demo': ['data/lunch_demo.xml'],
+ 'qweb': ['static/src/xml/lunch_templates.xml', ],
+ 'installable': True,
+ 'application': True,
+ 'certificate': '001292377792581874189',
+ 'license': 'LGPL-3',
+}