Merge lp:~vauxoo/addons-vauxoo/7.0-project_issue_conf-dev_luis into lp:addons-vauxoo/7.0

Proposed by Luis Torres - http://www.vauxoo.com
Status: Merged
Merged at revision: 1081
Proposed branch: lp:~vauxoo/addons-vauxoo/7.0-project_issue_conf-dev_luis
Merge into: lp:addons-vauxoo/7.0
Diff against target: 235 lines (+197/-0)
7 files modified
project_issue_conf/__init__.py (+25/-0)
project_issue_conf/__openerp__.py (+52/-0)
project_issue_conf/data/mail_server_data.xml (+33/-0)
project_issue_conf/demo/project_issue_conf_demo.xml (+24/-0)
project_issue_conf/i18n/es.po (+21/-0)
project_issue_conf/i18n/es_MX.po (+21/-0)
project_issue_conf/i18n/es_VE.po (+21/-0)
To merge this branch: bzr merge lp:~vauxoo/addons-vauxoo/7.0-project_issue_conf-dev_luis
Reviewer Review Type Date Requested Status
Julio Serna-http://www.vauxoo.com Pending
Review via email: mp+226751@code.launchpad.net

Description of the change

Se agrego data para los proyect_issues

To post a comment you must log in.
1080. By Luis Torres - http://www.vauxoo.com

