summaryrefslogtreecommitdiff
path: root/indoteknik_custom/views/invoice_reklas.xml
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2023-01-12 14:20:13 +0700
committerstephanchrst <stephanchrst@gmail.com>2023-01-12 14:20:13 +0700
commiteca50fa062424b6a7aa9b3d00649dd3db29b3ab6 (patch)
tree9ce1da22bcdfb8c85c4b11a7b8f27eac4a3cf82c /indoteknik_custom/views/invoice_reklas.xml
parente74ac27eb94a05c569f9789b1f875f7c85b6dc02 (diff)
parent0f8fbe56e89ec285c6fbcdd2bed5a67f62bcfe59 (diff)
Merge branch 'release' into staging
Diffstat (limited to 'indoteknik_custom/views/invoice_reklas.xml')
-rw-r--r--indoteknik_custom/views/invoice_reklas.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/indoteknik_custom/views/invoice_reklas.xml b/indoteknik_custom/views/invoice_reklas.xml
new file mode 100644
index 00000000..e807dca5
--- /dev/null
+++ b/indoteknik_custom/views/invoice_reklas.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<odoo>
+ <record id="view_invoice_reklas" model="ir.ui.view">
+ <field name="name">Invoice Reklas</field>
+ <field name="model">invoice.reklas</field>
+ <field name="arch" type="xml">
+ <form string="Invoice Sales Order">
+ <p class="oe_grey">
+ Reklas Uang Muka Penjualan / Pembelian akan terbuat Draft, mohon dicek kembali
+ </p>
+ <group>
+ <field name="reklas_type"/>
+ <field name="reklas_id"/>
+ <field name="pay_amt"/>
+ </group>
+ <footer>
+ <button name="create_reklas" id="create_reklas" string="Create Reklas" type="object" required="1"/>
+ </footer>
+ </form>
+ </field>
+ </record>
+
+ <record id="action_view_invoice_reklas" model="ir.actions.act_window">
+ <field name="name">Create Reklas</field>
+ <field name="type">ir.actions.act_window</field>
+ <field name="res_model">invoice.reklas</field>
+ <field name="view_mode">form</field>
+ <field name="target">new</field>
+ </record>
+
+</odoo>