mirror of
https://github.com/bringout/oca-hr.git
synced 2026-04-25 12:32:06 +02:00
Reorganized 67 HR-related modules for better structure: - Moved all odoo-bringout-oca-hr-* packages from packages/oca-technical/ - Now organized in dedicated packages/oca-hr/ submodule - Includes attendance, expense, holiday, employee, and contract modules - Maintains all module functionality while improving project organization This creates a cleaner separation between general technical modules and HR-specific functionality. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
655 B
XML
16 lines
655 B
XML
<odoo noupdate="1">
|
|
<record id="hr_attendance_rfid_rule" model="ir.rule">
|
|
<field name="name">RFID Attendance Rule</field>
|
|
<field name="model_id" ref="hr_attendance.model_hr_attendance" />
|
|
<field name="global" eval="False" />
|
|
<field name="domain_force">[(1, '=', 1)]</field>
|
|
<field
|
|
name="groups"
|
|
eval="[(4, ref('hr_attendance_rfid.group_hr_attendance_rfid'))]"
|
|
/>
|
|
<field name="perm_read" eval="True" />
|
|
<field name="perm_write" eval="True" />
|
|
<field name="perm_create" eval="True" />
|
|
<field name="perm_unlink" eval="False" />
|
|
</record>
|
|
</odoo>
|