blob: a29139ad772ceeea1c58e061c02706fc73af34a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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" options="{'no_create': True}"/>
<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>
|