-
-
Notifications
You must be signed in to change notification settings - Fork 675
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] hr_job_category: black, isort, prettier
- Loading branch information
Jaime Arroyo
committed
Sep 29, 2020
1 parent
eb65632
commit d858a37
Showing
8 changed files
with
76 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
* Michael Telahun Makonnen <mmakonnen@gmail.com> | ||
* Savoir-faire Linux | ||
* Fekete Mihai <feketemihai@gmail.com> | ||
* Nikul Chaudhary <nikulchaudhary2112@gmail.com> | ||
* Nikul Chaudhary <nikulchaudhary2112@gmail.com> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
|
||
<record id="view_job_form" model="ir.ui.view"> | ||
<field name="name">hr.job.category</field> | ||
<field name="model">hr.job</field> | ||
<field name="inherit_id" ref="hr.view_hr_job_form"/> | ||
<field name="inherit_id" ref="hr.view_hr_job_form" /> | ||
<field name="arch" type="xml"> | ||
<xpath expr="//div[hasclass('oe_title')]" position="inside"> | ||
<label for="category_ids" class="oe_edit_only" groups="hr.group_hr_manager"/> | ||
<field name="category_ids" widget="many2many_tags" placeholder="e.g. Part Time" groups="hr.group_hr_manager"/> | ||
<label | ||
for="category_ids" | ||
class="oe_edit_only" | ||
groups="hr.group_hr_manager" | ||
/> | ||
<field | ||
name="category_ids" | ||
widget="many2many_tags" | ||
placeholder="e.g. Part Time" | ||
groups="hr.group_hr_manager" | ||
/> | ||
</xpath> | ||
</field> | ||
</record> | ||
|
||
</odoo> |