forked from Mapan/odoo17e
23 lines
1.1 KiB
XML
23 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="account_missing_transaction_wizard_view_form" model="ir.ui.view">
|
|
<field name="name">account.missing.transaction.wizard.form</field>
|
|
<field name="model">account.missing.transaction.wizard</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Fetch Missing Bank Statements Wizard" create="false">
|
|
<p>
|
|
Choose a date and a journal from which you want to fetch transactions
|
|
</p>
|
|
<group class="oe_form_field">
|
|
<field name="journal_id" required="1" options="{'no_quick_create':True,'no_create_edit':True}"/>
|
|
<field name="date" required="1"/>
|
|
</group>
|
|
<footer>
|
|
<button string="Fetch" data-hotkey="q" name="action_fetch_missing_transaction" type="object" class="btn-primary" />
|
|
<button string="Cancel" class="btn-secondary" special="cancel" data-hotkey="z" />
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|