合并企业版代码(未测试,先提交到测试分支)
This commit is contained in:
35
mrp_workorder_hr/__manifest__.py
Normal file
35
mrp_workorder_hr/__manifest__.py
Normal file
@@ -0,0 +1,35 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': "Employees time registration on Work Orders",
|
||||
'category': "Hidden",
|
||||
'summary': 'Link module between Mrp II and HR employees',
|
||||
|
||||
'description': """
|
||||
This module allows Employees (and not users) to log in to a workorder 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 complete manufacturing tasks.
|
||||
""",
|
||||
|
||||
'depends': ['mrp_workorder', 'hr_hourly_cost', 'hr'],
|
||||
|
||||
'data': [
|
||||
'views/hr_employee_views.xml',
|
||||
'views/mrp_workorder_views.xml',
|
||||
'views/mrp_workcenter_views.xml',
|
||||
'views/mrp_operation_views.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': ['mrp_workorder', 'hr'],
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'mrp_workorder_hr/static/src/**/*.js',
|
||||
'mrp_workorder_hr/static/src/**/*.scss',
|
||||
'mrp_workorder_hr/static/src/**/*.xml',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'mrp_workorder_hr/static/tests/tours/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'OEEL-1',
|
||||
}
|
||||
Reference in New Issue
Block a user