diff --git a/budget_spreadsheet/README.rst b/budget_spreadsheet/README.rst new file mode 100644 index 00000000..591e294f --- /dev/null +++ b/budget_spreadsheet/README.rst @@ -0,0 +1,106 @@ +==================== +Budget - Spreadsheet +==================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:d866698d2144d3c50e6111827794920da7835c16309e3f3dcaa6625821474389 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png + :target: https://odoo-community.org/page/development-status + :alt: Alpha +.. |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-ecosoft--odoo%2Fbudgeting-lightgray.png?logo=github + :target: https://github.com/ecosoft-odoo/budgeting/tree/16.0/budget_spreadsheet + :alt: ecosoft-odoo/budgeting + +|badge1| |badge2| |badge3| + +This module adds a pending payments due list. The list contains every +expected payment that has been generated by reconcilable accounts. The list is fully filterable. + +.. IMPORTANT:: + This is an alpha version, the data model and design can change at any time without warning. + Only for development or testing purpose, do not use in production. + `More details on development status `_ + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +To use this module, you need to: + +#. Activate developer mode. +#. Go to *Settings > Users & Companies > Groups*. +#. Search for and choose "Technical / Show Full Accounting Features". +#. Edit it, and add your user on the "Users" tab + +Usage +===== + +To use this module, you need to go to: + +* Invoicing > Accounting > Payments and due list + +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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Ecosoft + +Contributors +~~~~~~~~~~~~ + +* Jordi Esteve +* Lorenzo Battistini +* Alex Comba (OpenERP v7 port) +* Bruno Bottacini (OpenERP v7 port) +* Andrea Cometa (Odoo v8 port) +* `Tecnativa `_: + + * Pedro M. Baeza + * Carlos Dauden + * Luis Daniel Lafaurie + * Carolina Fernandez + +* Jordi Ballester (Odoo v9 port) +* Maxime Chambreuil +* Javi Dios (Odoo v11 port) +* Simone Vanin + +Maintainers +~~~~~~~~~~~ + +.. |maintainer-Saran440| image:: https://github.com/Saran440.png?size=40px + :target: https://github.com/Saran440 + :alt: Saran440 + +Current maintainer: + +|maintainer-Saran440| + +This module is part of the `ecosoft-odoo/budgeting `_ project on GitHub. + +You are welcome to contribute. diff --git a/budget_spreadsheet/__init__.py b/budget_spreadsheet/__init__.py new file mode 100644 index 00000000..c71289ab --- /dev/null +++ b/budget_spreadsheet/__init__.py @@ -0,0 +1 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). diff --git a/budget_spreadsheet/__manifest__.py b/budget_spreadsheet/__manifest__.py new file mode 100644 index 00000000..6c6bc170 --- /dev/null +++ b/budget_spreadsheet/__manifest__.py @@ -0,0 +1,20 @@ +# Copyright 2024 Ecosoft Co., Ltd. (http://ecosoft.co.th) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Budget - Spreadsheet", + "version": "16.0.1.0.0", + "category": "Accounting", + "license": "AGPL-3", + "author": "Ecosoft, Odoo Community Association (OCA)", + "website": "https://github.com/ecosoft-odoo/budgeting", + "depends": [ + "account", + "spreadsheet_oca", + ], + "data": ["data/spreadsheet_spreadsheet.xml"], + "demo": ["demo/demo_spreadsheet_spreadsheet.xml"], + "installable": True, + "maintainers": ["Saran440"], + "development_status": "Alpha", +} diff --git a/budget_spreadsheet/data/budget_spreadsheet.json b/budget_spreadsheet/data/budget_spreadsheet.json new file mode 100644 index 00000000..054aae3b --- /dev/null +++ b/budget_spreadsheet/data/budget_spreadsheet.json @@ -0,0 +1,45 @@ +{ + "version": 12.5, + "sheets": [ + { + "id": "Sheet1", + "name": "Budget Spreadsheet", + "colNumber": 27, + "rowNumber": 101, + "rows": {}, + "cols": { + "0": {"size": 133}, + "1": {"size": 133}, + "2": {"size": 133}, + "3": {"size": 130} + }, + "merges": [], + "cells": { + "A1": {"style": 1, "content": "Plan"}, + "B1": {"style": 1, "content": "Analytic Account"}, + "C1": {"style": 1, "format": 1, "content": "Request Budget"}, + "D1": {"style": 1, "content": "Allocated Budget"} + } + } + ], + "entities": {}, + "styles": { + "1": { + "fillColor": "#F2F2F2", + "bold": true + } + }, + "formats": { + "1": "#,##0.00" + }, + "borders": {}, + "revisionId": "00b727ac-9f3d-4120-94b3-083d890158fb", + "uniqueFigureIds": true, + "odooVersion": 5, + "globalFilters": [], + "pivots": {}, + "pivotNextId": 1, + "lists": {}, + "listNextId": 1, + "chartOdooMenusReferences": {} +} diff --git a/budget_spreadsheet/data/spreadsheet_spreadsheet.xml b/budget_spreadsheet/data/spreadsheet_spreadsheet.xml new file mode 100644 index 00000000..196f0516 --- /dev/null +++ b/budget_spreadsheet/data/spreadsheet_spreadsheet.xml @@ -0,0 +1,11 @@ + + + + Budget Spreadsheet + + + diff --git a/budget_spreadsheet/demo/demo_budget_spreadsheet.json b/budget_spreadsheet/demo/demo_budget_spreadsheet.json new file mode 100644 index 00000000..f18bf5c4 --- /dev/null +++ b/budget_spreadsheet/demo/demo_budget_spreadsheet.json @@ -0,0 +1,91 @@ +{ + "version": 12.5, + "sheets": [ + { + "id": "Sheet1", + "name": "Budget Spreadsheet", + "colNumber": 27, + "rowNumber": 101, + "rows": {}, + "cols": { + "0": {"size": 133}, + "1": {"size": 133}, + "2": {"size": 133}, + "3": {"size": 130} + }, + "merges": [], + "cells": { + "A1": {"style": 1, "content": "Plan"}, + "A2": {"content": "Departments"}, + "A3": {"content": "Departments"}, + "A4": {"content": "Departments"}, + "A5": {"content": "Departments"}, + "B1": {"style": 1, "content": "Analytic Account"}, + "B2": {"content": "AA1"}, + "B3": {"content": "AA2"}, + "B4": {"content": "AA3"}, + "B5": {"content": "AA4"}, + "C1": {"style": 1, "format": 1, "content": "Request Budget"}, + "C2": {"format": 1, "content": "500000"}, + "C3": {"format": 1, "content": "400000"}, + "C4": {"format": 1, "content": "300000"}, + "C5": {"format": 1, "content": "8000000"}, + "D1": {"style": 1, "content": "Allocated Budget"} + } + } + ], + "entities": {}, + "styles": { + "1": { + "fillColor": "#F2F2F2", + "bold": true + } + }, + "formats": { + "1": "#,##0.00" + }, + "borders": {}, + "revisionId": "00b727ac-9f3d-4120-94b3-083d890158fb", + "uniqueFigureIds": true, + "odooVersion": 5, + "globalFilters": [], + "pivots": {}, + "pivotNextId": 1, + "lists": { + "1": { + "columns": ["name", "default_applicability", "color", "company_id"], + "domain": [["parent_id", "=", false]], + "model": "account.analytic.plan", + "context": {}, + "orderBy": [], + "id": "1", + "name": "Analytic Plans", + "fieldMatching": {} + }, + "2": { + "columns": [ + "name", + "code", + "budget_period_id", + "budget_control_ids", + "initial_available", + "initial_commit", + "partner_id", + "plan_id", + "company_id", + "debit", + "credit", + "balance" + ], + "domain": [], + "model": "account.analytic.account", + "context": {}, + "orderBy": [], + "id": "2", + "name": "Analytic Accounts", + "fieldMatching": {} + } + }, + "listNextId": 3, + "chartOdooMenusReferences": {} +} diff --git a/budget_spreadsheet/demo/demo_spreadsheet_spreadsheet.xml b/budget_spreadsheet/demo/demo_spreadsheet_spreadsheet.xml new file mode 100644 index 00000000..19f726e6 --- /dev/null +++ b/budget_spreadsheet/demo/demo_spreadsheet_spreadsheet.xml @@ -0,0 +1,11 @@ + + + + Demo budget spreadsheet + + + diff --git a/budget_spreadsheet/readme/CONFIGURE.rst b/budget_spreadsheet/readme/CONFIGURE.rst new file mode 100644 index 00000000..69364438 --- /dev/null +++ b/budget_spreadsheet/readme/CONFIGURE.rst @@ -0,0 +1,6 @@ +To use this module, you need to: + +#. Activate developer mode. +#. Go to *Settings > Users & Companies > Groups*. +#. Search for and choose "Technical / Show Full Accounting Features". +#. Edit it, and add your user on the "Users" tab diff --git a/budget_spreadsheet/readme/CONTRIBUTORS.rst b/budget_spreadsheet/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..24923174 --- /dev/null +++ b/budget_spreadsheet/readme/CONTRIBUTORS.rst @@ -0,0 +1,16 @@ +* Jordi Esteve +* Lorenzo Battistini +* Alex Comba (OpenERP v7 port) +* Bruno Bottacini (OpenERP v7 port) +* Andrea Cometa (Odoo v8 port) +* `Tecnativa `_: + + * Pedro M. Baeza + * Carlos Dauden + * Luis Daniel Lafaurie + * Carolina Fernandez + +* Jordi Ballester (Odoo v9 port) +* Maxime Chambreuil +* Javi Dios (Odoo v11 port) +* Simone Vanin diff --git a/budget_spreadsheet/readme/DESCRIPTION.rst b/budget_spreadsheet/readme/DESCRIPTION.rst new file mode 100644 index 00000000..e6c684a9 --- /dev/null +++ b/budget_spreadsheet/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +This module adds a pending payments due list. The list contains every +expected payment that has been generated by reconcilable accounts. The list is fully filterable. diff --git a/budget_spreadsheet/readme/USAGE.rst b/budget_spreadsheet/readme/USAGE.rst new file mode 100644 index 00000000..64caa47d --- /dev/null +++ b/budget_spreadsheet/readme/USAGE.rst @@ -0,0 +1,3 @@ +To use this module, you need to go to: + +* Invoicing > Accounting > Payments and due list diff --git a/budget_spreadsheet/static/description/index.html b/budget_spreadsheet/static/description/index.html new file mode 100644 index 00000000..4c83bff0 --- /dev/null +++ b/budget_spreadsheet/static/description/index.html @@ -0,0 +1,471 @@ + + + + + +Budget - Spreadsheet + + + +
+

