oca-ocb-pos/odoo-bringout-oca-ocb-pos_hr/pos_hr/__manifest__.py
Ernad Husremovic 3ca647e428 19.0 vanilla
2026-03-09 09:29:53 +01:00

40 lines
1.2 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "POS - HR",
'category': "Sales/Point of Sale",
'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_payment_view.xml',
'views/pos_order_report_view.xml',
'views/single_employee_sales_report.xml',
'views/res_config_settings_views.xml',
'wizard/pos_daily_sales_reports.xml',
],
'installable': True,
'auto_install': True,
'assets': {
'point_of_sale._assets_pos': [
'pos_hr/static/src/**/*',
],
'web.assets_tests': [
'pos_hr/static/tests/tours/**/*',
],
'web.assets_unit_tests': [
'pos_hr/static/tests/unit/**/*',
],
},
'author': 'Odoo S.A.',
'license': 'LGPL-3',
}