Merge lp:~savoirfairelinux-openerp/openerp-hr/resume into lp:openerp-hr/6.1

Status: Merged
Merged at revision: 307
Proposed branch: lp:~savoirfairelinux-openerp/openerp-hr/resume
Merge into: lp:openerp-hr/6.1
Diff against target: 524 lines (+472/-0)
10 files modified
hr_resume/__init__.py (+25/-0)
hr_resume/__openerp__.py (+55/-0)
hr_resume/hr_resume.py (+31/-0)
hr_resume/hr_resume_view.xml (+18/-0)
hr_resume/i18n/fr.po (+79/-0)
hr_resume/i18n/hr_resume.pot (+79/-0)
hr_resume/report/__init__.py (+24/-0)
hr_resume/report/report_resume.py (+49/-0)
hr_resume/report/report_resume.rml (+99/-0)
hr_resume/report/report_resume.xml (+13/-0)
To merge this branch: bzr merge lp:~savoirfairelinux-openerp/openerp-hr/resume
Reviewer Review Type Date Requested Status
Joël Grand-Guillaume @ camptocamp code review, no tests Approve
Omar (Pexego) code review Approve
Maxime Chambreuil (http://www.savoirfairelinux.com) code review Approve
Review via email: mp+194927@code.launchpad.net

Description of the change

[ADD] add hr_resume module.It inherits the emloyee view form and adds a report printing resume

To post a comment you must log in.
Revision history for this message
Maxime Chambreuil (http://www.savoirfairelinux.com) (max3903) wrote :

Diff is empty.

review: Needs Fixing
307. By EL HADJI DEM <email address hidden>

[ADD] adds hr_resume module

308. By EL HADJI DEM <email address hidden>

[IMP] add pot file

Revision history for this message
Maxime Chambreuil (http://www.savoirfairelinux.com) (max3903) :
review: Approve (code review)
Revision history for this message
Omar (Pexego) (omar7r) wrote :

LGTM

review: Approve (code review)
309. By El Hadji Dem (http://www.savoirfairelinux.com)

[IMP] change report, pep8

Revision history for this message
Joël Grand-Guillaume @ camptocamp (jgrandguillaume-c2c) wrote :

Hi,

Thanks for the contrib. Would have been great to use "from . import XY" at line 27 and 28. But otherwise good. Don't want to block that little one for that.

Thanks

review: Approve (code review, no tests)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added directory 'hr_resume'
=== added file 'hr_resume/__init__.py'
--- hr_resume/__init__.py 1970-01-01 00:00:00 +0000
+++ hr_resume/__init__.py 2013-12-18 17:59:30 +0000
@@ -0,0 +1,25 @@
1# -*- encoding: utf-8 -*-
2###############################################################################
3#
4# OpenERP, Open Source Management Solution
5# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Affero General Public License as
9# published by the Free Software Foundation, either version 3 of the
10# License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Affero General Public License for more details.
16#
17# You should have received a copy of the GNU Affero General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19#
20###############################################################################
21
22import hr_resume
23import report
24
25# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
026
=== added file 'hr_resume/__openerp__.py'
--- hr_resume/__openerp__.py 1970-01-01 00:00:00 +0000
+++ hr_resume/__openerp__.py 2013-12-18 17:59:30 +0000
@@ -0,0 +1,55 @@
1# -*- encoding: utf-8 -*-
2###############################################################################
3#
4# OpenERP, Open Source Management Solution
5# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Affero General Public License as
9# published by the Free Software Foundation, either version 3 of the
10# License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Affero General Public License for more details.
16#
17# You should have received a copy of the GNU Affero General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19#
20###############################################################################
21
22{
23 "name": "Resume Management",
24 "version": "0.1",
25 "author": "Savoir-faire Linux",
26 "maintainer": "Savoir-faire Linux",
27 "website": "http://www.savoirfairelinux.com",
28 "category": "Human Resources",
29 "description": """
30Resume Management
31=================
32
33This module allows you to manage your employee resumes.
34
35Contributors
36------------
37* El Hadji DEM (elhadji.dem@savoirfairelinux.com)
38""",
39
40 "depends": [
41 "hr_experience",
42 "hr_skill",
43 "hr_language",
44 ],
45 'data': ['hr_resume_view.xml',
46 'report/report_resume.xml',
47 ],
48 'external_dependencies': {},
49 "demo": [],
50 "test": [],
51 "installable": True,
52 "active": False,
53}
54
55# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
056
=== added file 'hr_resume/hr_resume.py'
--- hr_resume/hr_resume.py 1970-01-01 00:00:00 +0000
+++ hr_resume/hr_resume.py 2013-12-18 17:59:30 +0000
@@ -0,0 +1,31 @@
1# -*- encoding: utf-8 -*-
2###############################################################################
3#
4# OpenERP, Open Source Management Solution
5# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Affero General Public License as
9# published by the Free Software Foundation, either version 3 of the
10# License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Affero General Public License for more details.
16#
17# You should have received a copy of the GNU Affero General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19#
20###############################################################################
21
22from openerp.osv import fields, orm
23
24
25class hr_employee(orm.Model):
26 _inherit = 'hr.employee'
27 _columns = {
28 'biography': fields.text('Biography'),
29 }
30
31# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
032
=== added file 'hr_resume/hr_resume_view.xml'
--- hr_resume/hr_resume_view.xml 1970-01-01 00:00:00 +0000
+++ hr_resume/hr_resume_view.xml 2013-12-18 17:59:30 +0000
@@ -0,0 +1,18 @@
1<openerp>
2 <data>
3 <!-- inherit Employee -->
4 <record model="ir.ui.view" id="view_employee_form">
5 <field name="name">hr.resume.employee.form</field>
6 <field name="model">hr.employee</field>
7 <field name="inherit_id" ref="hr.view_employee_form"/>
8 <field name="type">form</field>
9 <field name="arch" type="xml">
10 <notebook position="inside">
11 <page string="Biography">
12 <field name="biography" nolabel="1" colspan="4"/>
13 </page>
14 </notebook>
15 </field>
16 </record>
17 </data>
18</openerp>
019
=== added directory 'hr_resume/i18n'
=== added file 'hr_resume/i18n/fr.po'
--- hr_resume/i18n/fr.po 1970-01-01 00:00:00 +0000
+++ hr_resume/i18n/fr.po 2013-12-18 17:59:30 +0000
@@ -0,0 +1,79 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * hr_resume
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 7.0\n"
8"Report-Msgid-Bugs-To: \n"
9"POT-Creation-Date: 2013-11-14 21:20+0000\n"
10"PO-Revision-Date: 2013-11-14 21:20+0000\n"
11"Last-Translator: <>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: \n"
16"Plural-Forms: \n"
17
18#. module: hr_resume
19#: report:hr.resume.report:0
20msgid "Certifications"
21msgstr "Certifications"
22
23#. module: hr_resume
24#: report:hr.resume.report:0
25msgid "Resume"
26msgstr "CV"
27
28#. module: hr_resume
29#: report:hr.resume.report:0
30msgid "Academic Background"
31msgstr "Formation académique"
32
33#. module: hr_resume
34#: report:hr.resume.report:0
35msgid "Professional Experiences"
36msgstr "Expériences professionnelles"
37
38#. module: hr_resume
39#: report:hr.resume.report:0
40msgid "Diploma:"
41msgstr "Diplôme:"
42
43#. module: hr_resume
44#: report:hr.resume.report:0
45msgid "Field of Study:"
46msgstr "Domaine d'études:"
47
48#. module: hr_resume
49#: report:hr.resume.report:0
50msgid "Languages"
51msgstr "Langages"
52
53#. module: hr_resume
54#: model:ir.model,name:hr_resume.model_hr_employee
55msgid "Employee"
56msgstr "Employé"
57
58#. module: hr_resume
59#: model:ir.actions.report.xml,name:hr_resume.hr_resume_report
60msgid "Print Resume"
61msgstr "Imprimer CV"
62
63#. module: hr_resume
64#: report:hr.resume.report:0
65msgid "Skills"
66msgstr "Compétences"
67
68#. module: hr_resume
69#: report:hr.resume.report:0
70msgid "Certification Number:"
71msgstr "Numéro de certification:"
72
73#. module: hr_resume
74#: view:hr.employee:0
75#: field:hr.employee,biography:0
76#: report:hr.resume.report:0
77msgid "Biography"
78msgstr "Biographie"
79
080
=== added file 'hr_resume/i18n/hr_resume.pot'
--- hr_resume/i18n/hr_resume.pot 1970-01-01 00:00:00 +0000
+++ hr_resume/i18n/hr_resume.pot 2013-12-18 17:59:30 +0000
@@ -0,0 +1,79 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * hr_resume
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 7.0\n"
8"Report-Msgid-Bugs-To: \n"
9"POT-Creation-Date: 2013-11-15 14:23+0000\n"
10"PO-Revision-Date: 2013-11-15 14:23+0000\n"
11"Last-Translator: <>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: \n"
16"Plural-Forms: \n"
17
18#. module: hr_resume
19#: report:hr.resume.report:0
20msgid "Certifications"
21msgstr ""
22
23#. module: hr_resume
24#: report:hr.resume.report:0
25msgid "Resume"
26msgstr ""
27
28#. module: hr_resume
29#: report:hr.resume.report:0
30msgid "Academic Background"
31msgstr ""
32
33#. module: hr_resume
34#: report:hr.resume.report:0
35msgid "Professional Experiences"
36msgstr ""
37
38#. module: hr_resume
39#: report:hr.resume.report:0
40msgid "Diploma:"
41msgstr ""
42
43#. module: hr_resume
44#: report:hr.resume.report:0
45msgid "Field of Study:"
46msgstr ""
47
48#. module: hr_resume
49#: report:hr.resume.report:0
50msgid "Languages"
51msgstr ""
52
53#. module: hr_resume
54#: model:ir.model,name:hr_resume.model_hr_employee
55msgid "Employee"
56msgstr ""
57
58#. module: hr_resume
59#: model:ir.actions.report.xml,name:hr_resume.hr_resume_report
60msgid "Print Resume"
61msgstr ""
62
63#. module: hr_resume
64#: report:hr.resume.report:0
65msgid "Skills"
66msgstr ""
67
68#. module: hr_resume
69#: report:hr.resume.report:0
70msgid "Certification Number:"
71msgstr ""
72
73#. module: hr_resume
74#: view:hr.employee:0
75#: field:hr.employee,biography:0
76#: report:hr.resume.report:0
77msgid "Biography"
78msgstr ""
79
080
=== added directory 'hr_resume/report'
=== added file 'hr_resume/report/__init__.py'
--- hr_resume/report/__init__.py 1970-01-01 00:00:00 +0000
+++ hr_resume/report/__init__.py 2013-12-18 17:59:30 +0000
@@ -0,0 +1,24 @@
1# -*- encoding: utf-8 -*-
2###############################################################################
3#
4# OpenERP, Open Source Management Solution
5# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Affero General Public License as
9# published by the Free Software Foundation, either version 3 of the
10# License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Affero General Public License for more details.
16#
17# You should have received a copy of the GNU Affero General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19#
20###############################################################################
21
22import report_resume
23
24# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
025
=== added file 'hr_resume/report/report_resume.py'
--- hr_resume/report/report_resume.py 1970-01-01 00:00:00 +0000
+++ hr_resume/report/report_resume.py 2013-12-18 17:59:30 +0000
@@ -0,0 +1,49 @@
1# -*- encoding: utf-8 -*-
2###############################################################################
3#
4# OpenERP, Open Source Management Solution
5# Copyright (C) 2013 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Affero General Public License as
9# published by the Free Software Foundation, either version 3 of the
10# License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Affero General Public License for more details.
16#
17# You should have received a copy of the GNU Affero General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19#
20###############################################################################
21
22import time
23from report import report_sxw
24
25
26class report_resume(report_sxw.rml_parse):
27
28 def __init__(self, cr, uid, name, context):
29 super(report_resume, self).__init__(cr, uid, name, context)
30 self.localcontext.update({
31 'time': time,
32 })
33
34 def get_experience_by_category(self, employee_id, category):
35 self.cr.execute("SELECT exp.name, exp.start_date, exp.expire, exp.end_date, exp.location, exp.certification, \
36 exp.description, exp.diploma, exp.study_field, part.name partner_name FROM hr_experience exp \
37 LEFT JOIN res_partner part ON part.id = exp.partner_id \
38 WHERE exp.employee_id = %d AND exp.category = '%s'" % (employee_id, category))
39 return self.cr.dictfetchall()
40
41report_sxw.report_sxw(
42 'report.hr.resume.report',
43 'hr.employee',
44 'addons/hr_resume/report/report_resume.rml',
45 parser=report_resume,
46 header=False
47)
48
49# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
050
=== added file 'hr_resume/report/report_resume.rml'
--- hr_resume/report/report_resume.rml 1970-01-01 00:00:00 +0000
+++ hr_resume/report/report_resume.rml 2013-12-18 17:59:30 +0000
@@ -0,0 +1,99 @@
1<?xml version="1.0"?>
2<document filename="Resume.pdf">
3 <template pageSize="(595.0,842.0)" title="Resume" author="Savoir-faire Linux" allowSplitting="20">
4 <pageTemplate id="first">
5 <frame id="first" x1="15.0" y1="42.0" width="539" height="758"/>
6 </pageTemplate>
7 </template>
8 <stylesheet>
9 <blockTableStyle id="Standard_Outline">
10 <blockAlignment value="LEFT"/>
11 <blockValign value="TOP"/>
12 </blockTableStyle>
13 <initialize>
14 <paraStyle name="all" alignment="justify"/>
15 </initialize>
16 <paraStyle name="Standard" fontName="Helvetica"/>
17 <paraStyle name="Text body" fontName="Helvetica" spaceBefore="0.0" spaceAfter="6.0"/>
18 <paraStyle name="Heading" fontName="Helvetica" fontSize="8.0" leading="10" spaceBefore="12.0" spaceAfter="6.0"/>
19 <paraStyle name="List" fontName="Helvetica" spaceBefore="0.0" spaceAfter="6.0"/>
20 <paraStyle name="Table Contents" fontName="Helvetica"/>
21 <paraStyle name="Table Heading" fontName="Helvetica" alignment="CENTER"/>
22 <paraStyle name="Caption" fontName="Helvetica" fontSize="12.0" leading="15" spaceBefore="6.0" spaceAfter="6.0"/>
23 <paraStyle name="Index" fontName="Helvetica"/>
24 <paraStyle name="terp_header" fontName="Helvetica-Bold" fontSize="15.0" leading="19" alignment="LEFT" spaceBefore="12.0" spaceAfter="6.0"/>
25 <paraStyle name="terp_default_8" fontName="Helvetica" fontSize="8.0" leading="10" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
26 <paraStyle name="terp_default_Bold_8" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
27 <paraStyle name="terp_default_Bold_9" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
28 <paraStyle name="terp_default_9" fontName="Helvetica" fontSize="9.0" leading="11" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
29 <paraStyle name="terp_tblheader_General" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="LEFT" spaceBefore="6.0" spaceAfter="6.0"/>
30 <paraStyle name="terp_tblheader_General_Centre" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="CENTER" spaceBefore="6.0" spaceAfter="6.0"/>
31 <paraStyle name="terp_default_Centre_8" fontName="Helvetica" fontSize="8.0" leading="10" alignment="CENTER" spaceBefore="0.0" spaceAfter="0.0"/>
32 <paraStyle name="terp_tblheader_Details" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="LEFT" spaceBefore="6.0" spaceAfter="6.0"/>
33 <paraStyle name="Footer" fontName="Helvetica"/>
34 <paraStyle name="Horizontal Line" fontName="Helvetica" fontSize="6.0" leading="8" spaceBefore="0.0" spaceAfter="14.0"/>
35 <paraStyle name="Heading 9" fontName="Helvetica-Bold" fontSize="75%" leading="NaN" spaceBefore="12.0" spaceAfter="6.0"/>
36 <paraStyle name="terp_tblheader_General_Right" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="RIGHT" spaceBefore="6.0" spaceAfter="6.0"/>
37 <paraStyle name="terp_tblheader_Details_Centre" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="CENTER" spaceBefore="6.0" spaceAfter="6.0"/>
38 <paraStyle name="terp_tblheader_Details_Right" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="RIGHT" spaceBefore="6.0" spaceAfter="6.0"/>
39 <paraStyle name="terp_default_Right_8" fontName="Helvetica" fontSize="8.0" leading="10" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
40 <paraStyle name="terp_header_Right" fontName="Helvetica-Bold" fontSize="15.0" leading="19" alignment="LEFT" spaceBefore="12.0" spaceAfter="6.0"/>
41 <paraStyle name="terp_header_Centre" fontName="Helvetica-Bold" fontSize="15.0" leading="19" alignment="CENTER" spaceBefore="12.0" spaceAfter="6.0"/>
42 <paraStyle name="terp_default_address" fontName="Helvetica" fontSize="10.0" leading="13" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
43 <paraStyle name="terp_default_Centre_9" fontName="Helvetica" fontSize="9.0" leading="11" alignment="CENTER" spaceBefore="0.0" spaceAfter="0.0"/>
44 <paraStyle name="terp_default_Right_9" fontName="Helvetica" fontSize="9.0" leading="11" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
45 <paraStyle name="terp_default_1" fontName="Helvetica" fontSize="2.0" leading="3" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
46 <paraStyle name="terp_default_Right_9_Bold" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
47 <paraStyle name="terp_default_Italic" rightIndent="0.0" leftIndent="20.0" fontName="Helvetica-Oblique" fontSize="8.0" leading="10" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
48 <paraStyle name="Preformatted Text" fontName="Helvetica" fontSize="10.0" leading="13" spaceBefore="0.0" spaceAfter="0.0"/>
49 <paraStyle name="terp_default_Centre_9_Bold" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="CENTER" spaceBefore="0.0" spaceAfter="0.0"/>
50 <images/>
51 </stylesheet>
52 <story>
53 <pto>
54 <para style="terp_default_8">[[repeatIn(objects,'o')]]</para>
55 <para style="terp_default_8">[[setLang(user.lang)]]</para>
56 <!--<image x="1.3cm" y="27.6cm" height="40.0" width="100" alignment="LEFT">[[ company.logo or removeParentNode('image') ]]</image>-->
57 <para style="terp_header_Centre">Resume</para>
58 <para style="terp_header_Centre">[[ o.name ]]</para>
59 <para style="terp_header_Centre">[[ o.job_id.name ]]</para>
60 <para style="terp_header">Biography</para>
61 <para>[[ o.biography ]]</para>
62 <para style="terp_header">Skills</para>
63 <section>
64 <para>[[repeatIn(o.skill_ids,'skill')]]</para>
65 <para>- [[ skill.name ]] </para>
66 </section>
67 <para style="terp_header">Certifications</para>
68 <section>
69 <para >[[repeatIn(o.certification_ids,'certification')]]</para>
70 <para style="terp_default_Bold_9">[[ certification.name ]] , [[ certification.partner_id.name ]]</para>
71 <para>[[ certification.start_date ]] - [[ certification.expire and certification.end_date or 'Now' ]]</para>
72 <para>[[ certification.location or removeParentNode('para') ]]</para>
73 <para>Certification Number: [[ certification.certification or removeParentNode('para') ]]</para>
74 </section>
75 <para style="terp_header">Professional Experiences</para>
76 <section>
77 <para >[[repeatIn(o.professional_ids,'professional')]]</para>
78 <para style="terp_default_Bold_9">[[ professional.name ]] [[ professional.location or '' ]]</para>
79 <para>[[ professional.start_date ]] - [[ professional.expire and professional.end_date or 'Now' ]]</para>
80 <para>[[ professional.partner_id.name ]]</para>
81 <para>[[ professional.description ]]</para>
82 </section>
83 <para style="terp_header">Academic Background</para>
84 <section>
85 <para >[[repeatIn(o.academic_ids,'academic')]]</para>
86 <para style="terp_default_Bold_9">[[ academic.name ]]</para>
87 <para>[[ academic.start_date ]] - [[ academic.expire and academic.end_date or 'Now' ]]</para>
88 <para>[[ academic.partner_id.name ]]</para>
89 <para>Diploma: [[ academic.diploma or removeParentNode('para') ]]</para>
90 <para>Field of Study: [[ academic.study_field or removeParentNode('para') ]]</para>
91 </section>
92 <para style="terp_header">Languages</para>
93 <section>
94 <para>[[repeatIn(o.language_ids,'language')]]</para>
95 <para>- [[ language.description ]] : [[ language.read and 'Read' or '' ]], [[ language.write and 'Write' or '' ]], [[ language.speak and 'Speak' or '' ]]</para>
96 </section>
97 </pto>
98 </story>
99</document>
0100
=== added file 'hr_resume/report/report_resume.xml'
--- hr_resume/report/report_resume.xml 1970-01-01 00:00:00 +0000
+++ hr_resume/report/report_resume.xml 2013-12-18 17:59:30 +0000
@@ -0,0 +1,13 @@
1<?xml version="1.0"?>
2<openerp>
3 <data>
4 <report
5 id="hr_resume_report"
6 string="Print Resume"
7 model="hr.employee"
8 name="hr.resume.report"
9 rml="hr_resume/report/report_resume.rml"
10 auto="False"
11 menu="True"/>
12 </data>
13</openerp>

Subscribers

People subscribed via source and target branches