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.
32 lines
1.3 KiB
32 lines
1.3 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- This is used to delete the sticky notes-->
|
|
<record id="sticky_notes_delete_action" model="ir.actions.act_window">
|
|
<field name="name">Sticky Notes Deletion</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">sticky.notes.delete</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
<record id="sticky_notes_delete_view_form" model="ir.ui.view">
|
|
<field name="name">sticky.notes.delete.view.form</field>
|
|
<field name="model">sticky.notes.delete</field>
|
|
<field name="arch" type="xml">
|
|
<form string="wizard">
|
|
<sheet>
|
|
<div class="oe_title">
|
|
Do you want to delete the note?
|
|
</div>
|
|
</sheet>
|
|
<footer>
|
|
<button name="action_delete_notes"
|
|
class="btn-primary create_note"
|
|
string="Delete" type="object"/>
|
|
<button class="btn-secondary"
|
|
string="Cancel" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|
|
|