← Back to team overview

openerp-community-reviewer team mailing list archive

[Merge] lp:~camptocamp/account-financial-tools/invoice-view-fix-mdh into lp:account-financial-tools

 

Matthieu Dietrich @ camptocamp has proposed merging lp:~camptocamp/account-financial-tools/invoice-view-fix-mdh into lp:account-financial-tools.

Commit message:
[FIX] replaced "eval" to avoid XML issues in OpenERP

Requested reviews:
  Vincent Renaville@camptocamp (vrenaville-c2c)

For more details, see:
https://code.launchpad.net/~camptocamp/account-financial-tools/invoice-view-fix-mdh/+merge/196582

The "eval" part of the XML view is not compatible with a refresh of the module on OpenERP 7.0.
-- 
https://code.launchpad.net/~camptocamp/account-financial-tools/invoice-view-fix-mdh/+merge/196582
Your team OpenERP Community Reviewer/Maintainer is subscribed to branch lp:account-financial-tools.
=== modified file 'account_default_draft_move/invoice_view.xml'
--- account_default_draft_move/invoice_view.xml	2013-03-26 09:47:53 +0000
+++ account_default_draft_move/invoice_view.xml	2013-11-25 15:53:09 +0000
@@ -8,7 +8,7 @@
       <field name="type">form</field>
       <field name="arch" type="xml">
         <xpath expr="//button[@name='invoice_cancel']"  position="attributes">
-          <attribute name="groups" eval="account.group_account_invoice"/>
+          <attribute name="groups">account.group_account_invoice</attribute>
         </xpath>
       </field>
     </record>


Follow ups