[IMP][project_issue_conf]Added demo for ir.mail_server and email callback

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory 'project_issue_conf'
2=== added file 'project_issue_conf/__init__.py'
3--- project_issue_conf/__init__.py 1970-01-01 00:00:00 +0000
4+++ project_issue_conf/__init__.py 2014-07-15 18:21:41 +0000
5@@ -0,0 +1,25 @@
6+# -*- encoding: utf-8 -*-
7+###########################################################################
8+# Module Writen to OpenERP, Open Source Management Solution
9+#
10+# Copyright (c) 2014 Vauxoo - http://www.vauxoo.com
11+# All Rights Reserved.
12+# info@vauxoo.com
13+############################################################################
14+# Coded by: Luis Torres (luis_t@vauxoo.com)
15+############################################################################
16+#
17+# This program is free software: you can redistribute it and/or modify
18+# it under the terms of the GNU Affero General Public License as
19+# published by the Free Software Foundation, either version 3 of the
20+# License, or (at your option) any later version.
21+#
22+# This program is distributed in the hope that it will be useful,
23+# but WITHOUT ANY WARRANTY; without even the implied warranty of
24+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25+# GNU Affero General Public License for more details.
26+#
27+# You should have received a copy of the GNU Affero General Public License
28+# along with this program. If not, see <http://www.gnu.org/licenses/>.
29+#
30+##############################################################################
31
32=== added file 'project_issue_conf/__openerp__.py'
33--- project_issue_conf/__openerp__.py 1970-01-01 00:00:00 +0000
34+++ project_issue_conf/__openerp__.py 2014-07-15 18:21:41 +0000
35@@ -0,0 +1,52 @@
36+# -*- encoding: utf-8 -*-
37+###########################################################################
38+# Module Writen to OpenERP, Open Source Management Solution
39+#
40+# Copyright (c) 2014 Vauxoo - http://www.vauxoo.com
41+# All Rights Reserved.
42+# info@vauxoo.com
43+############################################################################
44+# Coded by: Luis Torres (luis_t@vauxoo.com)
45+############################################################################
46+#
47+# This program is free software: you can redistribute it and/or modify
48+# it under the terms of the GNU Affero General Public License as
49+# published by the Free Software Foundation, either version 3 of the
50+# License, or (at your option) any later version.
51+#
52+# This program is distributed in the hope that it will be useful,
53+# but WITHOUT ANY WARRANTY; without even the implied warranty of
54+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
55+# GNU Affero General Public License for more details.
56+#
57+# You should have received a copy of the GNU Affero General Public License
58+# along with this program. If not, see <http://www.gnu.org/licenses/>.
59+#
60+##############################################################################
61+{
62+ "name" : "Project Issue Conf",
63+ "version" : "1.0",
64+ "author" : "Vauxoo",
65+ "category" : "Generic",
66+ "description" : """
67+
68+ This module add data to configurate incoming mail server & outgoing mail server, & create an
69+ server action to notificate when is created a new project issue.
70+
71+ """,
72+ "website" : "http://www.vauxoo.com/",
73+ "license" : "AGPL-3",
74+ "depends" : [
75+ "fetchmail",
76+ "project_issue",
77+ ],
78+ "demo" : [
79+ "demo/project_issue_conf_demo.xml",
80+ ],
81+ "data" : [
82+ "data/mail_server_data.xml"
83+ ],
84+ "test": [],
85+ "installable" : True,
86+ "active" : False,
87+}
88
89=== added directory 'project_issue_conf/data'
90=== added file 'project_issue_conf/data/mail_server_data.xml'
91--- project_issue_conf/data/mail_server_data.xml 1970-01-01 00:00:00 +0000
92+++ project_issue_conf/data/mail_server_data.xml 2014-07-15 18:21:41 +0000
93@@ -0,0 +1,33 @@
94+<?xml version="1.0" encoding="UTF-8"?>
95+<openerp>
96+ <data noupdate="1">
97+ <!--Incoming mail server-->
98+ <record model="fetchmail.server" id="incoming_mail_server1">
99+ <field name="name">Issues - Reception of Issues</field>
100+ <field name="type">imap</field>
101+ <field name="server">imap.googlemail.com</field>
102+ <field name="port">993</field>
103+ <field name="is_ssl">1</field>
104+ <field name="user">soporte@vauxoo.com</field>
105+ <field name="object_id" search="[('model','=','project.issue')]" model="ir.model"/>
106+ </record>
107+
108+ <!--Filter-->
109+ <record model="ir.filters" id="ir_filter_issue_1">
110+ <field name="name">Project issue</field>
111+ <field name="model_id">project.issue</field>
112+ <field name="domain">[('user_id', '=', False),('project_id','=',False)]</field>
113+ </record>
114+
115+ <!--Automated_action-->
116+ <record model="base.action.rule" id="automated_action1">
117+ <field name="name">Issues - Assigns followers and responsible</field>
118+ <field name="model_id" search="[('model','=','project.issue')]" model="ir.model"/>
119+ <field name="filter_id" ref="ir_filter_issue_1"/>
120+ <field name="trg_date_id" search="[('name','=','create_date'),('model', '=', 'project.issue')]" model="ir.model.fields"/>
121+ <field name="trg_date_range">1</field>
122+ <field name="trg_date_range_type">minutes</field>
123+ </record>
124+
125+ </data>
126+</openerp>
127
128=== added directory 'project_issue_conf/demo'
129=== added file 'project_issue_conf/demo/project_issue_conf_demo.xml'
130--- project_issue_conf/demo/project_issue_conf_demo.xml 1970-01-01 00:00:00 +0000
131+++ project_issue_conf/demo/project_issue_conf_demo.xml 2014-07-15 18:21:41 +0000
132@@ -0,0 +1,24 @@
133+<?xml version="1.0" ?>
134+<openerp>
135+ <data noupdate="1">
136+
137+ <!--Outgoing mail server-->
138+ <record model="ir.mail_server" id="outgoing_mail_server1">
139+ <field name="name">Suport</field>
140+ <field name="smtp_host">smtp.gmail.com</field>
141+ <field name="smtp_port">25</field>
142+ <field name="smtp_encryption">starttls</field>
143+ </record>
144+
145+ <!--Callback mail server-->
146+ <record model="fetchmail.server" id="callback_mail_server1">
147+ <field name="name">Issues - Reception of Issues</field>
148+ <field name="type">imap</field>
149+ <field name="server">imap.googlemail.com</field>
150+ <field name="port">993</field>
151+ <field name="is_ssl">1</field>
152+ <field name="user">callback@vauxoo.com</field>
153+ </record>
154+
155+ </data>
156+</openerp>
157
158=== added directory 'project_issue_conf/i18n'
159=== added file 'project_issue_conf/i18n/es.po'
160--- project_issue_conf/i18n/es.po 1970-01-01 00:00:00 +0000
161+++ project_issue_conf/i18n/es.po 2014-07-15 18:21:41 +0000
162@@ -0,0 +1,21 @@
163+# Translation of OpenERP Server.
164+# This file contains the translation of the following modules:
165+#
166+msgid ""
167+msgstr ""
168+"Project-Id-Version: OpenERP Server 7.0\n"
169+"Report-Msgid-Bugs-To: \n"
170+"POT-Creation-Date: 2014-07-14 21:59+0000\n"
171+"PO-Revision-Date: 2014-07-14 21:59+0000\n"
172+"Last-Translator: <>\n"
173+"Language-Team: \n"
174+"MIME-Version: 1.0\n"
175+"Content-Type: text/plain; charset=UTF-8\n"
176+"Content-Transfer-Encoding: \n"
177+"Plural-Forms: \n"
178+
179+#. module: project_issue_conf
180+#: model:ir.filters,name:project_issue_conf.ir_filter_issue_1
181+msgid "Project issue"
182+msgstr "Incidencia proyecto"
183+
184
185=== added file 'project_issue_conf/i18n/es_MX.po'
186--- project_issue_conf/i18n/es_MX.po 1970-01-01 00:00:00 +0000
187+++ project_issue_conf/i18n/es_MX.po 2014-07-15 18:21:41 +0000
188@@ -0,0 +1,21 @@
189+# Translation of OpenERP Server.
190+# This file contains the translation of the following modules:
191+#
192+msgid ""
193+msgstr ""
194+"Project-Id-Version: OpenERP Server 7.0\n"
195+"Report-Msgid-Bugs-To: \n"
196+"POT-Creation-Date: 2014-07-14 21:59+0000\n"
197+"PO-Revision-Date: 2014-07-14 21:59+0000\n"
198+"Last-Translator: <>\n"
199+"Language-Team: \n"
200+"MIME-Version: 1.0\n"
201+"Content-Type: text/plain; charset=UTF-8\n"
202+"Content-Transfer-Encoding: \n"
203+"Plural-Forms: \n"
204+
205+#. module: project_issue_conf
206+#: model:ir.filters,name:project_issue_conf.ir_filter_issue_1
207+msgid "Project issue"
208+msgstr ""
209+
210
211=== added file 'project_issue_conf/i18n/es_VE.po'
212--- project_issue_conf/i18n/es_VE.po 1970-01-01 00:00:00 +0000
213+++ project_issue_conf/i18n/es_VE.po 2014-07-15 18:21:41 +0000
214@@ -0,0 +1,21 @@
215+# Translation of OpenERP Server.
216+# This file contains the translation of the following modules:
217+#
218+msgid ""
219+msgstr ""
220+"Project-Id-Version: OpenERP Server 7.0\n"
221+"Report-Msgid-Bugs-To: \n"
222+"POT-Creation-Date: 2014-07-14 21:59+0000\n"
223+"PO-Revision-Date: 2014-07-14 21:59+0000\n"
224+"Last-Translator: <>\n"
225+"Language-Team: \n"
226+"MIME-Version: 1.0\n"
227+"Content-Type: text/plain; charset=UTF-8\n"
228+"Content-Transfer-Encoding: \n"
229+"Plural-Forms: \n"
230+
231+#. module: project_issue_conf
232+#: model:ir.filters,name:project_issue_conf.ir_filter_issue_1
233+msgid "Project issue"
234+msgstr ""
235+