Skip to content

Commit

Permalink
Merge a9ee37f into b6f7568
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiocorato committed May 26, 2019
2 parents b6f7568 + a9ee37f commit 5e80224
Show file tree
Hide file tree
Showing 16 changed files with 665 additions and 0 deletions.
78 changes: 78 additions & 0 deletions contract_show_sale/README.rst
@@ -0,0 +1,78 @@
==================
Contract Show Sale
==================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcontract-lightgray.png?logo=github
:target: https://github.com/OCA/contract/tree/10.0/contract_show_sale
:alt: OCA/contract
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/contract-10-0/contract-10-0-contract_show_sale
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/110/10.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

This module add button in contract to view sales

**Table of contents**

.. contents::
:local:

Configuration
=============

Nothing to do

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 <https://github.com/OCA/contract/issues/new?body=module:%20contract_show_sale%0Aversion:%2010.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Sergio Corato

Contributors
~~~~~~~~~~~~

* Sergio Corato <info@efatto.it>

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

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.

This module is part of the `OCA/contract <https://github.com/OCA/contract/tree/10.0/contract_show_sale>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 2 additions & 0 deletions contract_show_sale/__init__.py
@@ -0,0 +1,2 @@
# -*- coding: utf-8 -*-
from . import models
21 changes: 21 additions & 0 deletions contract_show_sale/__manifest__.py
@@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2015 Angel Moya <angel.moya@domatix.com>
# Copyright (C) 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
# Copyright (C) 2019 Sergio Corato (https://efatto.it)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
'name': 'Contract Show Sale',
'summary': 'Button in contracts to show their sales',
'version': '10.0.1.0.1',
'license': 'AGPL-3',
'author': 'Sergio Corato,'
'Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/contract',
'depends': ['analytic', 'sale'],
'category': 'Sales Management',
'data': [
'views/contract_view.xml',
],
'installable': True,
}
45 changes: 45 additions & 0 deletions contract_show_sale/i18n/it.po
@@ -0,0 +1,45 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * contract_show_sale
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-05-03 16:07+0000\n"
"PO-Revision-Date: 2019-05-03 16:07+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_sale
#: model:ir.ui.view,arch_db:contract_show_sale.account_analytic_account_button_sale
msgid "<span class=\"o_stat_text\">Sales</span>"
msgstr "<span class=\"o_stat_text\">Vendite</span>"

#. module: contract_show_sale
#: model:ir.model,name:contract_show_sale.model_account_analytic_account
msgid "Analytic Account"
msgstr "Conto Analitico"

#. module: contract_show_sale
#: model:ir.actions.act_window,name:contract_show_sale.act_analytic_sales
#: model:ir.ui.view,arch_db:contract_show_sale.view_account_analytic_account_sale_tree
msgid "Sales"
msgstr "Contratto"

#. module: contract_show_sale
#: model:ir.ui.view,arch_db:contract_show_sale.account_analytic_account_button_sale
msgid "Sales related with this contract"
msgstr "Vendite collegate a questo contratto"

#. module: contract_show_sale
#: model:ir.model.fields,field_description:contract_show_sale.field_account_analytic_account_total_sale
#: model:ir.model.fields,field_description:contract_show_sale.field_project_project_total_sale
#: model:ir.ui.view,arch_db:contract_show_sale.view_account_analytic_account_sale_tree
msgid "Total Sales"
msgstr "Totale Contratto"

2 changes: 2 additions & 0 deletions contract_show_sale/models/__init__.py
@@ -0,0 +1,2 @@
# -*- coding: utf-8 -*-
from . import account_analytic_account
22 changes: 22 additions & 0 deletions contract_show_sale/models/account_analytic_account.py
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo import api, fields, models


class AccountAnalyticAccount(models.Model):
_inherit = 'account.analytic.account'

@api.multi
def _get_total_sale(self):
sale_model = self.env['sale.order']
for analytic in self:
fetch_data = sale_model.read_group(
[('project_id', '=', analytic.id),
('state', 'not in', ['draft', 'sent', 'cancel'])],
['amount_untaxed'], [],
)
analytic.total_sale = fetch_data[0]['amount_untaxed']

total_sale = fields.Float(string="Total Sales",
compute='_get_total_sale')
1 change: 1 addition & 0 deletions contract_show_sale/readme/CONFIGURE.rst
@@ -0,0 +1 @@
Nothing to do
1 change: 1 addition & 0 deletions contract_show_sale/readme/CONTRIBUTORS.rst
@@ -0,0 +1 @@
* Sergio Corato <info@efatto.it>
1 change: 1 addition & 0 deletions contract_show_sale/readme/DESCRIPTION.rst
@@ -0,0 +1 @@
This module add button in contract to view sales
Binary file added contract_show_sale/static/description/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5e80224

Please sign in to comment.