2
0
account-financial-tools/account_netting/wizards/account_move_make_netting_view.xml
Sergio Teruel eaab9aac1f [MIG] account_netting: Migration to v13.0
[UPD] Update account_netting.pot

Update translation files

Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: account-financial-tools-13.0/account-financial-tools-13.0-account_netting
Translate-URL: https://translation.odoo-community.org/projects/account-financial-tools-13-0/account-financial-tools-13-0-account_netting/
2023-10-31 14:52:20 +01:00

37 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<act_window
name="Compensate"
res_model="account.move.make.netting"
binding_model="account.move.line"
view_mode="form"
target="new"
id="act_account_move_make_netting"
/>
<record id="view_account_move_make_netting_form" model="ir.ui.view">
<field name="name">Compensate entries</field>
<field name="model">account.move.make.netting</field>
<field name="arch" type="xml">
<form string="Compensate entries">
<p
>This operation will generate account entries that are counterpart of the receivable/payable accounts selected, and reconcile each other, letting this balance in the partner.</p>
<group>
<field name="balance" />
<field name="balance_type" />
<field name="journal_id" />
</group>
<footer>
<button
name="button_compensate"
string="Compensate"
type="object"
default_focus="1"
class="btn-primary"
/>
<button string="Cancel" class="btn-default" special="cancel" />
</footer>
</form>
</field>
</record>
</odoo>