Files
bank-payment/account_payment_order/wizard/account_payment_update_views.xml
Luc De Meyer d05aba74c2 [IMP] update payment reference on open payment order
This commits adds the possibility to update the payment reference on a
payment transaction before generating XML file.
2024-04-20 09:33:04 +02:00

31 lines
979 B
XML

<odoo>
<record id="account_payment_update_view_form" model="ir.ui.view">
<field name="name">Update Payment Communication</field>
<field name="model">account.payment.update</field>
<field name="arch" type="xml">
<form>
<group>
<field name="payment_reference" />
</group>
<footer>
<button
string="Update Payment Reference"
name="update_payment_reference"
type="object"
class="btn-primary"
data-hotkey="q"
/>
<button
string="Cancel"
class="btn-secondary"
special="cancel"
data-hotkey="z"
/>
</footer>
</form>
</field>
</record>
</odoo>