bc4e2cd9c1
* [added] hospitality domain * [tests] wip * [tests] for restaurant * [fix] tests for new naming * [docs] added restaurant docs * [docs] added restaurant docs
33 lines
700 B
Python
33 lines
700 B
Python
data = {
|
|
'desktop_icons': [
|
|
'Restaurant',
|
|
'Accounts',
|
|
'Buying',
|
|
'Stock',
|
|
'HR',
|
|
'Project',
|
|
'ToDo'
|
|
],
|
|
'restricted_roles': [
|
|
'Restaurant Manager'
|
|
],
|
|
'custom_fields': {
|
|
'Sales Invoice': [
|
|
{
|
|
'fieldname': 'restaurant', 'fieldtype': 'Link', 'options': 'Restaurant',
|
|
'insert_after': 'customer_name', 'label': 'Restaurant',
|
|
},
|
|
{
|
|
'fieldname': 'restaurant_table', 'fieldtype': 'Link', 'options': 'Restaurant Table',
|
|
'insert_after': 'restaurant', 'label': 'Restaurant Table',
|
|
}
|
|
],
|
|
'Price List': [
|
|
{
|
|
'fieldname':'restaurant_menu', 'fieldtype':'Link', 'options':'Restaurant Menu', 'label':'Restaurant Menu',
|
|
'insert_after':'currency'
|
|
}
|
|
]
|
|
}
|
|
}
|