From 44fc0f6855eab762350c66adfb3d1d2bc0384d58 Mon Sep 17 00:00:00 2001 From: Fabien Meghazi Date: Wed, 26 Oct 2011 23:11:23 +0200 Subject: [PATCH] [ADD] Add pad_project module. (Adds a PAD button in all project kanban views) bzr revid: fme@openerp.com-20111026211123-m4tjc4xl35m2pfnu --- addons/pad_project/__init__.py | 24 +++++++++++++ addons/pad_project/__openerp__.py | 40 ++++++++++++++++++++++ addons/pad_project/models/__init__.py | 24 +++++++++++++ addons/pad_project/models/project_task.py | 17 +++++++++ addons/pad_project/models/project_task.xml | 17 +++++++++ 5 files changed, 122 insertions(+) create mode 100644 addons/pad_project/__init__.py create mode 100644 addons/pad_project/__openerp__.py create mode 100644 addons/pad_project/models/__init__.py create mode 100644 addons/pad_project/models/project_task.py create mode 100644 addons/pad_project/models/project_task.xml diff --git a/addons/pad_project/__init__.py b/addons/pad_project/__init__.py new file mode 100644 index 00000000000..d6bf9f9551c --- /dev/null +++ b/addons/pad_project/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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 . +# +############################################################################## + +import models + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/pad_project/__openerp__.py b/addons/pad_project/__openerp__.py new file mode 100644 index 00000000000..a9ec6282ab7 --- /dev/null +++ b/addons/pad_project/__openerp__.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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': 'Project PAD', + 'version': '1.0', + 'category': 'Hidden/Link', + 'complexity': "easy", + 'description': """ +This module adds a PAD in all project kanban views +================================================== + """, + 'author': 'OpenERP SA', + 'website': 'http://www.openerp.com', + 'depends': ['project', 'pad'], + 'init_xml': [], + 'update_xml': ['models/project_task.xml'], + 'demo_xml': [], + 'installable': True, + 'active': False, +} +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/pad_project/models/__init__.py b/addons/pad_project/models/__init__.py new file mode 100644 index 00000000000..098de31a5a4 --- /dev/null +++ b/addons/pad_project/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# 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 . +# +############################################################################## + +import project_task + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/pad_project/models/project_task.py b/addons/pad_project/models/project_task.py new file mode 100644 index 00000000000..c215aed1325 --- /dev/null +++ b/addons/pad_project/models/project_task.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +from tools.translate import _ +from osv import fields, osv + +class task(osv.osv): + _inherit = "project.task" + + def pad_get(self, cr, uid, ids, context=None): + """Get pad action + """ + url = self.pool.get("ir.attachment").pad_get(cr, uid, self._name, ids[0]) + return { + 'type': 'ir.actions.act_url', + 'url': url + } + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/pad_project/models/project_task.xml b/addons/pad_project/models/project_task.xml new file mode 100644 index 00000000000..de944b603b5 --- /dev/null +++ b/addons/pad_project/models/project_task.xml @@ -0,0 +1,17 @@ + + + + project.task.kanban.pad + project.task + kanban + + + + + + + + + + +