From 7dbf50d0e956578aa8f25b006405cf3408f4e06c Mon Sep 17 00:00:00 2001 From: clementmbr Date: Mon, 18 May 2020 17:44:11 -0300 Subject: [PATCH 01/27] [REF] rename modules based on attribute_set and pim New organization : - attribute_set (former base_custom_attribute) - product_attribute_set (former pim_custom_attribute but without menus) - pim (The "PIM application" former pim_base) - pim_attrubute_set (depends on product_attribute_set and adds menus in the PIM application) --- pim/README.rst | 69 +++++ pim/__init__.py | 1 + pim/__manifest__.py | 19 ++ pim/data/ir_module_category_data.xml | 8 + pim/readme/CONFIGURE.rst | 1 + pim/readme/CONTRIBUTORS.rst | 0 pim/readme/DESCRIPTION.rst | 13 + pim/readme/ROADMAP.rst | 0 pim/readme/USAGE.rst | 0 pim/security/pim_security.xml | 28 ++ pim/static/description/icon.png | Bin 0 -> 2264 bytes pim/static/description/index.html | 424 +++++++++++++++++++++++++++ pim/views/pim_view.xml | 67 +++++ 13 files changed, 630 insertions(+) create mode 100644 pim/README.rst create mode 100644 pim/__init__.py create mode 100644 pim/__manifest__.py create mode 100644 pim/data/ir_module_category_data.xml create mode 100644 pim/readme/CONFIGURE.rst create mode 100644 pim/readme/CONTRIBUTORS.rst create mode 100644 pim/readme/DESCRIPTION.rst create mode 100644 pim/readme/ROADMAP.rst create mode 100644 pim/readme/USAGE.rst create mode 100644 pim/security/pim_security.xml create mode 100644 pim/static/description/icon.png create mode 100644 pim/static/description/index.html create mode 100644 pim/views/pim_view.xml diff --git a/pim/README.rst b/pim/README.rst new file mode 100644 index 00000000..eaca92d5 --- /dev/null +++ b/pim/README.rst @@ -0,0 +1,69 @@ +======== +PIM Base +======== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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-akretion%2Fpim-lightgray.png?logo=github + :target: https://github.com/akretion/pim/tree/12.0/pim + :alt: akretion/pim + +|badge1| |badge2| |badge3| + +A basic module for Product Information Management. + +The module itself doesn't do anything. It only 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. + +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 +~~~~~~~ + +* Akretion + +Maintainers +~~~~~~~~~~~ + +This module is part of the `akretion/pim `_ project on GitHub. + +You are welcome to contribute. diff --git a/pim/__init__.py b/pim/__init__.py new file mode 100644 index 00000000..737b4772 --- /dev/null +++ b/pim/__init__.py @@ -0,0 +1 @@ +# from . import models diff --git a/pim/__manifest__.py b/pim/__manifest__.py new file mode 100644 index 00000000..520f7d1b --- /dev/null +++ b/pim/__manifest__.py @@ -0,0 +1,19 @@ +# Copyright 2020 Akretion +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "PIM", + "version": "12.0.1.0.0", + "license": "AGPL-3", + "author": "Akretion", + "website": "http://www.akretion.com/", + "depends": ["product"], + "data": [ + "data/ir_module_category_data.xml", + "security/pim_security.xml", + "views/pim_view.xml", + ], + "demo": [], + "installable": True, + "application": True, +} diff --git a/pim/data/ir_module_category_data.xml b/pim/data/ir_module_category_data.xml new file mode 100644 index 00000000..21da090c --- /dev/null +++ b/pim/data/ir_module_category_data.xml @@ -0,0 +1,8 @@ + + + + PIM + Manage your products catalogue easily + 2 + + diff --git a/pim/readme/CONFIGURE.rst b/pim/readme/CONFIGURE.rst new file mode 100644 index 00000000..044a6dc4 --- /dev/null +++ b/pim/readme/CONFIGURE.rst @@ -0,0 +1 @@ +Define your user **PIM access rights** in the Application Accesses as a Manager, User or Reader and the application menu "PIM" will appear. diff --git a/pim/readme/CONTRIBUTORS.rst b/pim/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..e69de29b diff --git a/pim/readme/DESCRIPTION.rst b/pim/readme/DESCRIPTION.rst new file mode 100644 index 00000000..1fd17e08 --- /dev/null +++ b/pim/readme/DESCRIPTION.rst @@ -0,0 +1,13 @@ +A basic module for Product Information Management. + +The module itself doesn't do anything. It only 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 diff --git a/pim/readme/ROADMAP.rst b/pim/readme/ROADMAP.rst new file mode 100644 index 00000000..e69de29b diff --git a/pim/readme/USAGE.rst b/pim/readme/USAGE.rst new file mode 100644 index 00000000..e69de29b diff --git a/pim/security/pim_security.xml b/pim/security/pim_security.xml new file mode 100644 index 00000000..892cad79 --- /dev/null +++ b/pim/security/pim_security.xml @@ -0,0 +1,28 @@ + + + + + Reader + + the user will have only the right to consult the products catalogue + + + User + + + the user will be able to modify products but will not be authorized to create attributes + + + Manager + + + the user will be able to modify products and create attributes + + diff --git a/pim/static/description/icon.png b/pim/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ffded50aff454d0a2e2d2c04a474a6826ef75ef5 GIT binary patch literal 2264 zcmbVOX*d)L7amcjk*$W1hHN3*y(qhk8Dky0v1G|Q30X$W7$n3D;$o~3Qa6Mq6ft8< zg@mlhnmy|K`+YyY=Q-!R=Q-y&zut4+=MXHA2u_d?2mkQijQs5^Q0e?|W|19ZWCmxSWdrh^ zR*2}#qXGaxFC&GtrJ1!tJ>r;6u%o7m}t+@Pm1 zi|Wn2>Wh1ti>Anqu-I6Az?fc_&~h=GwjXh8K`8&81sjwX2p0v%{BvT+NXy#pt`O#0 z!r}VRN&vtxWzuGFEz3Vb3tXJ}#}$$ieeX%XpFu`HkmShO01cu?tTb+Pr4!h$qEO`5 z^@*gZDE$UQOWMTrw45$gfVPkj`~18T zpu5oeP(eZ8s2^HIpvcd+t9ubrIxtFvSvk$TlzUsBI6WtkPE&*PSXJL?h&-@OYPYnk z9x5rW+ZhdXmHti^DA5ryhJ!4LX+~RlJqr}6SeCk-9b44CmY~dVcGj-A0%{&94dVrU zS+OlgJ)lyF1L<0q$a`CoB~iL<+uQa>M`4L@P%F{mYad{sg+k$vh_HRqx|#ZlY>BxI z(WI%}54d)ytej|SZXK7zweMTOmx9w)NT1=z#mL528qN(FDCH#Y<4Mp@GF3Kg4aOuD z`c7wu(p)yK!~w&b7cgyLHY&QTR#v~TafX*TDDnEzf5kGYsm7{H7!W*E^$DKv!=q=u zjpK23(G==s6?OuhxfC#-rc`?TuzbuhrvS+`35d?S-l?dh(N(`zYPFl>*X`>7hVJn@ z2dcf<5OYA&91wNZz@247=8^^&%~cu)aJ_4L9yI#!9pWphpaQ=Gint+>URz48uT?I&Z( z4QUD9Q*e~y2S=!DhAg<wYsO1EpyYz5d(J`nnoH`CN6qeb#v@iF$If#u+D5boF7ka{E+bn*dXp8VS?TkMw` zt%|kDUXpG3Bt%VrqW2RT)ar(}%jZ>qL3TEIA=s<;fb^6H&pa&?V!JA6xr8x4C??^6{`{!D%xmr<751I|3u_BYapInE~~vVF8qMcl(?=<|LE? ze2s6CD@q@NoIME#Ibe028heu_aIwJrQcFv&I=rlBA3P(h4qu&VADo@J`86LpxU{o$ zwAJmIG$gB-FzsV~_t^3QOg8>mrP(k(=e%dg1Uink(DN#zNbbMO+5b?w|F5NxI_DrN zY9w{muU{-E4LR!|dT*kqrwQ*u4G8=rIeMGZhKv0LD=V7(6^1Q-BaryPJ@FSlTthiz zfdoTcI&p6#OrEi~>8+mVlBhG zYoV|s79*5Dqr?Yt$!-hQ8;) z#B##IspKFY8cwpmqvQV2ftP%n(Nk%FfbJ3aSCs-q3PMZXm*=Am$(5 zr;ShY&x55FOihKt>A)C7swhhKW>eUmslEwkhh!@i>#g|l^|=AUX{;SZk=NfN3nmXq z^}vSL2V=tpRB_s-M@LE;1z35wvZSjgR&bI)Fr~QuUQsIfhUMisP^-2I+g=|JlXuL- z#PO1b=9NJy>kjzSk8HX>cEq%foM zl%q0Py=o+LY_T8fA|nmg))~>mB0#sp1QDJ`k1`1|vws4!pKBrW?V8}@OT1^b$_=DX l6a(YLc!<~kIgv;` + + + + + +PIM Base + + + +
+

