Browse Source

[FIX] no longer display the last reconciliation date in the account move lines, no a lot of space and this is a useless data for the user

pull/79/head
Guewen Baconnier @ Camptocamp 12 years ago
parent
commit
d10ea10773
  1. 1
      account_financial_report_webkit/__openerp__.py
  2. 23
      account_financial_report_webkit/account_move_line_view.xml

1
account_financial_report_webkit/__openerp__.py

@ -107,7 +107,6 @@ wkhtmltopdf. The texts are defined inside the report classes.
'init_xml': [],
'demo_xml' : [],
'update_xml': ['account_view.xml',
'account_move_line_view.xml',
'data/financial_webkit_header.xml',
'report/report.xml',
'wizard/wizard.xml',

23
account_financial_report_webkit/account_move_line_view.xml

@ -1,23 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record model="ir.ui.view" id="last_rec_date_form">
<!-- must be unique in this module. -->
<field name="name">last_rec_date_form</field>
<field name="model">account.move.line</field>
<!--parent python entity -->
<field name="inherit_id" ref="account.view_move_line_form"/>
<!-- modulename.view -->
<field name="type">form</field>
<field name="arch" type="xml">
<separator string="Internal Note" colspan="4" position="before">
<separator string="Misc."/>
<newline/>
<group>
<field name="last_rec_date" readonly="1"/>
</group>
</separator>
</field>
</record>
</data>
</openerp>
Loading…
Cancel
Save