You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
861 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Credit Payment form view -->
<record id="credit_payment_view_form" model="ir.ui.view">
<field name="name">credit.payment.form.view</field>
<field name="model">credit.payment</field>
<field name="arch" type="xml">
<form string="Credit Payment">
<group>
<group>
<field name="payment_journal"/>
<field name="credit_amount"/>
</group>
</group>
<footer>
<button string="Submit" name="action_submit" type="object" class="oe_highlight"/>
<button string="Cancel" class="btn btn-secondary" special="cancel"/>
</footer>
</form>
</field>
</record>
</odoo>