PIM Base

+ + +

Beta License: AGPL-3 akretion/pim

+

A basic module for Product Information Management.

+

The module itself doesn’t do anything. It only 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

+ +
+

Configuration

+

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

+
+
+

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

+
    +
  • Akretion
  • +
+
+
+

Maintainers

+

This module is part of the akretion/pim project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/pim/views/pim_view.xml b/pim/views/pim_view.xml new file mode 100644 index 00000000..81c24eff --- /dev/null +++ b/pim/views/pim_view.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + tree,kanban,form + + + From 1427eb25f0d9e6787061058faf65d7868be5b7ef Mon Sep 17 00:00:00 2001 From: clementmbr Date: Mon, 18 May 2020 22:15:46 -0300 Subject: [PATCH 02/27] [IMP] Add REAME to the 4 modules --- pim/README.rst | 24 +++++++++++++++--------- pim/readme/CONTRIBUTORS.rst | 2 ++ pim/static/description/index.html | 26 +++++++++++++++++--------- 3 files changed, 34 insertions(+), 18 deletions(-) diff --git a/pim/README.rst b/pim/README.rst index eaca92d5..739846a7 100644 --- a/pim/README.rst +++ b/pim/README.rst @@ -1,6 +1,6 @@ -======== -PIM Base -======== +=== +PIM +=== .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! @@ -13,9 +13,9 @@ PIM Base .. |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-akretion%2Fpim-lightgray.png?logo=github - :target: https://github.com/akretion/pim/tree/12.0/pim - :alt: akretion/pim +.. |badge3| image:: https://img.shields.io/badge/github-akretion%2Fodoo--pim-lightgray.png?logo=github + :target: https://github.com/akretion/odoo-pim/tree/12.0/pim + :alt: akretion/odoo-pim |badge1| |badge2| |badge3| @@ -46,10 +46,10 @@ Define your user **PIM access rights** in the Application Accesses as a Manager, Bug Tracker =========== -Bugs are tracked on `GitHub Issues `_. +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 `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -61,9 +61,15 @@ Authors * Akretion +Contributors +~~~~~~~~~~~~ + +* Sébastien BEAU +* Clément Mombereau + Maintainers ~~~~~~~~~~~ -This module is part of the `akretion/pim `_ project on GitHub. +This module is part of the `akretion/odoo-pim `_ project on GitHub. You are welcome to contribute. diff --git a/pim/readme/CONTRIBUTORS.rst b/pim/readme/CONTRIBUTORS.rst index e69de29b..e26830ca 100644 --- a/pim/readme/CONTRIBUTORS.rst +++ b/pim/readme/CONTRIBUTORS.rst @@ -0,0 +1,2 @@ +* Sébastien BEAU +* Clément Mombereau diff --git a/pim/static/description/index.html b/pim/static/description/index.html index ec410ba5..6f4c7c97 100644 --- a/pim/static/description/index.html +++ b/pim/static/description/index.html @@ -4,7 +4,7 @@ -PIM Base +PIM -
-

