diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 17:14:58 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 17:14:58 +0700 |
| commit | 1ca3b3df3421961caec3b747a364071c80f5c7da (patch) | |
| tree | 6778a1f0f3f9b4c6e26d6d87ccde16e24da6c9d6 /vit_efaktur/wizard/auto.xml | |
| parent | b57188be371d36d96caac4b8d65a40745c0e972c (diff) | |
initial commit
Diffstat (limited to 'vit_efaktur/wizard/auto.xml')
| -rw-r--r-- | vit_efaktur/wizard/auto.xml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/vit_efaktur/wizard/auto.xml b/vit_efaktur/wizard/auto.xml new file mode 100644 index 0000000..6457326 --- /dev/null +++ b/vit_efaktur/wizard/auto.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data> + + <record id="act_open_vit_efaktur_auto_wizard" model="ir.actions.act_window"> + <field name="name">Auto Number eFaktur</field> + <field name="type">ir.actions.act_window</field> + <field name="res_model">vit.efaktur_auto</field> + <field name="view_mode">form</field> + <field name="target">new</field> + </record> + + <record id="view_vit_efaktur_auto_form" model="ir.ui.view"> + <field name="name">vit.efaktur_auto.form</field> + <field name="model">vit.efaktur_auto</field> + <field name="type">form</field> + <field name="priority" eval="8"/> + <field name="arch" type="xml"> + <form string="eFaktur"> + <group colspan="4"> + <field name="start" /> + <field name="end" /> + </group> + + <notebook colspan="4"> + <page string="Invoices"> + <field name="invoice_ids"/> + </page> + </notebook> + + <footer> + <button string="Find Invoices" name="find_invoices" type="object" class="btn-primary"/> + <button string="Fill Nomor Seri Faktur Pajak" name="confirm_button" type="object" class="btn-primary"/> + <button string="Cancel" class="btn-default" special="cancel" /> + </footer> + + </form> + </field> + </record> + + </data> +</odoo>
\ No newline at end of file |
