diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2023-07-25 08:53:19 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2023-07-25 08:53:19 +0000 |
| commit | 5ead2c84fb9b56d51520f77af8227160b56aeaca (patch) | |
| tree | 4c0e32918e1ddf4e7a3e9116d3abb186ad417c7f /indoteknik_custom/views/account_move_multi_update.xml | |
| parent | c344ccd81208b5b466ae047dbb9e084dd5d0f358 (diff) | |
| parent | e933a05e9b03e489b581f27d1aa304774aafc320 (diff) | |
Merged in production (pull request #68)
Production
Diffstat (limited to 'indoteknik_custom/views/account_move_multi_update.xml')
| -rw-r--r-- | indoteknik_custom/views/account_move_multi_update.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/indoteknik_custom/views/account_move_multi_update.xml b/indoteknik_custom/views/account_move_multi_update.xml new file mode 100644 index 00000000..dbd90340 --- /dev/null +++ b/indoteknik_custom/views/account_move_multi_update.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <data> + <record id="view_account_move_multi_update_form" model="ir.ui.view"> + <field name="name">Account Move Multi Update</field> + <field name="model">account.move.multi_update</field> + <field name="arch" type="xml"> + <form> + <sheet> + <group> + <group> + <field name="payment_schedule" /> + </group> + </group> + </sheet> + <footer> + <button name="save_multi_update" string="Multi Update" type="object" default_focus="1" class="oe_highlight"/> + <button string="Cancel" class="btn btn-secondary" special="cancel" /> + </footer> + </form> + </field> + </record> + + <record id="action_account_move_multi_update" model="ir.actions.act_window"> + <field name="name">Account Move Multi Update</field> + <field name="res_model">account.move.multi_update</field> + <field name="type">ir.actions.act_window</field> + <field name="view_mode">form</field> + <field name="view_id" ref="view_account_move_multi_update_form"/> + <field name="target">new</field> + </record> + </data> +</odoo>
\ No newline at end of file |
