diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2024-05-30 16:09:35 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2024-05-30 16:09:35 +0700 |
| commit | 65fe5e9cb0865293eb6d0626d2c99f35d6862b3c (patch) | |
| tree | 9b101f91df2be5e08a489991579b9edd691cbdfd /indoteknik_custom/views/account_move_multi_update_bills.xml | |
| parent | c0bc0039928cdb7e2eef8e39dc5daad6e5ecfc28 (diff) | |
add invoice_date_due and terima faktur on bills
Diffstat (limited to 'indoteknik_custom/views/account_move_multi_update_bills.xml')
| -rw-r--r-- | indoteknik_custom/views/account_move_multi_update_bills.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/indoteknik_custom/views/account_move_multi_update_bills.xml b/indoteknik_custom/views/account_move_multi_update_bills.xml new file mode 100644 index 00000000..73f92d16 --- /dev/null +++ b/indoteknik_custom/views/account_move_multi_update_bills.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <data> + <record id="view_account_move_multi_update_form_bills" model="ir.ui.view"> + <field name="name">Account Move Multi Update Bills</field> + <field name="model">account.move.multi_update_bills</field> + <field name="arch" type="xml"> + <form> + <sheet> + <group> + <group> + <field name="date_terima_tukar_faktur" /> + </group> + </group> + </sheet> + <footer> + <button name="save_multi_update_bills" string="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_bills" model="ir.actions.act_window"> + <field name="name">Account Move Multi Update Bills</field> + <field name="res_model">account.move.multi_update_bills</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_bills"/> + <field name="target">new</field> + </record> + </data> +</odoo>
\ No newline at end of file |