Budget - Spreadsheet

+ + +

Alpha License: AGPL-3 ecosoft-odoo/budgeting

+

This module adds a pending payments due list. The list contains every +expected payment that has been generated by reconcilable accounts. The list is fully filterable.

+
+

Important

+

This is an alpha version, the data model and design can change at any time without warning. +Only for development or testing purpose, do not use in production. +More details on development status

+
+

Table of contents

+ +
+

Configuration

+

To use this module, you need to:

+
    +
  1. Activate developer mode.
  2. +
  3. Go to Settings > Users & Companies > Groups.
  4. +
  5. Search for and choose “Technical / Show Full Accounting Features”.
  6. +
  7. Edit it, and add your user on the “Users” tab
  8. +
+
+
+

Usage

+

To use this module, you need to go to:

+
    +
  • Invoicing > Accounting > Payments and due list
  • +
+
+
+

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 to smash it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Ecosoft
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

Current maintainer:

+

Saran440

+

This module is part of the ecosoft-odoo/budgeting project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/setup/budget_spreadsheet/odoo/addons/budget_spreadsheet b/setup/budget_spreadsheet/odoo/addons/budget_spreadsheet new file mode 120000 index 00000000..2942ac04 --- /dev/null +++ b/setup/budget_spreadsheet/odoo/addons/budget_spreadsheet @@ -0,0 +1 @@ +../../../../budget_spreadsheet \ No newline at end of file diff --git a/setup/budget_spreadsheet/setup.py b/setup/budget_spreadsheet/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/budget_spreadsheet/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)