customaddons-kedaikipas58/custom_preparation_display/__manifest__.py

38 lines
1.0 KiB
Python

# -*- coding: utf-8 -*-
{
'name': "custom_preparation_display",
'summary': "Change the Preparation Display for Kedai Kipas 58",
'description': """
Change the Odoo Preparation Display for Kedai Kipas 58
""",
'author': "Suherdy Yacob",
'license': "GPL-3",
'website': "",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
# for the full list
'category': 'Sales/Point of Sale',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base','point_of_sale', 'pos_self_order', 'pos_preparation_display'],
# 'installable': True,
'auto_install': True,
# always loaded
'data': [
# 'security/ir.model.access.csv',
],
# only loaded in demonstration mode
'demo': [
],
'assets': {
'pos_preparation_display.assets': [
'custom_preparation_display/static/src/override/pos_preparation_display/**/*.js',
],
},
}