diff --git a/contract_show_sale/README.rst b/contract_show_sale/README.rst new file mode 100644 index 00000000..4f78fd41 --- /dev/null +++ b/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 `_. +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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Sergio Corato + +Contributors +~~~~~~~~~~~~ + +* Sergio Corato + +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 `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/contract_show_sale/__init__.py b/contract_show_sale/__init__.py new file mode 100644 index 00000000..a0fdc10f --- /dev/null +++ b/contract_show_sale/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import models diff --git a/contract_show_sale/__manifest__.py b/contract_show_sale/__manifest__.py new file mode 100644 index 00000000..6192e17e --- /dev/null +++ b/contract_show_sale/__manifest__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 2015 Angel Moya +# Copyright (C) 2016 Carlos Dauden +# 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, +} diff --git a/contract_show_sale/i18n/it.po b/contract_show_sale/i18n/it.po new file mode 100644 index 00000000..559ac9cb --- /dev/null +++ b/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 "Sales" +msgstr "Vendite" + +#. 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" + diff --git a/contract_show_sale/models/__init__.py b/contract_show_sale/models/__init__.py new file mode 100644 index 00000000..40d56875 --- /dev/null +++ b/contract_show_sale/models/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import account_analytic_account diff --git a/contract_show_sale/models/account_analytic_account.py b/contract_show_sale/models/account_analytic_account.py new file mode 100644 index 00000000..c6117fbd --- /dev/null +++ b/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') diff --git a/contract_show_sale/readme/CONFIGURE.rst b/contract_show_sale/readme/CONFIGURE.rst new file mode 100644 index 00000000..b1534b16 --- /dev/null +++ b/contract_show_sale/readme/CONFIGURE.rst @@ -0,0 +1 @@ +Nothing to do diff --git a/contract_show_sale/readme/CONTRIBUTORS.rst b/contract_show_sale/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..feb5b093 --- /dev/null +++ b/contract_show_sale/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Sergio Corato diff --git a/contract_show_sale/readme/DESCRIPTION.rst b/contract_show_sale/readme/DESCRIPTION.rst new file mode 100644 index 00000000..0fa4829d --- /dev/null +++ b/contract_show_sale/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module add button in contract to view sales diff --git a/contract_show_sale/static/description/icon.png b/contract_show_sale/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/contract_show_sale/static/description/icon.png differ diff --git a/contract_show_sale/static/description/index.html b/contract_show_sale/static/description/index.html new file mode 100644 index 00000000..7c3370f7 --- /dev/null +++ b/contract_show_sale/static/description/index.html @@ -0,0 +1,424 @@ + + + + + + +Contract Show Sale + + + +
+

Contract Show Sale

+ + +

Beta License: AGPL-3 OCA/contract Translate me on Weblate Try me on Runbot

+

This module add button in contract to view sales

+

Table of contents

+ +
+

Configuration

+

Nothing to do

+
+
+

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.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Sergio Corato
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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 project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/contract_show_sale/views/contract_view.xml b/contract_show_sale/views/contract_view.xml new file mode 100644 index 00000000..b8a373ad --- /dev/null +++ b/contract_show_sale/views/contract_view.xml @@ -0,0 +1,59 @@ + + + + + {'search_default_project_id': + active_id, 'default_project_id': active_id} + Sales + sale.order + [('project_id','=',active_id)] + + + + + + tree + + + + + + + form + + + + + + account.analytic.account.tree.sale + account.analytic.account + + + + + + + + + + account.analytic.account.button.sale + account.analytic.account + + + + + + + + + diff --git a/setup/contract_show_sale/odoo/__init__.py b/setup/contract_show_sale/odoo/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/contract_show_sale/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/contract_show_sale/odoo/addons/__init__.py b/setup/contract_show_sale/odoo/addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/contract_show_sale/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/contract_show_sale/odoo/addons/contract_show_sale b/setup/contract_show_sale/odoo/addons/contract_show_sale new file mode 120000 index 00000000..fd7c2768 --- /dev/null +++ b/setup/contract_show_sale/odoo/addons/contract_show_sale @@ -0,0 +1 @@ +../../../../contract_show_sale \ No newline at end of file diff --git a/setup/contract_show_sale/setup.py b/setup/contract_show_sale/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/contract_show_sale/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)