mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
31 lines
985 B
XML
31 lines
985 B
XML
<flectra>
|
|
|
|
<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>
|
|
|
|
</flectra>
|