blob: ff128a71cc3d92688f54f0655c75925752113e92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="view_update_depreciation_move_wizard_form" model="ir.ui.view">
<field name="name">update.depreciation.move.wizard.form</field>
<field name="model">update.depreciation.move.wizard</field>
<field name="arch" type="xml">
<form string="Update Move Check">
<group>
<field name="target_date"/>
</group>
<footer>
<button string="Update" type="object" name="action_update_move_check" class="btn-primary"/>
<button string="Batal" special="cancel" class="btn-secondary"/>
</footer>
</form>
</field>
</record>
<record id="update_depreciation_move_wizard_action" model="ir.actions.act_window">
<field name="name">Update Depreciation Asset</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">update.depreciation.move.wizard</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
<menuitem
id="menu_update_depreciation_move_wizard"
name="Update Depreciation Asset"
parent="account.menu_finance_entries_management"
sequence="4"
action="update_depreciation_move_wizard_action"
/>
</odoo>
|