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
110 changes: 110 additions & 0 deletions pim_base/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
===================================
Product Information Management base
===================================

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

.. |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%2Fodoo--pim-lightgray.png?logo=github
:target: https://github.com/OCA/odoo-pim/tree/17.0/pim_base
:alt: OCA/odoo-pim
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/odoo-pim-17-0/odoo-pim-17-0-pim_base
: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/odoo-pim&target_branch=17.0
:alt: Try me on Runboat

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

Base module for Product Information Management.

The module creates a new application menu "PIM" gathering native views
about Products :

- Products and Products Variants views
- Attributes
- Categories

It also creates a new user group category with 3 access rights levels :

- PIM Reader
- PIM User
- PIM Manager

**Table of contents**

.. contents::
:local:

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

Define your user **PIM access rights** in the Application Accesses as a
Manager, User or Reader and the application menu "PIM" will appear.

Usage
=====



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



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

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

* Akretion
* Pierre Verkest <pierre@verkest.fr>

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

- Sébastien BEAU <sebastien.beau@akretion.com>
- Clément Mombereau <clement.mombereau@akretion.com.br>
- Cédric PIGEON <cedric.pigeon@acsone.eu>
- Denis Roussel <denis.roussel@acsone.eu>
- Pierre Verkest <pierre@verkest.fr>

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/odoo-pim <https://github.com/OCA/odoo-pim/tree/17.0/pim_base>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Empty file added pim_base/__init__.py
Empty file.
24 changes: 24 additions & 0 deletions pim_base/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2020 Akretion
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "Product Information Management base",
"version": "17.0.1.0.0",
"license": "AGPL-3",
"author": "Akretion, Pierre Verkest <pierre@verkest.fr>, "
"Odoo Community Association (OCA)",
"website": "https://github.com/OCA/odoo-pim",
"depends": [
"product",
],
"data": [
"data/ir_module_category_data.xml",
"security/pim_security.xml",
"views/product_view.xml",
"views/pim_view.xml",
"views/product_attribute_value.xml",
],
"demo": [],
"installable": True,
"application": True,
}
8 changes: 8 additions & 0 deletions pim_base/data/ir_module_category_data.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="module_category_pim" model="ir.module.category">
<field name="name">PIM</field>
<field name="description">Manage your products catalogue easily</field>
<field name="sequence">2</field>
</record>
</odoo>
3 changes: 3 additions & 0 deletions pim_base/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
2 changes: 2 additions & 0 deletions pim_base/readme/CONFIGURE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Define your user **PIM access rights** in the Application Accesses as a
Manager, User or Reader and the application menu "PIM" will appear.
5 changes: 5 additions & 0 deletions pim_base/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- Sébastien BEAU \<sebastien.beau@akretion.com\>
- Clément Mombereau \<clement.mombereau@akretion.com.br\>
- Cédric PIGEON \<cedric.pigeon@acsone.eu\>
- Denis Roussel \<denis.roussel@acsone.eu\>
- Pierre Verkest \<pierre@verkest.fr\>
14 changes: 14 additions & 0 deletions pim_base/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Base module for Product Information Management.

The module creates a new application menu "PIM" gathering native views
about Products :

- Products and Products Variants views
- Attributes
- Categories

It also creates a new user group category with 3 access rights levels :

- PIM Reader
- PIM User
- PIM Manager
1 change: 1 addition & 0 deletions pim_base/readme/ROADMAP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions pim_base/readme/USAGE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

30 changes: 30 additions & 0 deletions pim_base/security/pim_security.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2020 Akretion
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="group_pim_reader" model="res.groups">
<field name="name">Reader</field>
<field name="category_id" ref="pim_base.module_category_pim" />
<field name="comment">
the user will have only the right to consult the products catalogue
</field>
</record>
<record id="group_pim_user" model="res.groups">
<field name="name">User</field>
<field name="category_id" ref="pim_base.module_category_pim" />
<field name="implied_ids" eval="[(4, ref('group_pim_reader'))]" />
<field name="comment">
the user will be able to modify products but will not be authorized to
create attributes
</field>
</record>
<record id="group_pim_manager" model="res.groups">
<field name="name">Manager</field>
<field name="category_id" ref="pim_base.module_category_pim" />
<field name="implied_ids" eval="[(4, ref('group_pim_user'))]" />
<field name="users" eval="[(4, ref('base.user_admin'))]" />
<field name="comment">
the user will be able to modify products and create attributes
</field>
</record>
</odoo>
Binary file added pim_base/static/description/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading