Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .weblate.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@
"filemask": "carpenter/i18n/*.po",
"new_base": "carpenter/i18n/carpenter.pot"
},
{
"name": "catering",
"filemask": "catering/i18n/*.po",
"new_base": "catering/i18n/catering.pot"
},
{
"name": "certification_organism",
"filemask": "certification_organism/i18n/*.po",
Expand Down
Empty file added catering/__init__.py
Empty file.
72 changes: 72 additions & 0 deletions catering/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
'name': 'Catering',
'version': '1.0',
'category': 'Hospitality',
'author': 'Odoo S.A.',
'depends': [
'base_industry_data',
'crm_enterprise',
'hr_skills',
'knowledge',
'planning',
'project_forecast',
'purchase_stock',
'sale_management',
'sale_timesheet',
'stock_dropshipping',
'survey',
'website',
],
'data': [
'data/res_config_settings.xml',
'data/crm_stage.xml',
'data/ir_attachment_pre.xml',
'data/mail_template.xml',
'data/knowledge_cover.xml',
'data/knowledge_article.xml',
'data/planning_role.xml',
'data/product_category.xml',
'data/project_task_type.xml',
'data/project_project.xml',
'data/product_product.xml',
'data/sale_order_template.xml',
'data/sale_order_template_line.xml',
'data/mail_message.xml',
'data/knowledge_article_favorite.xml',
'data/ir_ui_menu.xml',
],
'demo': [
'demo/crm_tag.xml',
'demo/res_partner.xml',
'demo/account_analytic_account.xml',
'demo/crm_lead.xml',
'demo/sale_order.xml',
'demo/sale_order_line.xml',
'demo/sale_order_confirm.xml',
'demo/stock_picking.xml',
'demo/stock_move.xml',
'demo/project_project.xml',
'demo/project_task.xml',
'demo/calendar_event.xml',
'demo/purchase_order.xml',
'demo/purchase_order_line.xml',
'demo/purchase_order_confirm.xml',
'demo/planning_slot_template.xml',
'demo/hr_employee.xml',
'demo/planning_slot.xml',
'demo/ir_attachment_post.xml',
'demo/product_supplierinfo.xml',
'demo/website_view.xml',
'demo/website_page.xml',
'demo/website_theme_apply.xml',
'demo/website.xml',
],
'license': 'OPL-1',
'cloc_exclude': [
'data/knowledge_article.xml',
'demo/website_view.xml',
],
'images': ['images/main.png'],
'url': "https://www.odoo.com/trial?industry&selected_app=catering",
'website': "https://www.odoo.com/all-industries",
}
6 changes: 6 additions & 0 deletions catering/data/crm_stage.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<odoo noupdate="1">
<record id="crm.stage_lead2" model="crm.stage" forcecreate="1">
<field name="rotting_threshold_days">8</field>
</record>
</odoo>
7 changes: 7 additions & 0 deletions catering/data/ir_attachment_pre.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<odoo noupdate="1">
<record id="ir_attachment_1253" model="ir.attachment">
<field name="name">ir_attachment_1253.jpg</field>
<field name="datas" type="base64" file="catering/static/src/binary/ir_attachment/ir_attachment_1253.jpg"/>
</record>
</odoo>
45 changes: 45 additions & 0 deletions catering/data/ir_ui_menu.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?xml version='1.0' encoding='UTF-8'?>
<odoo>
<record id="crm.crm_menu_root" model="ir.ui.menu" forcecreate="0">
<field name="sequence">1</field>
</record>
<record id="sale.sale_menu_root" model="ir.ui.menu" forcecreate="0">
<field name="sequence">2</field>
</record>
<record id="project.menu_main_pm" model="ir.ui.menu" forcecreate="0">
<field name="sequence">3</field>
</record>
<record id="planning.planning_menu_root" model="ir.ui.menu" forcecreate="0">
<field name="sequence">4</field>
</record>
<record id="stock.menu_stock_root" model="ir.ui.menu" forcecreate="0">
<field name="sequence">5</field>
</record>
<record id="account.menu_finance" model="ir.ui.menu" forcecreate="0">
<field name="sequence">6</field>
</record>
<record id="hr_timesheet.timesheet_menu_root" model="ir.ui.menu" forcecreate="0">
<field name="sequence">7</field>
</record>
<record id="website.menu_website_configuration" model="ir.ui.menu" forcecreate="0">
<field name="sequence">8</field>
</record>
<record id="purchase.menu_purchase_root" model="ir.ui.menu" forcecreate="0">
<field name="sequence">9</field>
</record>
<record id="contacts.menu_contacts" model="ir.ui.menu" forcecreate="0">
<field name="sequence">10</field>
</record>
<record id="knowledge.knowledge_menu_root" model="ir.ui.menu" forcecreate="0">
<field name="sequence">12</field>
</record>
<record id="mail.menu_root_discuss" model="ir.ui.menu" forcecreate="0">
<field name="sequence">13</field>
</record>
<record id="calendar.mail_menu_calendar" model="ir.ui.menu" forcecreate="0">
<field name="sequence">14</field>
</record>
<record id="project_todo.menu_todo_todos" model="ir.ui.menu" forcecreate="0">
<field name="sequence">15</field>
</record>
</odoo>
Loading