forked from Mapan/odoo17e
24 lines
1.1 KiB
XML
24 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="view_account_payment_form" model="ir.ui.view">
|
|
<field name="name">account.payment.form.inherited</field>
|
|
<field name="model">account.payment</field>
|
|
<field name="inherit_id" ref="account.view_account_payment_form" />
|
|
<field name="arch" type="xml">
|
|
<group position="inside">
|
|
<group name="group4" colspan="2" invisible="country_code != 'AR'">
|
|
<field name="l10n_ar_withholding_ids" nolabel="1" colspan="2"
|
|
readonly="True" invisible="is_internal_transfer">
|
|
<tree>
|
|
<field name="move_name" column_invisible="True"/>
|
|
<field name="tax_line_id" string="Tax"/>
|
|
<field name="name" string="Withholding Number" required="1"/>
|
|
<field name="amount_currency" readonly="0" required="1" string="Amount" sum="Total"/>
|
|
</tree>
|
|
</field>
|
|
</group>
|
|
</group>
|
|
</field>
|
|
</record>
|
|
</odoo>
|