diff --git a/account_move_line_payable_receivable_filter/README.rst b/account_move_line_payable_receivable_filter/README.rst new file mode 100644 index 000000000..36e855448 --- /dev/null +++ b/account_move_line_payable_receivable_filter/README.rst @@ -0,0 +1,46 @@ +Account Move Line Payable Receivable Filter +=========================================== + +This module was written to extend the functionality of search on journal items +to allow you to filter by payable and receivable account + +Installation +============ + +To install this module, you need to: + + * Click on install button + +Usage +===== + +To use this module, you need to: + + * go to Journal Items view and select new filter + +For further information, please visit: + + * https://www.odoo.com/forum/help-1 + + +Credits +======= + +Contributors: +------------- + +* Stéphane Bidoul (ACSONE) +* Adrien Peiffer (ACSONE) + +Maintainer: +----------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/account_move_line_payable_receivable_filter/__init__.py b/account_move_line_payable_receivable_filter/__init__.py new file mode 100644 index 000000000..40a96afc6 --- /dev/null +++ b/account_move_line_payable_receivable_filter/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/account_move_line_payable_receivable_filter/__openerp__.py b/account_move_line_payable_receivable_filter/__openerp__.py new file mode 100644 index 000000000..c11210afc --- /dev/null +++ b/account_move_line_payable_receivable_filter/__openerp__.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# This file is part of account_move_line_payable_receivable_filter, an +# Odoo module. +# +# Copyright (c) 2015 ACSONE SA/NV () +# +# account_move_line_payable_receivable_filter 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. +# +# account_move_line_payable_receivable_filter 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 account_move_line_payable_receivable_filter. +# If not, see . +# +############################################################################## +{ + 'name': "Account Move Line Payable Receivable Filter", + + 'summary': """ + Filter your Journal Items per payable and receivable account""", + 'author': "ACSONE SA/NV", + 'website': "http://acsone.eu", + 'category': 'Accounting & Finance', + 'version': '1.0', + 'license': 'AGPL-3', + 'depends': [ + 'account', + ], + 'data': [ + 'views/account_move_line_view.xml', + ], +} diff --git a/account_move_line_payable_receivable_filter/i18n/fr.po b/account_move_line_payable_receivable_filter/i18n/fr.po new file mode 100644 index 000000000..35819154b --- /dev/null +++ b/account_move_line_payable_receivable_filter/i18n/fr.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_line_payable_receivable_filter +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-02-04 08:52+0000\n" +"PO-Revision-Date: 2015-02-04 08:52+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_move_line_payable_receivable_filter +#: view:account.move.line:account_move_line_payable_receivable_filter.view_account_move_line_filter_inherit +msgid "Payable Account" +msgstr "Compte fournisseur" + +#. module: account_move_line_payable_receivable_filter +#: view:account.move.line:account_move_line_payable_receivable_filter.view_account_move_line_filter_inherit +msgid "Receivable Account" +msgstr "Compte client" + diff --git a/account_move_line_payable_receivable_filter/i18n/fr_BE.po b/account_move_line_payable_receivable_filter/i18n/fr_BE.po new file mode 100644 index 000000000..35819154b --- /dev/null +++ b/account_move_line_payable_receivable_filter/i18n/fr_BE.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_line_payable_receivable_filter +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-02-04 08:52+0000\n" +"PO-Revision-Date: 2015-02-04 08:52+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_move_line_payable_receivable_filter +#: view:account.move.line:account_move_line_payable_receivable_filter.view_account_move_line_filter_inherit +msgid "Payable Account" +msgstr "Compte fournisseur" + +#. module: account_move_line_payable_receivable_filter +#: view:account.move.line:account_move_line_payable_receivable_filter.view_account_move_line_filter_inherit +msgid "Receivable Account" +msgstr "Compte client" + diff --git a/account_move_line_payable_receivable_filter/views/account_move_line_view.xml b/account_move_line_payable_receivable_filter/views/account_move_line_view.xml new file mode 100644 index 000000000..943c3d4bb --- /dev/null +++ b/account_move_line_payable_receivable_filter/views/account_move_line_view.xml @@ -0,0 +1,16 @@ + + + + + Journal Items (account_move_line_payable_receivable_filter) + account.move.line + + + + + + + + + +