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.
35 lines
1.5 KiB
35 lines
1.5 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- This is used to update the sticky note-->
|
|
<record id="sticky_notes_update_action" model="ir.actions.act_window">
|
|
<field name="name">Sticky Notes Update</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">sticky.notes.update</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
<record id="sticky_notes_update_view_form" model="ir.ui.view">
|
|
<field name="name">sticky.notes.update.view.form</field>
|
|
<field name="model">sticky.notes.update</field>
|
|
<field name="arch" type="xml">
|
|
<form string="wizard">
|
|
<group>
|
|
<group>
|
|
<field name="background_color" widget="color"/>
|
|
<field name="text_color" widget="color"/>
|
|
<field name="heading"/>
|
|
<field name="note"/>
|
|
</group>
|
|
<field name="prev_heading" invisible="1"/>
|
|
<field name="prev_notes" invisible="1"/>
|
|
</group>
|
|
<footer>
|
|
<button name="action_update_notes" class="btn-primary"
|
|
string="Update" type="object"/>
|
|
<button class="btn-secondary"
|
|
string="Cancel" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|