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.
43 lines
1.6 KiB
43 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Salon working hours action-->
|
|
<record id="salon_working_hours_action" model="ir.actions.act_window">
|
|
<field name="name">Working Hours</field>
|
|
<field name="res_model">salon.working.hours</field>
|
|
<field name="view_mode">tree,form</field>
|
|
</record>
|
|
<!-- Salon working hours view form-->
|
|
<record id="salon_working_hours_view_form" model="ir.ui.view">
|
|
<field name="name">salon.working.view.form</field>
|
|
<field name="model">salon.working.hours</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<sheet>
|
|
<h1>
|
|
<field name="name"/>
|
|
</h1>
|
|
<group>
|
|
<group>
|
|
<field name="from_time" widget="float_time"/>
|
|
</group>
|
|
<group>
|
|
<field name="to_time" widget="float_time"/>
|
|
</group>
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
<!-- Salon working hours view tree-->
|
|
<record id="salon_working_hours_view_tree" model="ir.ui.view">
|
|
<field name="name">salon.working.view.tree</field>
|
|
<field name="model">salon.working.hours</field>
|
|
<field name="arch" type="xml">
|
|
<tree editable="bottom">
|
|
<field name="name"/>
|
|
<field name="from_time" widget="float_time"/>
|
|
<field name="to_time" widget="float_time"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|