~pedro.baeza/account-financial-tools/7.0-account_invoice_currency-fix

« back to all changes in this revision

Viewing changes to account_move_validation_improvement/wizard/account_validate_move_view.xml

  • Committer: alexandre.fayolle at camptocamp
  • Author(s): matthieu.dietrich at camptocamp
  • Date: 2014-02-06 11:02:04 UTC
  • mfrom: (127.4.3 account-financial-tools)
  • Revision ID: alexandre.fayolle@camptocamp.com-20140206110204-jvxx8hxv7kp2jtgj
[MRG] account draft move improvements

A few changes for draft moves:

- in account_default_draft_move: change an eval field in the invoice view
  (issues when you reinstalled the module), and removed cancel/post buttons in
  the move's form view.

- new module, account_move_validation_improvement, re-defining the "Post
  Journal Entries" wizard from account, to use multiple journals/periods.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<openerp>
 
3
    <data>
 
4
 
 
5
        <!--Account Moves-->
 
6
        <record id="account.validate_account_move_view" model="ir.ui.view">
 
7
            <field name="name">Post Journal Entries</field>
 
8
            <field name="model">validate.account.move</field>
 
9
            <field name="arch" type="xml">
 
10
                <form string="Post Journal Entries" version="7.0">
 
11
                    <group>
 
12
                        <field name="journal_ids"/>
 
13
                        <field name="period_ids"/>
 
14
                    </group>
 
15
                    <footer>
 
16
                        <button string="Approve" name="validate_move" type="object" class="oe_highlight"/>
 
17
                        or
 
18
                        <button string="Cancel" class="oe_link" special="cancel"/>
 
19
                    </footer>
 
20
                </form>
 
21
            </field>
 
22
        </record>
 
23
 
 
24
    </data>
 
25
</openerp>