diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2023-12-29 13:44:00 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2023-12-29 13:44:00 +0700 |
| commit | 5446eefa619906ba785d1f867fd828cce0d0748c (patch) | |
| tree | aaaed54b3a366dd61c82f3ceece2f0650d4ab5cf /indoteknik_custom/views/purchase_order_multi_update.xml | |
| parent | 08724b92174a216a64b382012e83e45c16b326e7 (diff) | |
multi update paid status on po
Diffstat (limited to 'indoteknik_custom/views/purchase_order_multi_update.xml')
| -rw-r--r-- | indoteknik_custom/views/purchase_order_multi_update.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/indoteknik_custom/views/purchase_order_multi_update.xml b/indoteknik_custom/views/purchase_order_multi_update.xml new file mode 100644 index 00000000..7cfcd64d --- /dev/null +++ b/indoteknik_custom/views/purchase_order_multi_update.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <data> + <record id="view_purchase_order_multi_update_paid_form" model="ir.ui.view"> + <field name="name">Purchase Order Multi Update Paid Status</field> + <field name="model">purchase.order.multi_update</field> + <field name="arch" type="xml"> + <form> + <sheet> + <group> + <span>Apakah Anda Yakin Ingin Mengubah Paid Status?</span> + </group> + </sheet> + <footer> + <button name="save_multi_update_paid_status" string="Update Paid Status" type="object" default_focus="1" class="oe_highlight"/> + <button string="Cancel" class="btn btn-secondary" special="cancel" /> + </footer> + </form> + </field> + </record> + + <record id="action_purchase_order_multi_update" model="ir.actions.act_window"> + <field name="name">Purchase Order Multi Update Paid Status</field> + <field name="res_model">purchase.order.multi_update</field> + <field name="type">ir.actions.act_window</field> + <field name="view_mode">form</field> + <field name="view_id" ref="view_purchase_order_multi_update_paid_form"/> + <field name="target">new</field> + </record> + </data> +</odoo>
\ No newline at end of file |