PIM Base

+
+

PIM

-

Beta License: AGPL-3 akretion/pim

+

Beta License: AGPL-3 akretion/odoo-pim

A basic module for Product Information Management.

The module itself doesn’t do anything. It only creates a new application menu “PIM” gathering native views about Products :

@@ -399,10 +400,10 @@

Configuration

Bug Tracker

-

Bugs are tracked on GitHub Issues. +

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.

+feedback.

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

@@ -413,9 +414,16 @@

Authors

  • Akretion
  • +
    +

    Contributors

    + +
    -

    Maintainers

    -

    This module is part of the akretion/pim project on GitHub.

    +

    Maintainers

    +

    This module is part of the akretion/odoo-pim project on GitHub.

    You are welcome to contribute.

    From 5a6c6c7d7457b2763b20ab77f5d6021f0fc4ab4f Mon Sep 17 00:00:00 2001 From: clementmbr Date: Wed, 27 May 2020 13:07:30 -0300 Subject: [PATCH 03/27] [IMP] base.user_admin in Attribute Set and PIM Manager group --- pim/security/pim_security.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pim/security/pim_security.xml b/pim/security/pim_security.xml index 892cad79..a23a0a0f 100644 --- a/pim/security/pim_security.xml +++ b/pim/security/pim_security.xml @@ -21,6 +21,7 @@ Manager + the user will be able to modify products and create attributes From 9edde0f9f578a805b7f6021b9f768400e17e175d Mon Sep 17 00:00:00 2001 From: clementmbr Date: Wed, 27 May 2020 13:14:34 -0300 Subject: [PATCH 04/27] [IMP] remove class in super() and other misc improvements --- pim/__init__.py | 1 - pim/__manifest__.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pim/__init__.py b/pim/__init__.py index 737b4772..e69de29b 100644 --- a/pim/__init__.py +++ b/pim/__init__.py @@ -1 +0,0 @@ -# from . import models diff --git a/pim/__manifest__.py b/pim/__manifest__.py index 520f7d1b..08202e63 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { - "name": "PIM", + "name": "Product Information Management", "version": "12.0.1.0.0", "license": "AGPL-3", "author": "Akretion", From 90753e9a82bc9767d620b8e726e2ed040db928a9 Mon Sep 17 00:00:00 2001 From: shopinvader-git-bot Date: Fri, 5 Jun 2020 07:36:14 +0000 Subject: [PATCH 05/27] [UPD] README.rst --- pim/README.rst | 18 +++++++++--------- pim/static/description/index.html | 14 +++++++------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/pim/README.rst b/pim/README.rst index 739846a7..eaa9c7bb 100644 --- a/pim/README.rst +++ b/pim/README.rst @@ -1,6 +1,6 @@ -=== -PIM -=== +============================== +Product Information Management +============================== .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! @@ -13,9 +13,9 @@ PIM .. |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-akretion%2Fodoo--pim-lightgray.png?logo=github - :target: https://github.com/akretion/odoo-pim/tree/12.0/pim - :alt: akretion/odoo-pim +.. |badge3| image:: https://img.shields.io/badge/github-shopinvader%2Fodoo--pim-lightgray.png?logo=github + :target: https://github.com/shopinvader/odoo-pim/tree/12.0/pim + :alt: shopinvader/odoo-pim |badge1| |badge2| |badge3| @@ -46,10 +46,10 @@ Define your user **PIM access rights** in the Application Accesses as a Manager, Bug Tracker =========== -Bugs are tracked on `GitHub Issues `_. +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 `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -70,6 +70,6 @@ Contributors Maintainers ~~~~~~~~~~~ -This module is part of the `akretion/odoo-pim `_ project on GitHub. +This module is part of the `shopinvader/odoo-pim `_ project on GitHub. You are welcome to contribute. diff --git a/pim/static/description/index.html b/pim/static/description/index.html index 6f4c7c97..06b66157 100644 --- a/pim/static/description/index.html +++ b/pim/static/description/index.html @@ -4,7 +4,7 @@ -PIM +Product Information Management -
    -

    PIM

    +
    +

    Product Information Management

    -

    Beta License: AGPL-3 akretion/odoo-pim

    +

    Beta License: AGPL-3 shopinvader/odoo-pim

    A basic module for Product Information Management.

    The module itself doesn’t do anything. It only creates a new application menu “PIM” gathering native views about Products :

    Bug Tracker

    -

    Bugs are tracked on GitHub Issues. +

    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.

    +feedback.

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

    @@ -423,7 +423,7 @@

    Contributors

    Maintainers

    -

    This module is part of the akretion/odoo-pim project on GitHub.

    +

    This module is part of the shopinvader/odoo-pim project on GitHub.

    You are welcome to contribute.

    From 3ebaaf1fa147d12afffe410fb4d9725d671a5e43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Pigeon?= Date: Wed, 10 Jun 2020 11:46:47 +0200 Subject: [PATCH 06/27] [CHG] add dedicated product view for PIM and refactor addons structure --- pim/__manifest__.py | 6 +++++- pim/readme/CONTRIBUTORS.rst | 1 + pim/views/attribute_attribute.xml | 28 +++++++++++++++++++++++++ pim/views/attribute_group.xml | 21 +++++++++++++++++++ pim/views/attribute_set.xml | 31 +++++++++++++++++++++++++++ pim/views/pim_view.xml | 5 ----- pim/views/product_view.xml | 35 +++++++++++++++++++++++++++++++ 7 files changed, 121 insertions(+), 6 deletions(-) create mode 100644 pim/views/attribute_attribute.xml create mode 100644 pim/views/attribute_group.xml create mode 100644 pim/views/attribute_set.xml create mode 100644 pim/views/product_view.xml diff --git a/pim/__manifest__.py b/pim/__manifest__.py index 08202e63..88c3672c 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -7,11 +7,15 @@ "license": "AGPL-3", "author": "Akretion", "website": "http://www.akretion.com/", - "depends": ["product"], + "depends": ["product", "product_attribute_set"], "data": [ "data/ir_module_category_data.xml", "security/pim_security.xml", "views/pim_view.xml", + "views/product_view.xml", + "views/attribute_set.xml", + "views/attribute_group.xml", + "views/attribute_attribute.xml", ], "demo": [], "installable": True, diff --git a/pim/readme/CONTRIBUTORS.rst b/pim/readme/CONTRIBUTORS.rst index e26830ca..7edcf03e 100644 --- a/pim/readme/CONTRIBUTORS.rst +++ b/pim/readme/CONTRIBUTORS.rst @@ -1,2 +1,3 @@ * Sébastien BEAU * Clément Mombereau +* Cédric PIGEON diff --git a/pim/views/attribute_attribute.xml b/pim/views/attribute_attribute.xml new file mode 100644 index 00000000..7d6128d3 --- /dev/null +++ b/pim/views/attribute_attribute.xml @@ -0,0 +1,28 @@ + + + + Product Attribute + attribute.attribute + form + tree,form + + + + + + + diff --git a/pim/views/attribute_group.xml b/pim/views/attribute_group.xml new file mode 100644 index 00000000..9e68b464 --- /dev/null +++ b/pim/views/attribute_group.xml @@ -0,0 +1,21 @@ + + + + Attribute Groups + attribute.group + form + tree,form + + + + + + diff --git a/pim/views/attribute_set.xml b/pim/views/attribute_set.xml new file mode 100644 index 00000000..6d7114e2 --- /dev/null +++ b/pim/views/attribute_set.xml @@ -0,0 +1,31 @@ + + + + + Product Attribute Sets + attribute.set + form + tree,form + + + + + + + diff --git a/pim/views/pim_view.xml b/pim/views/pim_view.xml index 81c24eff..7f6d643f 100644 --- a/pim/views/pim_view.xml +++ b/pim/views/pim_view.xml @@ -59,9 +59,4 @@ parent="main_menu_variant_attribute" sequence="1" /> - - - tree,kanban,form - - diff --git a/pim/views/product_view.xml b/pim/views/product_view.xml new file mode 100644 index 00000000..1414665e --- /dev/null +++ b/pim/views/product_view.xml @@ -0,0 +1,35 @@ + + + + + pim.product.template.product.tree + product.template + + + + + + + + + + + + + + + tree,kanban,form + + + From e9c95328a3b20a6fb000ad40b93686975f866e06 Mon Sep 17 00:00:00 2001 From: shopinvader-git-bot Date: Thu, 11 Jun 2020 12:55:50 +0000 Subject: [PATCH 07/27] [UPD] README.rst --- pim/README.rst | 1 + pim/static/description/index.html | 1 + 2 files changed, 2 insertions(+) diff --git a/pim/README.rst b/pim/README.rst index eaa9c7bb..5e06d59f 100644 --- a/pim/README.rst +++ b/pim/README.rst @@ -66,6 +66,7 @@ Contributors * Sébastien BEAU * Clément Mombereau +* Cédric PIGEON Maintainers ~~~~~~~~~~~ diff --git a/pim/static/description/index.html b/pim/static/description/index.html index 06b66157..61a13d6c 100644 --- a/pim/static/description/index.html +++ b/pim/static/description/index.html @@ -419,6 +419,7 @@

    Contributors

    From 631f36855c2cd59ddb11dfabacb9e4784c6e2666 Mon Sep 17 00:00:00 2001 From: shopinvader-git-bot Date: Thu, 11 Jun 2020 12:55:50 +0000 Subject: [PATCH 08/27] pim 12.0.1.1.0 --- pim/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index 88c3672c..59dcb8d2 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -3,7 +3,7 @@ { "name": "Product Information Management", - "version": "12.0.1.0.0", + "version": "12.0.1.1.0", "license": "AGPL-3", "author": "Akretion", "website": "http://www.akretion.com/", From 6213461239e4297dea5452e3c354db661b2fab0d Mon Sep 17 00:00:00 2001 From: shopinvader-git-bot Date: Fri, 12 Jun 2020 07:50:42 +0000 Subject: [PATCH 09/27] [UPD] README.rst --- pim/README.rst | 6 +++--- pim/static/description/index.html | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pim/README.rst b/pim/README.rst index 5e06d59f..58fe0cf0 100644 --- a/pim/README.rst +++ b/pim/README.rst @@ -14,7 +14,7 @@ Product Information Management :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-shopinvader%2Fodoo--pim-lightgray.png?logo=github - :target: https://github.com/shopinvader/odoo-pim/tree/12.0/pim + :target: https://github.com/shopinvader/odoo-pim/tree/13.0/pim :alt: shopinvader/odoo-pim |badge1| |badge2| |badge3| @@ -49,7 +49,7 @@ 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 `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -71,6 +71,6 @@ Contributors Maintainers ~~~~~~~~~~~ -This module is part of the `shopinvader/odoo-pim `_ project on GitHub. +This module is part of the `shopinvader/odoo-pim `_ project on GitHub. You are welcome to contribute. diff --git a/pim/static/description/index.html b/pim/static/description/index.html index 61a13d6c..2cb2e034 100644 --- a/pim/static/description/index.html +++ b/pim/static/description/index.html @@ -367,7 +367,7 @@

    Product Information Management

    !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

    Beta License: AGPL-3 shopinvader/odoo-pim

    +

    Beta License: AGPL-3 shopinvader/odoo-pim

    A basic module for Product Information Management.

    The module itself doesn’t do anything. It only creates a new application menu “PIM” gathering native views about Products :

      @@ -403,7 +403,7 @@

      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.

      +feedback.

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

    @@ -424,7 +424,7 @@

    Contributors

    Maintainers

    -

    This module is part of the shopinvader/odoo-pim project on GitHub.

    +

    This module is part of the shopinvader/odoo-pim project on GitHub.

    You are welcome to contribute.

    From f3a3cf3cb5a3bf1f66e6676594c0ac985b7414f7 Mon Sep 17 00:00:00 2001 From: Denis Roussel Date: Fri, 12 Jun 2020 09:52:35 +0200 Subject: [PATCH 10/27] [13.0] Set modules to installable False --- pim/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index 59dcb8d2..a9b1d60f 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -18,6 +18,6 @@ "views/attribute_attribute.xml", ], "demo": [], - "installable": True, + "installable": False, "application": True, } From 8b6bef871e6b56e2ca6e059ca9a3115b2026d834 Mon Sep 17 00:00:00 2001 From: Denis Roussel Date: Fri, 12 Jun 2020 11:23:58 +0200 Subject: [PATCH 11/27] [13.0] Set modules version to 13 --- pim/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index a9b1d60f..ab245603 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -3,7 +3,7 @@ { "name": "Product Information Management", - "version": "12.0.1.1.0", + "version": "13.0.1.1.0", "license": "AGPL-3", "author": "Akretion", "website": "http://www.akretion.com/", From 495c182de990804e5c6fe48a8b9628ec02ebe3b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Pigeon?= Date: Thu, 18 Jun 2020 16:56:04 +0200 Subject: [PATCH 12/27] [10.0][FIX] do not replace odoo product defaut tree view by the pim view --- pim/__manifest__.py | 2 +- pim/views/pim_view.xml | 2 +- pim/views/product_view.xml | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index ab245603..25fe0d6f 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -11,8 +11,8 @@ "data": [ "data/ir_module_category_data.xml", "security/pim_security.xml", - "views/pim_view.xml", "views/product_view.xml", + "views/pim_view.xml", "views/attribute_set.xml", "views/attribute_group.xml", "views/attribute_attribute.xml", diff --git a/pim/views/pim_view.xml b/pim/views/pim_view.xml index 7f6d643f..17e95ab7 100644 --- a/pim/views/pim_view.xml +++ b/pim/views/pim_view.xml @@ -33,7 +33,7 @@ diff --git a/pim/views/product_view.xml b/pim/views/product_view.xml index 1414665e..d38dfae8 100644 --- a/pim/views/product_view.xml +++ b/pim/views/product_view.xml @@ -5,6 +5,7 @@ pim.product.template.product.tree product.template + 90 - + + Products + product.template tree,kanban,form From c20831e1cc053c4a0cf98f4ad208378919d58a03 Mon Sep 17 00:00:00 2001 From: Denis Roussel Date: Mon, 15 Jun 2020 09:42:20 +0200 Subject: [PATCH 13/27] [13.0][MIG] pim --- pim/__manifest__.py | 6 +++--- pim/readme/CONTRIBUTORS.rst | 1 + pim/views/attribute_attribute.xml | 1 - pim/views/attribute_group.xml | 1 - pim/views/attribute_set.xml | 1 - pim/views/pim_view.xml | 2 +- pim/views/product_view.xml | 4 ++-- 7 files changed, 7 insertions(+), 9 deletions(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index 25fe0d6f..4e4d90d5 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -3,10 +3,10 @@ { "name": "Product Information Management", - "version": "13.0.1.1.0", + "version": "13.0.1.0.0", "license": "AGPL-3", "author": "Akretion", - "website": "http://www.akretion.com/", + "website": "http://www.shopinvader.com", "depends": ["product", "product_attribute_set"], "data": [ "data/ir_module_category_data.xml", @@ -18,6 +18,6 @@ "views/attribute_attribute.xml", ], "demo": [], - "installable": False, + "installable": True, "application": True, } diff --git a/pim/readme/CONTRIBUTORS.rst b/pim/readme/CONTRIBUTORS.rst index 7edcf03e..0838b02d 100644 --- a/pim/readme/CONTRIBUTORS.rst +++ b/pim/readme/CONTRIBUTORS.rst @@ -1,3 +1,4 @@ * Sébastien BEAU * Clément Mombereau * Cédric PIGEON +* Denis Roussel diff --git a/pim/views/attribute_attribute.xml b/pim/views/attribute_attribute.xml index 7d6128d3..9c22244b 100644 --- a/pim/views/attribute_attribute.xml +++ b/pim/views/attribute_attribute.xml @@ -3,7 +3,6 @@ Product Attribute attribute.attribute - form tree,form Attribute Groups attribute.group - form tree,form Product Attribute Sets attribute.set - form tree,form diff --git a/pim/views/product_view.xml b/pim/views/product_view.xml index d38dfae8..16d4dce1 100644 --- a/pim/views/product_view.xml +++ b/pim/views/product_view.xml @@ -9,10 +9,10 @@ From 0a78d7659239abef73f9c661c6ec6da79e3b5bd3 Mon Sep 17 00:00:00 2001 From: shopinvader-git-bot Date: Fri, 25 Sep 2020 13:43:36 +0000 Subject: [PATCH 14/27] [UPD] README.rst --- pim/README.rst | 1 + pim/static/description/index.html | 1 + 2 files changed, 2 insertions(+) diff --git a/pim/README.rst b/pim/README.rst index 58fe0cf0..473778e2 100644 --- a/pim/README.rst +++ b/pim/README.rst @@ -67,6 +67,7 @@ Contributors * Sébastien BEAU * Clément Mombereau * Cédric PIGEON +* Denis Roussel Maintainers ~~~~~~~~~~~ diff --git a/pim/static/description/index.html b/pim/static/description/index.html index 2cb2e034..feb4ba32 100644 --- a/pim/static/description/index.html +++ b/pim/static/description/index.html @@ -420,6 +420,7 @@

    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>
  • From 1d0a9f67ecf12288e0a7a2795f862dd66a2283d0 Mon Sep 17 00:00:00 2001 From: Pierrick Brun Date: Thu, 18 Feb 2021 10:49:46 +0100 Subject: [PATCH 15/27] [MIG] make all modules uninstallable --- pim/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index 4e4d90d5..5b996baf 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -18,6 +18,6 @@ "views/attribute_attribute.xml", ], "demo": [], - "installable": True, + "installable": False, "application": True, } From 5df879b91d6229e2fd8cd18c53886068f4daefb8 Mon Sep 17 00:00:00 2001 From: Pierrick Brun Date: Thu, 18 Feb 2021 10:50:37 +0100 Subject: [PATCH 16/27] [MIG] update pre-commit conf from copier --- pim/__manifest__.py | 2 +- pim/security/pim_security.xml | 19 ++++++++++--------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index 5b996baf..9c84d22a 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -6,7 +6,7 @@ "version": "13.0.1.0.0", "license": "AGPL-3", "author": "Akretion", - "website": "http://www.shopinvader.com", + "website": "https://github.com/shopinvader/odoo-pim", "depends": ["product", "product_attribute_set"], "data": [ "data/ir_module_category_data.xml", diff --git a/pim/security/pim_security.xml b/pim/security/pim_security.xml index a23a0a0f..c037ba18 100644 --- a/pim/security/pim_security.xml +++ b/pim/security/pim_security.xml @@ -5,25 +5,26 @@ Reader - the user will have only the right to consult the products catalogue + + the user will have only the right to consult the products catalogue + User - the user will be able to modify products but will not be authorized to create attributes + + the user will be able to modify products but will not be authorized to + create attributes + Manager - the user will be able to modify products and create attributes + + the user will be able to modify products and create attributes + From 841944f6bc5532d04603d6687112dcfd5760f593 Mon Sep 17 00:00:00 2001 From: Pierrick Brun Date: Wed, 6 Jan 2021 11:33:28 +0100 Subject: [PATCH 17/27] [IMP] pim: black, isort, prettier --- pim/__manifest__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index 9c84d22a..b51a77de 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -3,7 +3,7 @@ { "name": "Product Information Management", - "version": "13.0.1.0.0", + "version": "14.0.1.0.0", "license": "AGPL-3", "author": "Akretion", "website": "https://github.com/shopinvader/odoo-pim", @@ -18,6 +18,6 @@ "views/attribute_attribute.xml", ], "demo": [], - "installable": False, + "installable": True, "application": True, } From 99997f63ef0a090ce5d5adaa1a5c9d2fec9b7335 Mon Sep 17 00:00:00 2001 From: Pierrick Brun Date: Mon, 11 Jan 2021 13:01:53 +0100 Subject: [PATCH 18/27] [MIG] 14.0 pim --- pim/__manifest__.py | 1 + pim/views/pim_view.xml | 7 ++++++- pim/views/product_attribute_value.xml | 12 ++++++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 pim/views/product_attribute_value.xml diff --git a/pim/__manifest__.py b/pim/__manifest__.py index b51a77de..500a8400 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -16,6 +16,7 @@ "views/attribute_set.xml", "views/attribute_group.xml", "views/attribute_attribute.xml", + "views/product_attribute_value.xml", ], "demo": [], "installable": True, diff --git a/pim/views/pim_view.xml b/pim/views/pim_view.xml index 5f74d845..5b076dae 100644 --- a/pim/views/pim_view.xml +++ b/pim/views/pim_view.xml @@ -2,6 +2,11 @@ + + Product Attribute Values + product.attribute.value + tree,form + diff --git a/pim/views/product_attribute_value.xml b/pim/views/product_attribute_value.xml new file mode 100644 index 00000000..27be96e9 --- /dev/null +++ b/pim/views/product_attribute_value.xml @@ -0,0 +1,12 @@ + + + + product.attribute.value + + + + + + + + From c850fe71e445aa076692726a3600ad89b685081d Mon Sep 17 00:00:00 2001 From: shopinvader-git-bot Date: Thu, 4 Mar 2021 17:09:25 +0000 Subject: [PATCH 19/27] [UPD] README.rst --- pim/README.rst | 6 +++--- pim/static/description/index.html | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pim/README.rst b/pim/README.rst index 473778e2..68b397c3 100644 --- a/pim/README.rst +++ b/pim/README.rst @@ -14,7 +14,7 @@ Product Information Management :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-shopinvader%2Fodoo--pim-lightgray.png?logo=github - :target: https://github.com/shopinvader/odoo-pim/tree/13.0/pim + :target: https://github.com/shopinvader/odoo-pim/tree/14.0/pim :alt: shopinvader/odoo-pim |badge1| |badge2| |badge3| @@ -49,7 +49,7 @@ 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 `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -72,6 +72,6 @@ Contributors Maintainers ~~~~~~~~~~~ -This module is part of the `shopinvader/odoo-pim `_ project on GitHub. +This module is part of the `shopinvader/odoo-pim `_ project on GitHub. You are welcome to contribute. diff --git a/pim/static/description/index.html b/pim/static/description/index.html index feb4ba32..56a3d72f 100644 --- a/pim/static/description/index.html +++ b/pim/static/description/index.html @@ -367,7 +367,7 @@

    Product Information Management

    !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

    Beta License: AGPL-3 shopinvader/odoo-pim

    +

    Beta License: AGPL-3 shopinvader/odoo-pim

    A basic module for Product Information Management.

    The module itself doesn’t do anything. It only creates a new application menu “PIM” gathering native views about Products :

      @@ -403,7 +403,7 @@

      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.

      +feedback.

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

    @@ -425,7 +425,7 @@

    Contributors

    Maintainers

    -

    This module is part of the shopinvader/odoo-pim project on GitHub.

    +

    This module is part of the shopinvader/odoo-pim project on GitHub.

    You are welcome to contribute.

    From d7c0dbf20fda5072172e50645be3e128a6b8d0b4 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 17 Mar 2021 04:37:28 +0000 Subject: [PATCH 20/27] [UPD] README.rst --- pim/README.rst | 29 +++++++++++++++++++++-------- pim/static/description/index.html | 15 ++++++++++----- 2 files changed, 31 insertions(+), 13 deletions(-) diff --git a/pim/README.rst b/pim/README.rst index 68b397c3..f00b769c 100644 --- a/pim/README.rst +++ b/pim/README.rst @@ -13,11 +13,14 @@ Product Information Management .. |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-shopinvader%2Fodoo--pim-lightgray.png?logo=github - :target: https://github.com/shopinvader/odoo-pim/tree/14.0/pim - :alt: shopinvader/odoo-pim +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fodoo--pim-lightgray.png?logo=github + :target: https://github.com/OCA/odoo-pim/tree/14.0/pim + :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-14-0/odoo-pim-14-0-pim + :alt: Translate me on Weblate -|badge1| |badge2| |badge3| +|badge1| |badge2| |badge3| |badge4| A basic module for Product Information Management. @@ -46,10 +49,10 @@ Define your user **PIM access rights** in the Application Accesses as a Manager, Bug Tracker =========== -Bugs are tracked on `GitHub Issues `_. +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 `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -72,6 +75,16 @@ Contributors Maintainers ~~~~~~~~~~~ -This module is part of the `shopinvader/odoo-pim `_ project on GitHub. +This module is maintained by the OCA. -You are welcome to contribute. +.. 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 `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/pim/static/description/index.html b/pim/static/description/index.html index 56a3d72f..c72a261d 100644 --- a/pim/static/description/index.html +++ b/pim/static/description/index.html @@ -367,7 +367,7 @@

    Product Information Management

    !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

    Beta License: AGPL-3 shopinvader/odoo-pim

    +

    Beta License: AGPL-3 OCA/odoo-pim Translate me on Weblate

    A basic module for Product Information Management.

    The module itself doesn’t do anything. It only creates a new application menu “PIM” gathering native views about Products :

      @@ -400,10 +400,10 @@

      Configuration

      Bug Tracker

      -

      Bugs are tracked on GitHub Issues. +

      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.

      +feedback.

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

      @@ -425,8 +425,13 @@

      Contributors

      Maintainers

      -

      This module is part of the shopinvader/odoo-pim project on GitHub.

      -

      You are welcome to contribute.

      +

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

      +

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

      From d553b328779183dae9ee3633db58704ef433fc38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Sat, 15 May 2021 11:23:34 +0200 Subject: [PATCH 21/27] Apply dotfiles --- pim/__manifest__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index 500a8400..e1ec5e98 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -5,8 +5,8 @@ "name": "Product Information Management", "version": "14.0.1.0.0", "license": "AGPL-3", - "author": "Akretion", - "website": "https://github.com/shopinvader/odoo-pim", + "author": "Akretion,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/odoo-pim", "depends": ["product", "product_attribute_set"], "data": [ "data/ir_module_category_data.xml", From a09ef29f8fe88e44745f461ff360b4ada4594dee Mon Sep 17 00:00:00 2001 From: oca-ci Date: Sat, 15 May 2021 10:31:24 +0000 Subject: [PATCH 22/27] [UPD] Update pim.pot --- pim/i18n/pim.pot | 127 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 pim/i18n/pim.pot diff --git a/pim/i18n/pim.pot b/pim/i18n/pim.pot new file mode 100644 index 00000000..209f900a --- /dev/null +++ b/pim/i18n/pim.pot @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pim +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \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: pim +#: model:res.groups,comment:pim.group_pim_manager +msgid "" +"\n" +" the user will be able to modify products and create attributes\n" +" " +msgstr "" + +#. module: pim +#: model:res.groups,comment:pim.group_pim_user +msgid "" +"\n" +" the user will be able to modify products but will not be authorized to\n" +" create attributes\n" +" " +msgstr "" + +#. module: pim +#: model:res.groups,comment:pim.group_pim_reader +msgid "" +"\n" +" the user will have only the right to consult the products catalogue\n" +" " +msgstr "" + +#. module: pim +#: model:ir.actions.act_window,name:pim.attribute_group_form_action +#: model:ir.ui.menu,name:pim.menu_attribute_group_action +msgid "Attribute Groups" +msgstr "" + +#. module: pim +#: model:ir.ui.menu,name:pim.main_menu_attribute +msgid "Attributes" +msgstr "" + +#. module: pim +#: model:ir.ui.menu,name:pim.menu_variant_attribute_value +msgid "Attributes Values" +msgstr "" + +#. module: pim +#: model:ir.ui.menu,name:pim.main_menu_category +msgid "Categories" +msgstr "" + +#. module: pim +#: model:ir.module.category,description:pim.module_category_pim +msgid "Manage your products catalogue easily" +msgstr "" + +#. module: pim +#: model:res.groups,name:pim.group_pim_manager +msgid "Manager" +msgstr "" + +#. module: pim +#: model:ir.module.category,name:pim.module_category_pim +#: model:ir.ui.menu,name:pim.root_menu_pim +msgid "PIM" +msgstr "" + +#. module: pim +#: model_terms:ir.ui.view,arch_db:pim.pim_product_template_tree_view +msgid "Product" +msgstr "" + +#. module: pim +#: model:ir.actions.act_window,name:pim.attribute_attribute_form_action +#: model:ir.ui.menu,name:pim.menu_attribute_attribute_action +msgid "Product Attribute" +msgstr "" + +#. module: pim +#: model:ir.actions.act_window,name:pim.attribute_set_form_action +#: model:ir.ui.menu,name:pim.menu_attribute_set_action +msgid "Product Attribute Sets" +msgstr "" + +#. module: pim +#: model:ir.actions.act_window,name:pim.product_attribute_value_action +#: model_terms:ir.ui.view,arch_db:pim.product_attribute_value_view_form +msgid "Product Attribute Values" +msgstr "" + +#. module: pim +#: model:ir.ui.menu,name:pim.menu_product_product +msgid "Product Variants" +msgstr "" + +#. module: pim +#: model:ir.actions.act_window,name:pim.product_template_action +#: model:ir.ui.menu,name:pim.main_menu_product +#: model:ir.ui.menu,name:pim.menu_product_template +msgid "Products" +msgstr "" + +#. module: pim +#: model:res.groups,name:pim.group_pim_reader +msgid "Reader" +msgstr "" + +#. module: pim +#: model:res.groups,name:pim.group_pim_user +msgid "User" +msgstr "" + +#. module: pim +#: model:ir.ui.menu,name:pim.main_menu_variant_attribute +#: model:ir.ui.menu,name:pim.menu_variant_attribute +msgid "Variants Attributes" +msgstr "" From 775a775b083db132c27c65bb19629541217bb1ca Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Sat, 15 May 2021 10:33:42 +0000 Subject: [PATCH 23/27] pim 14.0.1.0.1 --- pim/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index e1ec5e98..fc866838 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -3,7 +3,7 @@ { "name": "Product Information Management", - "version": "14.0.1.0.0", + "version": "14.0.1.0.1", "license": "AGPL-3", "author": "Akretion,Odoo Community Association (OCA)", "website": "https://github.com/OCA/odoo-pim", From fd0ce71b558b5227e49cbfbf7635c92184b8026e Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Sat, 15 May 2021 11:32:33 +0000 Subject: [PATCH 24/27] [UPD] README.rst --- pim/README.rst | 5 ++++- pim/static/description/index.html | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pim/README.rst b/pim/README.rst index f00b769c..9d3c438a 100644 --- a/pim/README.rst +++ b/pim/README.rst @@ -19,8 +19,11 @@ Product Information Management .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png :target: https://translation.odoo-community.org/projects/odoo-pim-14-0/odoo-pim-14-0-pim :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/295/14.0 + :alt: Try me on Runbot -|badge1| |badge2| |badge3| |badge4| +|badge1| |badge2| |badge3| |badge4| |badge5| A basic module for Product Information Management. diff --git a/pim/static/description/index.html b/pim/static/description/index.html index c72a261d..ad71c1de 100644 --- a/pim/static/description/index.html +++ b/pim/static/description/index.html @@ -367,7 +367,7 @@

      Product Information Management

      !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

      Beta License: AGPL-3 OCA/odoo-pim Translate me on Weblate

      +

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

      A basic module for Product Information Management.

      The module itself doesn’t do anything. It only creates a new application menu “PIM” gathering native views about Products :

        From d02621722a23792a31f20a9fee95ee0f85ea7041 Mon Sep 17 00:00:00 2001 From: xavier-bouquiaux Date: Fri, 16 Apr 2021 09:03:30 +0200 Subject: [PATCH 25/27] [14.0][MIG] product_attribute_set_completeness --- pim/__manifest__.py | 6 +++++- pim/views/product_view.xml | 17 +++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index fc866838..9052fec9 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -7,7 +7,11 @@ "license": "AGPL-3", "author": "Akretion,Odoo Community Association (OCA)", "website": "https://github.com/OCA/odoo-pim", - "depends": ["product", "product_attribute_set"], + "depends": [ + "product", + "product_attribute_set", + "product_attribute_set_completeness", + ], "data": [ "data/ir_module_category_data.xml", "security/pim_security.xml", diff --git a/pim/views/product_view.xml b/pim/views/product_view.xml index 16d4dce1..805c5be2 100644 --- a/pim/views/product_view.xml +++ b/pim/views/product_view.xml @@ -25,9 +25,26 @@ groups="uom.group_uom" /> + + + Products From e6d0b71498a301ffc032821590a517eb27b4b8e2 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 6 Oct 2021 13:05:31 +0000 Subject: [PATCH 26/27] pim 14.0.1.0.2 --- pim/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index 9052fec9..123082f5 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -3,7 +3,7 @@ { "name": "Product Information Management", - "version": "14.0.1.0.1", + "version": "14.0.1.0.2", "license": "AGPL-3", "author": "Akretion,Odoo Community Association (OCA)", "website": "https://github.com/OCA/odoo-pim", From a87abd9120bf6a21342edda4fda837c699adc82c Mon Sep 17 00:00:00 2001 From: Kevin Khao Date: Wed, 30 Nov 2022 06:57:10 +0200 Subject: [PATCH 27/27] [MIG] pim: Migration to 15.0 --- pim/__manifest__.py | 3 +-- pim/readme/CONTRIBUTORS.rst | 1 + pim/views/product_attribute_value.xml | 2 +- pim/views/product_view.xml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pim/__manifest__.py b/pim/__manifest__.py index 123082f5..130d9ad2 100644 --- a/pim/__manifest__.py +++ b/pim/__manifest__.py @@ -3,13 +3,12 @@ { "name": "Product Information Management", - "version": "14.0.1.0.2", + "version": "15.0.1.0.0", "license": "AGPL-3", "author": "Akretion,Odoo Community Association (OCA)", "website": "https://github.com/OCA/odoo-pim", "depends": [ "product", - "product_attribute_set", "product_attribute_set_completeness", ], "data": [ diff --git a/pim/readme/CONTRIBUTORS.rst b/pim/readme/CONTRIBUTORS.rst index 0838b02d..64babffb 100644 --- a/pim/readme/CONTRIBUTORS.rst +++ b/pim/readme/CONTRIBUTORS.rst @@ -2,3 +2,4 @@ * Clément Mombereau * Cédric PIGEON * Denis Roussel +* Kevin Khao diff --git a/pim/views/product_attribute_value.xml b/pim/views/product_attribute_value.xml index 27be96e9..6c97952b 100644 --- a/pim/views/product_attribute_value.xml +++ b/pim/views/product_attribute_value.xml @@ -3,7 +3,7 @@ product.attribute.value - + diff --git a/pim/views/product_view.xml b/pim/views/product_view.xml index 805c5be2..cd50554a 100644 --- a/pim/views/product_view.xml +++ b/pim/views/product_view.xml @@ -7,7 +7,7 @@ product.template 90 - +