Just remove filters in javascript code
[burette/account_move_line_nofilters.git] / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 # Account Move Lines without filters module for OpenERP, Having no
5 # pre-selected period and journal when listing account move lines
6 # Copyright (C) 2015 L'Heureux Cyclage (<http://www.heureux-cyclage.org>)
7 # Ludovic CHEVALIER
8 #
9 # This file is a part of Account Move Lines without filters
10 #
11 # Account Move Lines without filters is free software: you can redistribute
12 # it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation, either version 3 of the License, or
15 # (at your option) any later version.
16 #
17 # Account Move Lines without filters is distributed in the hope that it will
18 # be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #
26 ##############################################################################
27
28 {
29 'name': 'Account move lines without filters',
30 'version': '0.1',
31 'category': 'Accounting & Finance',
32 'description': """
33 This module remove preselection of account move lines
34 ======================================================
35
36 In account module, when you list account move lines, they are filtered by
37 default:
38 * Current period;
39 * Misc journal.
40
41 With this module, account move lines can be selected, but, are not filtered by
42 default.
43 """,
44 'author': 'L\'Heureux Cyclage',
45 'website': 'http://www.heureux-cyclage.org',
46 'depends': [
47 'account',
48 ],
49 'init_xml': [
50 ],
51 'update_xml': [
52 ],
53 'js': [
54 'static/src/js/account_move_line_quickadd.js',
55 ],
56 'installable': True,
57 'auto_install': False,
58 'images': [],
59 }
60
61
62 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: