-
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] 13.0 hr_attendance_report_theoretical_time
- Loading branch information
1 parent
cc1b4f3
commit 098aed8
Showing
13 changed files
with
40 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.0\n" | ||
"Project-Id-Version: Odoo Server 13.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2019-05-24 14:19+0000\n" | ||
"Last-Translator: Kévin Allard <[email protected]>\n" | ||
|
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
|
||
* Pedro M. Baeza. | ||
* David Vidal | ||
* Pedro Gonzalez <[email protected]> |
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
25 changes: 13 additions & 12 deletions
25
hr_attendance_report_theoretical_time/views/hr_employee_views.xml
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,22 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<odoo> | ||
<act_window | ||
id="recompute_employee_theoretical_attendance" | ||
name="Recompute Theoretical Attendance" | ||
binding_model="hr.employee" | ||
res_model="recompute.theoretical.attendance" | ||
view_mode="form" | ||
context="{'default_employee_ids': active_ids, 'employee_ids': active_ids}" | ||
target="new" | ||
groups="hr_attendance.group_hr_attendance_manager" | ||
/> | ||
|
||
<record id="view_employee_form_inherit_hr_attendance" model="ir.ui.view"> | ||
<field name="model">hr.employee</field> | ||
<field name="inherit_id" ref="hr_attendance.view_employee_form_inherit_hr_attendance"/> | ||
<field name="inherit_id" ref="hr.view_employee_form"/> | ||
<field name="arch" type="xml"> | ||
<field name="manual_attendance" position="after"> | ||
<field name="pin" position="before"> | ||
<field name="theoretical_hours_start_date"/> | ||
</field> | ||
</field> | ||
</record> | ||
|
||
<act_window id="recompute_employee_theoretical_attendance" | ||
name="Recompute Theoretical Attendance" | ||
src_model="hr.employee" | ||
res_model="recompute.theoretical.attendance" | ||
context="{'default_employee_ids': active_ids, 'employee_ids': active_ids}" | ||
view_type="form" view_mode="form" | ||
key2="client_action_multi" target="new" | ||
groups="hr_attendance.group_hr_attendance_manager"/> | ||
|
||
</odoo> |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
hr-holidays |