diff options
| author | Mqdd <ahmadmiqdad27@gmail.com> | 2026-02-16 10:09:01 +0700 |
|---|---|---|
| committer | Mqdd <ahmadmiqdad27@gmail.com> | 2026-02-16 10:09:01 +0700 |
| commit | 7a9d6dab1578f7f2d2ea77b58c8fa4eeec4a037f (patch) | |
| tree | edb067ecc275873d9f1aaf0f9d04c5718fe76c8f /indoteknik_custom/views/update_depreciation_move_wizard_view.xml | |
| parent | d2a64b4e6023f0768d5c326c833fd5a9d8a11444 (diff) | |
| parent | c6c01d5b7bfa1a95e0e8191a71215f76960f6b88 (diff) | |
Merge branch 'odoo-backup' of bitbucket.org:altafixco/indoteknik-addons into cr_renca_find
Diffstat (limited to 'indoteknik_custom/views/update_depreciation_move_wizard_view.xml')
| -rw-r--r-- | indoteknik_custom/views/update_depreciation_move_wizard_view.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/indoteknik_custom/views/update_depreciation_move_wizard_view.xml b/indoteknik_custom/views/update_depreciation_move_wizard_view.xml new file mode 100644 index 00000000..ff128a71 --- /dev/null +++ b/indoteknik_custom/views/update_depreciation_move_wizard_view.xml @@ -0,0 +1,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> +
\ No newline at end of file |
