Browse Source
Merge pull request #16 from Domatix/add_contract_show_recurring_invoice
Merge pull request #16 from Domatix/add_contract_show_recurring_invoice
ADD contract_show_recurring_invoice modulepull/19/head
Pedro M. Baeza
9 years ago
10 changed files with 276 additions and 0 deletions
-
57contract_show_recurring_invoice/README.rst
-
10contract_show_recurring_invoice/__init__.py
-
40contract_show_recurring_invoice/__openerp__.py
-
37contract_show_recurring_invoice/i18n/contract_show_recurring_invoice.pot
-
37contract_show_recurring_invoice/i18n/es.po
-
3contract_show_recurring_invoice/models/__init__.py
-
14contract_show_recurring_invoice/models/contract.py
-
11contract_show_recurring_invoice/models/invoice.py
-
35contract_show_recurring_invoice/test/contract_show_recurring_invoice_test.yml
-
32contract_show_recurring_invoice/views/contract_view.xml
@ -0,0 +1,57 @@ |
|||||
|
.. 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 Recurring Invoice |
||||
|
=============================== |
||||
|
|
||||
|
This module adds a button in contracts to show their recurring invoices. |
||||
|
|
||||
|
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 smart button with field that computes the total amount invoiced. |
||||
|
|
||||
|
Bug Tracker |
||||
|
=========== |
||||
|
|
||||
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/contract/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 <https://github.com/OCA/contract/issues/new?body=module:%20contract_show_recurring_invoice%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. |
||||
|
|
||||
|
Credits |
||||
|
======= |
||||
|
|
||||
|
Contributors |
||||
|
------------ |
||||
|
|
||||
|
* Ángel Moya <angel.moya@domatix.com> |
||||
|
|
||||
|
|
||||
|
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. |
@ -0,0 +1,10 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
from . import models |
||||
|
|
||||
|
|
||||
|
def copy_recurring_invoice(cr, registry): |
||||
|
"""Copy recurring invoice on contract.""" |
||||
|
cr.execute("UPDATE account_invoice " |
||||
|
"SET contract_id=aaa.id " |
||||
|
"FROM account_analytic_account aaa " |
||||
|
"WHERE aaa.code = account_invoice.origin") |
@ -0,0 +1,40 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
|
||||
|
############################################################################### |
||||
|
# |
||||
|
# OpenERP, Open Source Management Solution |
||||
|
# Copyright (C) 2015 Domatix (<www.domatix.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/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
{ |
||||
|
'name': 'Contract Show Recurring Invoice', |
||||
|
'summary': 'Button in contracts to show their recurring 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', |
||||
|
'license': 'AGPL-3', |
||||
|
'data': [ |
||||
|
'views/contract_view.xml', |
||||
|
], |
||||
|
'test': [ |
||||
|
'test/contract_show_recurring_invoice_test.yml' |
||||
|
], |
||||
|
"post_init_hook": "copy_recurring_invoice", |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
} |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * contract_show_recurring_invoice |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 8.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2015-10-10 16:58+0000\n" |
||||
|
"PO-Revision-Date: 2015-10-10 16: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_recurring_invoice |
||||
|
#: model:ir.model,name:contract_show_recurring_invoice.model_account_analytic_account |
||||
|
msgid "Analytic Account" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: contract_show_recurring_invoice |
||||
|
#: model:ir.model,name:contract_show_recurring_invoice.model_account_invoice |
||||
|
msgid "Invoice" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: contract_show_recurring_invoice |
||||
|
#: model:ir.actions.act_window,name:contract_show_recurring_invoice.act_recurring_invoices |
||||
|
msgid "Invoices" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: contract_show_recurring_invoice |
||||
|
#: view:account.analytic.account:contract_show_recurring_invoice.account_analytic_account_button_recurring_invoice |
||||
|
msgid "⇒ show invoices" |
||||
|
msgstr "" |
||||
|
|
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * contract_show_recurring_invoice |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 8.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2015-10-10 16:58+0000\n" |
||||
|
"PO-Revision-Date: 2015-10-10 19:01+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_recurring_invoice |
||||
|
#: model:ir.model,name:contract_show_recurring_invoice.model_account_analytic_account |
||||
|
msgid "Analytic Account" |
||||
|
msgstr "Cuenta analítica" |
||||
|
|
||||
|
#. module: contract_show_recurring_invoice |
||||
|
#: model:ir.model,name:contract_show_recurring_invoice.model_account_invoice |
||||
|
msgid "Invoice" |
||||
|
msgstr "Factura" |
||||
|
|
||||
|
#. module: contract_show_recurring_invoice |
||||
|
#: model:ir.actions.act_window,name:contract_show_recurring_invoice.act_recurring_invoices |
||||
|
msgid "Invoices" |
||||
|
msgstr "Facturas" |
||||
|
|
||||
|
#. module: contract_show_recurring_invoice |
||||
|
#: view:account.analytic.account:contract_show_recurring_invoice.account_analytic_account_button_recurring_invoice |
||||
|
msgid "⇒ show invoices" |
||||
|
msgstr "⇒ ver facturas" |
@ -0,0 +1,3 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
from . import contract |
||||
|
from . import invoice |
@ -0,0 +1,14 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
from openerp import models, api |
||||
|
|
||||
|
|
||||
|
class AccountAnalyticAccount(models.Model): |
||||
|
_inherit = 'account.analytic.account' |
||||
|
|
||||
|
@api.model |
||||
|
def _prepare_invoice_data(self, contract): |
||||
|
invoice_vals = super(AccountAnalyticAccount, self).\ |
||||
|
_prepare_invoice_data( |
||||
|
contract) |
||||
|
invoice_vals['contract_id'] = contract.id |
||||
|
return invoice_vals |
@ -0,0 +1,11 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
|
||||
|
from openerp import models, fields |
||||
|
|
||||
|
|
||||
|
class AccountInvoice(models.Model): |
||||
|
_inherit = 'account.invoice' |
||||
|
|
||||
|
contract_id = fields.Many2one( |
||||
|
'account.analytic.account', |
||||
|
string='Contract') |
@ -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_recurring_invoice.contract_main') |
||||
|
invoices = self.search(cr, uid,[('contract_id','=',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_recurring_invoice.contract_main') |
||||
|
invoices = self.search(cr, uid,[('contract_id','=',contract_id)],context=context) |
||||
|
assert len(invoices) == 1, "Must have one invoice related this contract, but get (%s)"%(invoices,) |
@ -0,0 +1,32 @@ |
|||||
|
<?xml version="1.0"?> |
||||
|
<openerp> |
||||
|
<data> |
||||
|
|
||||
|
<record id="act_recurring_invoices" model="ir.actions.act_window"> |
||||
|
<field name="context">{'search_default_contract_id': |
||||
|
[active_id], |
||||
|
'default_contract_id': active_id} |
||||
|
</field> |
||||
|
<field name="name">Invoices</field> |
||||
|
<field name="res_model">account.invoice</field> |
||||
|
<field name="view_id" ref="account.invoice_tree" /> |
||||
|
<field name="search_view_id" ref="account.view_account_invoice_filter" /> |
||||
|
</record> |
||||
|
|
||||
|
<record id="account_analytic_account_button_recurring_invoice" |
||||
|
model="ir.ui.view"> |
||||
|
<field name="name">account.analytic.account.button.invoice |
||||
|
</field> |
||||
|
<field name="model">account.analytic.account</field> |
||||
|
<field name="inherit_id" ref="account_analytic_analysis.account_analytic_account_form_form" /> |
||||
|
<field name="arch" type="xml"> |
||||
|
<button name="recurring_create_invoice" position="after"> |
||||
|
<button attrs="{'invisible': [('recurring_invoices','!=',True)]}" |
||||
|
name="%(contract_show_recurring_invoice.act_recurring_invoices)d" |
||||
|
string="⇒ show invoices" class="oe_link" type="action"/> |
||||
|
</button> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue