Files
training-tools/learning_base/__manifest__.py
Stéphan Sainléger 6840765f5c [FIX] learning_base: remove learning value frm product detailed_type
If we have to select "learning" value in the detailed_type field, this
means that we can not select Event Ticket, then we can not sell the
product as a ticket in an event.
2023-06-19 15:50:34 +02:00

34 lines
804 B
Python

# -*- coding: utf-8 -*-
{
"name": 'Learning Base',
"version": "16.0.0.0.0",
"depends": [
#'__export__',
'base',
'event',
'sale',
'product',
'website',
'website_sale',
'event_sale',
'partner_firstname',
'product',
'website_event_sale',
'purchase',
],
"author": "Nicolas JEUDY, Odoo Community Association (OCA)",
"installable": True,
"data": [
'security/learning_security.xml',
'security/ir.model.access.csv',
'ir_actions_act_window_records.xml',
'ir_ui_menu_records.xml',
'views/product_template.xml',
'views/event_event.xml',
'views/res_company.xml',
'views/res_partner.xml',
'views/template.xml',
],
}