~brett-lehrer/+junk/account_check_writing_batch

« back to all changes in this revision

Viewing changes to wizard/account_payment_batch_view.xml

  • Committer: Brett Lehrer
  • Date: 2013-09-17 16:17:16 UTC
  • Revision ID: brett.lehrer@solarismed.com-20130917161716-zoyl8ak8i253kkvs
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<!--
 
3
##############################################################################
 
4
#
 
5
#    OpenERP, Open Source Management Solution
 
6
#    Copyright (C) 2013 Solaris, Inc. (<http://www.solarismed.com>)
 
7
#    Copyright (C) 2004-2013 OpenERP SA (<http://www.openerp.com>)
 
8
#
 
9
#    This program is free software: you can redistribute it and/or modify
 
10
#    it under the terms of the GNU General Public License as published by
 
11
#    the Free Software Foundation, either version 3 of the License, or
 
12
#    (at your option) any later version.
 
13
#
 
14
#    This program is distributed in the hope that it will be useful,
 
15
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
#    GNU General Public License for more details.
 
18
#
 
19
#    You should have received a copy of the GNU General Public License
 
20
#    along with this program.  If not, see <http://www.gnu.org/licenses/>
 
21
#
 
22
##############################################################################
 
23
-->
 
24
 
 
25
<openerp>
 
26
<data>
 
27
 
 
28
<record id="view_account_payment_batch" model="ir.ui.view">
 
29
        <field name="name">view_account_payment_batch</field>
 
30
        <field name="model">account.payment.batch</field>
 
31
        <field name="arch" type="xml">
 
32
                <form string="Batch Payments" version="7.0">
 
33
                        <group name="search_fields">
 
34
                                <field name="pay_date"/>
 
35
                                <field name="pay_by_date"/>
 
36
                        </group>
 
37
                        <footer>
 
38
                                <button string="Draft Checks" name="find_and_draft" type="object" class="oe_highlight"/>
 
39
                                or
 
40
                                <button special="cancel" string="Cancel" class="oe_link"/>
 
41
                        </footer>
 
42
                </form>
 
43
        </field>
 
44
</record>
 
45
 
 
46
<record id="action_batch_payments" model="ir.actions.act_window">
 
47
        <field name="name">Batch Payments</field>
 
48
        <field name="res_model">account.payment.batch</field>
 
49
        <field name="view_type">form</field>
 
50
        <field name="view_mode">form</field>
 
51
        <field name="target">new</field>
 
52
</record>
 
53
 
 
54
<menuitem action="action_batch_payments" icon="STOCK_JUSTIFY_FILL" sequence="13"
 
55
        id="menu_action_batch_payments"  parent="account.menu_finance_payables"/>
 
56
 
 
57
</data>
 
58
</openerp>
 
 
b'\\ No newline at end of file'