summaryrefslogtreecommitdiff
path: root/addons/account_check_printing/views/account_journal_views.xml
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/account_check_printing/views/account_journal_views.xml
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/account_check_printing/views/account_journal_views.xml')
-rw-r--r--addons/account_check_printing/views/account_journal_views.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/addons/account_check_printing/views/account_journal_views.xml b/addons/account_check_printing/views/account_journal_views.xml
new file mode 100644
index 00000000..db8961ff
--- /dev/null
+++ b/addons/account_check_printing/views/account_journal_views.xml
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="utf-8"?>
+<odoo>
+ <record id="account_journal_dashboard_kanban_view_inherited" model="ir.ui.view">
+ <field name="name">account.journal.dashboard.kanban.inherited</field>
+ <field name="model">account.journal</field>
+ <field name="inherit_id" ref="account.account_journal_dashboard_kanban_view" />
+ <field name="arch" type="xml">
+ <xpath expr="//t[@t-name='JournalBodyBankCash']//div[hasclass('o_kanban_primary_right')]" position="inside">
+ <div t-if="journal_type == 'bank' and dashboard.num_checks_to_print != 0">
+ <div class="row">
+ <div class="col-12">
+ <a type="object" name="action_checks_to_print">
+ <t t-esc="dashboard.num_checks_to_print"/>
+ <t t-if="dashboard.num_checks_to_print == 1">Check to print</t>
+ <t t-if="dashboard.num_checks_to_print != 1">Checks to print</t>
+ </a>
+ </div>
+ </div>
+ </div>
+ </xpath>
+ </field>
+ </record>
+
+ <record id="view_account_journal_form_inherited" model="ir.ui.view">
+ <field name="name">account.journal.form.inherited</field>
+ <field name="model">account.journal</field>
+ <field name="inherit_id" ref="account.view_account_journal_form" />
+ <field name="arch" type="xml">
+ <xpath expr="//page[@name='journal_entries']//group[@name='outgoing_payment']" position="after">
+ <group string="Check Printing"
+ attrs="{'invisible': ['|', ('type', '!=', 'bank'), ('check_printing_payment_method_selected', '=', False)]}">
+ <field name="check_printing_payment_method_selected" invisible="1"/>
+ <field name="check_sequence_id" invisible="1"/>
+ <field name="check_manual_sequencing"
+ />
+ <field name="check_next_number"
+ attrs="{'invisible': [('check_manual_sequencing', '=', False)]}"/>
+ </group>
+ </xpath>
+ </field>
+ </record>
+</odoo>