From b0d4e67f87c67bbb6e63321d4111d1fe04818f40 Mon Sep 17 00:00:00 2001 From: AngelMoya-Domatix Date: Thu, 1 Oct 2015 10:02:13 +0200 Subject: [PATCH] ADD contract_invoices_module module --- contract_show_invoice/README.rst | 58 +++++++++++++++++++ contract_show_invoice/__init__.py | 2 + contract_show_invoice/__openerp__.py | 38 ++++++++++++ .../i18n/contract_invoices_button.pot | 38 ++++++++++++ contract_show_invoice/i18n/es.po | 38 ++++++++++++ contract_show_invoice/models/__init__.py | 2 + contract_show_invoice/models/invoice.py | 19 ++++++ .../test/contract_show_invoice_test.yml | 35 +++++++++++ contract_show_invoice/views/contract_view.xml | 31 ++++++++++ 9 files changed, 261 insertions(+) create mode 100644 contract_show_invoice/README.rst create mode 100644 contract_show_invoice/__init__.py create mode 100644 contract_show_invoice/__openerp__.py create mode 100644 contract_show_invoice/i18n/contract_invoices_button.pot create mode 100644 contract_show_invoice/i18n/es.po create mode 100644 contract_show_invoice/models/__init__.py create mode 100644 contract_show_invoice/models/invoice.py create mode 100644 contract_show_invoice/test/contract_show_invoice_test.yml create mode 100644 contract_show_invoice/views/contract_view.xml diff --git a/contract_show_invoice/README.rst b/contract_show_invoice/README.rst new file mode 100644 index 00000000..9f1fc92e --- /dev/null +++ b/contract_show_invoice/README.rst @@ -0,0 +1,58 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +===================== +Contract Show Invoice +===================== + +This module add a button in contracts to show their invoices. +All invoices including lines for the Contract and other related invoices will be shown. + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/110/8.0 + +For further information, please visit: + +* https://www.odoo.com/forum/help-1 + +Known issues / Roadmap +====================== + +* Add field with the total amount invoiced to the invoices button. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback +`here `_. + +Credits +======= + +Contributors +------------ + +* Ángel Moya + + +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/contract_show_invoice/__init__.py b/contract_show_invoice/__init__.py new file mode 100644 index 00000000..a0fdc10f --- /dev/null +++ b/contract_show_invoice/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import models diff --git a/contract_show_invoice/__openerp__.py b/contract_show_invoice/__openerp__.py new file mode 100644 index 00000000..f7f773c4 --- /dev/null +++ b/contract_show_invoice/__openerp__.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- + +############################################################################### +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2015 Domatix (). +# +# 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 . +# +############################################################################### +{ + 'name': 'Contract Show Invoice', + 'summary': 'Button in contracts to show their invoices', + 'version': '8.0.1.0.0', + 'author': 'Domatix, Odoo Community Association (OCA)', + 'website': 'http://www.domatix.com', + 'depends': ['account_analytic_analysis'], + 'category': 'Sales Management', + 'data': [ + 'views/contract_view.xml', + ], + 'test': [ + 'test/contract_show_invoice_test.yml' + ], + 'installable': True, + 'auto_install': False, +} diff --git a/contract_show_invoice/i18n/contract_invoices_button.pot b/contract_show_invoice/i18n/contract_invoices_button.pot new file mode 100644 index 00000000..6341c066 --- /dev/null +++ b/contract_show_invoice/i18n/contract_invoices_button.pot @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * contract_show_invoice +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-10-01 07:58+0000\n" +"PO-Revision-Date: 2015-10-01 07:58+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: contract_show_invoice +#: field:account.invoice,analytic_account_ids:0 +msgid "Contracts" +msgstr "" + +#. module: contract_show_invoice +#: model:ir.model,name:contract_show_invoice.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: contract_show_invoice +#: view:account.analytic.account:contract_show_invoice.account_analytic_account_button_invoice +#: model:ir.actions.act_window,name:contract_show_invoice.act_analytic_invoices +msgid "Invoices" +msgstr "" + +#. module: contract_show_invoice +#: view:account.analytic.account:contract_show_invoice.account_analytic_account_button_invoice +msgid "Invoices related with this contract" +msgstr "" + diff --git a/contract_show_invoice/i18n/es.po b/contract_show_invoice/i18n/es.po new file mode 100644 index 00000000..6addc6b8 --- /dev/null +++ b/contract_show_invoice/i18n/es.po @@ -0,0 +1,38 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * contract_show_invoice +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-10-01 07:59+0000\n" +"PO-Revision-Date: 2015-10-01 10:00+0100\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: \n" +"X-Generator: Poedit 1.7.5\n" + +#. module: contract_show_invoice +#: field:account.invoice,analytic_account_ids:0 +msgid "Contracts" +msgstr "Contratos" + +#. module: contract_show_invoice +#: model:ir.model,name:contract_show_invoice.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: contract_show_invoice +#: view:account.analytic.account:contract_show_invoice.account_analytic_account_button_invoice +#: model:ir.actions.act_window,name:contract_show_invoice.act_analytic_invoices +msgid "Invoices" +msgstr "Facturas" + +#. module: contract_show_invoice +#: view:account.analytic.account:contract_show_invoice.account_analytic_account_button_invoice +msgid "Invoices related with this contract" +msgstr "Facturas relacionadas con este contrato" diff --git a/contract_show_invoice/models/__init__.py b/contract_show_invoice/models/__init__.py new file mode 100644 index 00000000..78d96a03 --- /dev/null +++ b/contract_show_invoice/models/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import invoice diff --git a/contract_show_invoice/models/invoice.py b/contract_show_invoice/models/invoice.py new file mode 100644 index 00000000..e3d3efb0 --- /dev/null +++ b/contract_show_invoice/models/invoice.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- + +from openerp import models, fields, api + + +class AccountInvoice(models.Model): + _inherit = 'account.invoice' + + @api.one + @api.depends('invoice_line.account_analytic_id') + def _analytic_account_ids(self): + self.analytic_account_ids = \ + self.mapped('invoice_line.account_analytic_id') + + analytic_account_ids = fields.Many2many( + comodel_name='account.analytic.account', + compute='_analytic_account_ids', + store=True, + string='Contracts') diff --git a/contract_show_invoice/test/contract_show_invoice_test.yml b/contract_show_invoice/test/contract_show_invoice_test.yml new file mode 100644 index 00000000..b0174271 --- /dev/null +++ b/contract_show_invoice/test/contract_show_invoice_test.yml @@ -0,0 +1,35 @@ +- + In order to test Contract Invoices Button I create a new Contract +- + !record {model: account.analytic.account, id: contract_main}: + name: Maintenance of Servers + company_id: base.main_company + partner_id: base.main_partner + type: contract + recurring_invoices : 1 + recurring_interval : 1 + recurring_invoice_line_ids: + - quantity: 2.0 + price_unit: 100.0 + name: Database Administration 25 + product_id: product.product_product_consultant + uom_id: product.product_uom_hour +- + I test the invoices button +- + !python {model: account.invoice}: | + contract_id = ref('contract_show_invoice.contract_main') + invoices = self.search(cr, uid,[('analytic_account_ids','=',contract_id)],context=context) + assert len(invoices) == 0, "No invoices related this contract, but get (%s)"%(invoices,) +- + I generate all invoices from contracts having recurring invoicing +- + !python {model: account.analytic.account}: | + self.recurring_create_invoice(cr, uid, []) +- + I test the invoices button +- + !python {model: account.invoice}: | + contract_id = ref('contract_show_invoice.contract_main') + invoices = self.search(cr, uid,[('analytic_account_ids','=',contract_id)],context=context) + assert len(invoices) == 1, "Must have one invoice related this contract, but get (%s)"%(invoices,) \ No newline at end of file diff --git a/contract_show_invoice/views/contract_view.xml b/contract_show_invoice/views/contract_view.xml new file mode 100644 index 00000000..e89fa445 --- /dev/null +++ b/contract_show_invoice/views/contract_view.xml @@ -0,0 +1,31 @@ + + + + + + {'search_default_analytic_account_ids': + [active_id], 'default_analytic_account_ids': active_id} + Invoices + account.invoice + [('analytic_account_ids','=',active_id)] + + + + + + account.analytic.account.button.invoice + + account.analytic.account + + + + + + + + + + \ No newline at end of file