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.
39 lines
1.5 KiB
39 lines
1.5 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Sticky notes creation wizard-->
|
|
<record id="sticky_notes_action" model="ir.actions.act_window">
|
|
<field name="name">Sticky Notes</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">sticky.notes</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
<record id="sticky_notes_view_form" model="ir.ui.view">
|
|
<field name="name">sticky.notes.create</field>
|
|
<field name="model">sticky.notes</field>
|
|
<field name="arch" type="xml">
|
|
<form string="wizard">
|
|
<group>
|
|
<group>
|
|
<field name="heading"/>
|
|
<field name="color" widget="color"/>
|
|
<field name="text_color" widget="color"/>
|
|
|
|
</group>
|
|
<notebook>
|
|
<page string="Note">
|
|
<field name="note"/>
|
|
</page>
|
|
</notebook>
|
|
</group>
|
|
<footer>
|
|
<button name="action_stick_notes"
|
|
class="btn-primary create_note"
|
|
string="Stick" type="object"/>
|
|
<button class="btn-secondary"
|
|
string="Cancel" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|