mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-25 01:01:58 +02:00
Initial commit: Pos packages
This commit is contained in:
commit
95dfb9edb0
1301 changed files with 264148 additions and 0 deletions
|
|
@ -0,0 +1,46 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
|
||||
{
|
||||
'name': 'Restaurant',
|
||||
'version': '1.0',
|
||||
'category': 'Sales/Point of Sale',
|
||||
'sequence': 6,
|
||||
'summary': 'Restaurant extensions for the Point of Sale ',
|
||||
'description': """
|
||||
|
||||
This module adds several features to the Point of Sale that are specific to restaurant management:
|
||||
- Bill Printing: Allows you to print a receipt before the order is paid
|
||||
- Bill Splitting: Allows you to split an order into different orders
|
||||
- Kitchen Order Printing: allows you to print orders updates to kitchen or bar printers
|
||||
|
||||
""",
|
||||
'depends': ['point_of_sale'],
|
||||
'website': 'https://www.odoo.com/app/point-of-sale-restaurant',
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'views/pos_order_views.xml',
|
||||
'views/pos_restaurant_views.xml',
|
||||
'views/res_config_settings_views.xml',
|
||||
],
|
||||
'demo': [
|
||||
'data/pos_restaurant_demo.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'assets': {
|
||||
'point_of_sale.assets': [
|
||||
'pos_restaurant/static/lib/**/*.js',
|
||||
'pos_restaurant/static/src/js/**/*.js',
|
||||
('after', 'point_of_sale/static/src/scss/pos.scss', 'pos_restaurant/static/src/scss/restaurant.scss'),
|
||||
'pos_restaurant/static/src/xml/**/*',
|
||||
],
|
||||
'web.assets_backend': [
|
||||
'point_of_sale/static/src/scss/pos_dashboard.scss',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'pos_restaurant/static/tests/tours/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue