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.
45 lines
1.7 KiB
45 lines
1.7 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Movie Cast Form View -->
|
|
<record id="movie_cast_view_form" model="ir.ui.view">
|
|
<field name="name">movie.cast.view.form</field>
|
|
<field name="model">movie.cast</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Movie Cast">
|
|
<sheet>
|
|
<group>
|
|
<group>
|
|
<field name="name" required="1"/>
|
|
<field name="cast_id" required="1"/>
|
|
</group>
|
|
<group>
|
|
<field name="cast_image" widget='image' nolabel="1"/>
|
|
</group>
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
<!-- Movie Cast Tree View -->
|
|
<record id="movie_cast_view_tree" model="ir.ui.view">
|
|
<field name="name">movie.cast.view.tree</field>
|
|
<field name="model">movie.cast</field>
|
|
<field name="arch" type="xml">
|
|
<tree>
|
|
<field name="name"/>
|
|
<field name="cast_id"/>
|
|
<field name="cast_image" widget="image" options="{'size': [100, 100]}"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
<!-- Action Movie Cast -->
|
|
<record id="movie_cast_action" model="ir.actions.act_window">
|
|
<field name="name">Show Cast</field>
|
|
<field name="res_model">movie.cast</field>
|
|
<field name="view_mode">tree,form</field>
|
|
</record>
|
|
<!-- MenuItem for movie cast -->
|
|
<menuitem id="movie_movie_cast" name="Show Cast"
|
|
parent="show_booking_management.movie_configuration"
|
|
action="movie_cast_action"/>
|
|
</odoo>
|
|
|