Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
97 changes: 97 additions & 0 deletions spreadsheet_dashboard_purchase_stock_oca/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
.. image:: https://odoo-community.org/readme-banner-image
:target: https://odoo-community.org/get-involved?utm_source=readme
:alt: Odoo Community Association

===================================
Spreadsheet dashboard for purchases
===================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:aac7f259f39bb08abbbdc672ae572b82f888493dabdba3c62ecb93b81a8e5cb1
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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/license-LGPL--3-blue.png
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fspreadsheet-lightgray.png?logo=github
:target: https://github.com/OCA/spreadsheet/tree/19.0/spreadsheet_dashboard_purchase_stock_oca
:alt: OCA/spreadsheet
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/spreadsheet-19-0/spreadsheet-19-0-spreadsheet_dashboard_purchase_stock_oca
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/spreadsheet&target_branch=19.0
:alt: Try me on Runboat

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

Spreadsheet dashboard for purchases.

**Table of contents**

.. contents::
:local:

Known issues / Roadmap
======================

- Modernize style and use new v18 features.
- Unify both purchase modules into one, and remove duplicated
information.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/spreadsheet/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 <https://github.com/OCA/spreadsheet/issues/new?body=module:%20spreadsheet_dashboard_purchase_stock_oca%0Aversion:%2019.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
-------

* Odoo S.A.
* Tecnativa

Contributors
------------

- `Tecnativa <https://www.tecnativa.com>`__:

- Pedro M. Baeza

Other credits
-------------

This module is a forward-port from Odoo SA and as such, it is not
included in the OCA CLA. That means we do not have a copy of the
copyright on it like all other OCA modules.

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/spreadsheet <https://github.com/OCA/spreadsheet/tree/19.0/spreadsheet_dashboard_purchase_stock_oca>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions spreadsheet_dashboard_purchase_stock_oca/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.
12 changes: 12 additions & 0 deletions spreadsheet_dashboard_purchase_stock_oca/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Spreadsheet dashboard for purchases",
"category": "Hidden",
"depends": ["spreadsheet_dashboard", "purchase_stock"],
"version": "19.0.1.0.0",
"website": "https://github.com/OCA/spreadsheet",
"author": "Odoo S.A., Tecnativa, Odoo Community Association (OCA)",
"data": ["data/dashboards.xml"],
"installable": True,
"auto_install": ["purchase_stock"],
"license": "LGPL-3",
}
25 changes: 25 additions & 0 deletions spreadsheet_dashboard_purchase_stock_oca/data/dashboards.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="spreadsheet_dashboard_purchase" model="spreadsheet.dashboard">
<field name="name">Purchase</field>
<field
name="spreadsheet_binary_data"
type="base64"
file="spreadsheet_dashboard_purchase_stock_oca/data/files/purchase_dashboard.json"
/>
<field
name="main_data_model_ids"
eval="[Command.link(ref('purchase.model_purchase_order'))]"
/>
<field
name="dashboard_group_id"
ref="spreadsheet_dashboard.spreadsheet_dashboard_group_logistics"
/>
<field
name="group_ids"
eval="[Command.link(ref('stock.group_stock_manager'))]"
/>
<field name="sequence">100</field>
<field name="is_published">True</field>
</record>
</odoo>
Loading
Loading