diff options
Diffstat (limited to 'addons/account_check_printing/wizard/print_prenumbered_checks_views.xml')
| -rw-r--r-- | addons/account_check_printing/wizard/print_prenumbered_checks_views.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/addons/account_check_printing/wizard/print_prenumbered_checks_views.xml b/addons/account_check_printing/wizard/print_prenumbered_checks_views.xml new file mode 100644 index 00000000..b593440c --- /dev/null +++ b/addons/account_check_printing/wizard/print_prenumbered_checks_views.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" ?> +<odoo> + + <record id="print_pre_numbered_checks_view" model="ir.ui.view"> + <field name="name">Print Pre-numbered Checks</field> + <field name="model">print.prenumbered.checks</field> + <field name="arch" type="xml"> + <form string="Print Pre-numbered Checks"> + <p>Please enter the number of the first pre-printed check that you are about to print on.</p> + <p>This will allow to save on payments the number of the corresponding check.</p> + <group> + <field name="next_check_number"/> + </group> + <footer> + <button name="print_checks" string="Print" type="object" class="oe_highlight"/> + <button string="Cancel" class="btn btn-secondary" special="cancel"/> + </footer> + </form> + </field> + </record> + +</odoo> |
