From 991eee798ef14a029503afe7f2c09e03c314e205 Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Thu, 10 Sep 2015 16:50:16 +0200 Subject: [PATCH] Create empty addons --- partner_revision/README.rst | 15 +++++++++++++++ partner_revision/__init__.py | 1 + partner_revision/__openerp__.py | 34 +++++++++++++++++++++++++++++++++ 3 files changed, 50 insertions(+) create mode 100644 partner_revision/README.rst create mode 100644 partner_revision/__init__.py create mode 100644 partner_revision/__openerp__.py diff --git a/partner_revision/README.rst b/partner_revision/README.rst new file mode 100644 index 000000000..9339e1ae2 --- /dev/null +++ b/partner_revision/README.rst @@ -0,0 +1,15 @@ +Partner Revisions +================= + +* Modèle de données et vues : création de la base du module ; création des + modèles sans logique et de leurs vues ; création d’un champ fonction pour + l’affichage des valeurs afin de pouvoir afficher les champs relation comme il + faut (“name” de la relation au lieu de l’id.) → le champ “backend_id” devra + être un champ de type “reference” car il peut être lié à plusieurs types de + backend différents ; +* Logique : gestion des états des entrées du journal ; application manuelle des + changements ; application automatique des entrées selon la configuration du + comportement par défaut ; ne pas appliquer automatiquement de changements si + une entrée plus récente existe (dans le cas de création d’entrée antidatée) ; + création d’entrée “validée” lors de saisie manuelle sur les partenaires ; + écriture de tests unitaires ; diff --git a/partner_revision/__init__.py b/partner_revision/__init__.py new file mode 100644 index 000000000..40a96afc6 --- /dev/null +++ b/partner_revision/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/partner_revision/__openerp__.py b/partner_revision/__openerp__.py new file mode 100644 index 000000000..dab47e0d4 --- /dev/null +++ b/partner_revision/__openerp__.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +# +# +# Authors: Guewen Baconnier +# Copyright 2015 Camptocamp SA +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +# + +{'name': 'Partner Revisions', + 'version': '1.0', + 'author': 'Camptocamp', + 'license': 'AGPL-3', + 'category': 'Sales Management', + 'depends': ['base', + ], + 'website': 'http://www.camptocamp.com', + 'data': [], + 'test': [], + 'installable': True, + 'auto_install': False, + }