mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-24 23:22:02 +02:00
Initial commit: Pos packages
This commit is contained in:
commit
95dfb9edb0
1301 changed files with 264148 additions and 0 deletions
41
odoo-bringout-oca-ocb-pos_hr/pos_hr/__manifest__.py
Normal file
41
odoo-bringout-oca-ocb-pos_hr/pos_hr/__manifest__.py
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': "pos_hr",
|
||||
'category': "Hidden",
|
||||
'summary': 'Link module between Point of Sale and HR',
|
||||
|
||||
'description': """
|
||||
This module allows Employees (and not users) to log in to the Point of Sale application using a barcode, a PIN number or both.
|
||||
The actual till still requires one user but an unlimited number of employees can log on to that till and process sales.
|
||||
""",
|
||||
|
||||
'depends': ['point_of_sale', 'hr'],
|
||||
|
||||
'data': [
|
||||
'views/pos_config.xml',
|
||||
'views/pos_order_view.xml',
|
||||
'views/pos_order_report_view.xml',
|
||||
'views/res_config_settings_views.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
'assets': {
|
||||
'point_of_sale.assets': [
|
||||
'pos_hr/static/src/css/pos.css',
|
||||
'pos_hr/static/src/js/models.js',
|
||||
'pos_hr/static/src/js/SelectCashierMixin.js',
|
||||
'pos_hr/static/src/js/Chrome.js',
|
||||
'pos_hr/static/src/js/HeaderLockButton.js',
|
||||
'pos_hr/static/src/js/CashierName.js',
|
||||
'pos_hr/static/src/js/LoginScreen.js',
|
||||
'pos_hr/static/src/js/PaymentScreen.js',
|
||||
'pos_hr/static/src/xml/**/*',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'pos_hr/static/tests/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue