You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
905 B
23 lines
905 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Record for import attendance view form -->
|
|
<record id="import_attendance_view_form" model="ir.ui.view">
|
|
<field name="name">import.attendance.view.form</field>
|
|
<field name="model">import.attendance</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<group>
|
|
<group>
|
|
<field name="file_type" widget="radio"/>
|
|
<field name="file_upload"/>
|
|
</group>
|
|
</group>
|
|
<footer>
|
|
<button string="Import" class="oe_highlight" type="object"
|
|
name="action_import_attendance" data-hotkey="i"/>
|
|
<button string="Cancel" special="cancel" data-hotkey="z"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|