Rename module account_move_view_more_lines to account_move_usability

This commit is contained in:
Alexis de Lattre
2015-02-05 15:15:49 +01:00
parent 14e6acad4d
commit eba9a4bce5
4 changed files with 20 additions and 27 deletions

View File

@@ -0,0 +1 @@
# -*- encoding: utf-8 -*-

View File

@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# Account Move View More Lines module for Odoo
# Account Move Usability module for Odoo
# Copyright (C) 2015 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
#
@@ -22,16 +22,18 @@
{
'name': 'Account Move View More Lines',
'name': 'Account Move Usability',
'version': '0.1',
'category': 'Accounting & Finance',
'license': 'AGPL-3',
'summary': 'View more lines in account move views',
'summary': 'Small usability enhancements in account move and account move lines',
'description': """
Account Move View More Lines
============================
Account Move Usability
======================
Increase the default limit of 80 lines in account move views.
The usability enhancements include:
* Increase the default limit of 80 lines in account move and account move line view.
* Fast search on *Reconcile Ref* for account move line.
This module has been written by Alexis de Lattre from Akretion <alexis.delattre@akretion.com>.
""",

View File

@@ -18,5 +18,16 @@
<field name="limit">500</field>
</record>
<record id="view_account_move_line_filter" model="ir.ui.view">
<field name="name">account_move_usability.account_move_line_search</field>
<field name="model">account.move.line</field>
<field name="inherit_id" ref="account.view_account_move_line_filter"/>
<field name="arch" type="xml">
<field name="partner_id" position="after">
<field name="reconcile_ref" />
</field>
</field>
</record>
</data>
</openerp>

View File

@@ -1,21 +0,0 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# Account Move View More Lines module for Odoo
# Copyright (C) 2015 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################