mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
MIG hr_workers_comp For Odoo 13.0
This commit is contained in:
@@ -1 +1 @@
|
|||||||
from . import contract
|
from . import models
|
||||||
|
|||||||
@@ -3,20 +3,21 @@
|
|||||||
'author': 'Hibou Corp. <hello@hibou.io>',
|
'author': 'Hibou Corp. <hello@hibou.io>',
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
'category': 'Human Resources',
|
'category': 'Human Resources',
|
||||||
'depends': ['hr_contract'],
|
'website': 'https://hibou.io/',
|
||||||
'version': '12.0.1.0.0',
|
'version': '13.0.1.0.0',
|
||||||
'description': """
|
'description': """
|
||||||
Workers' Compensation Class
|
Workers' Compensation Class
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
Provides a model to keep track of Workers' Comp. Class Codes and Rates.
|
Provides a model to keep track of Workers' Comp. Class Codes and Rates.
|
||||||
""",
|
""",
|
||||||
|
'depends': [
|
||||||
'auto_install': False,
|
'hr_contract',
|
||||||
'website': 'https://hibou.io/',
|
|
||||||
'data':[
|
|
||||||
'ir.model.access.csv',
|
|
||||||
'contract_views.xml',
|
|
||||||
],
|
],
|
||||||
|
'data':[
|
||||||
|
'security/ir.model.access.csv',
|
||||||
|
'views/contract_views.xml',
|
||||||
|
],
|
||||||
|
'auto_install': False,
|
||||||
'installable': True
|
'installable': True
|
||||||
}
|
}
|
||||||
|
|||||||
1
hr_workers_comp/models/__init__.py
Normal file
1
hr_workers_comp/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
from . import contract
|
||||||
@@ -65,7 +65,7 @@
|
|||||||
<field name="model">hr.contract</field>
|
<field name="model">hr.contract</field>
|
||||||
<field name="inherit_id" ref="hr_contract.hr_contract_view_form"/>
|
<field name="inherit_id" ref="hr_contract.hr_contract_view_form"/>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<xpath expr="//field[@name='type_id']" position="after">
|
<xpath expr="//field[@name='structure_type_id']" position="after">
|
||||||
<field name="wc_code_id"/>
|
<field name="wc_code_id"/>
|
||||||
</xpath>
|
</xpath>
|
||||||
</field>
|
</field>
|
||||||
Reference in New Issue
Block a user