Merge lp:~openobject-italia-core-devs/openobject-italia/adding_l10n_it_hr into lp:~openobject-italia-core-devs/openobject-italia/italian-addons

Proposed by Lorenzo Battistini
Status: Merged
Merged at revision: 113
Proposed branch: lp:~openobject-italia-core-devs/openobject-italia/adding_l10n_it_hr
Merge into: lp:~openobject-italia-core-devs/openobject-italia/italian-addons
Diff against target: 654 lines (+286/-150)
14 files modified
l10n_it_hr/AUTHORS.txt (+2/-0)
l10n_it_hr/__init__.py (+23/-0)
l10n_it_hr/__openerp__.py (+47/-0)
l10n_it_hr/employee.py (+31/-0)
l10n_it_hr/employee_view.xml (+17/-0)
l10n_it_hr/i18n/it.po (+64/-0)
l10n_it_hr/i18n/l10n_it_hr.pot (+58/-0)
l10n_it_sale/__init__.py (+0/-1)
l10n_it_sale/__openerp__.py (+2/-4)
l10n_it_sale/hr/__init__.py (+0/-23)
l10n_it_sale/hr/employee.py (+0/-10)
l10n_it_sale/hr/employee_view.xml (+0/-17)
l10n_it_sale/i18n/it.po (+25/-52)
l10n_it_sale/i18n/l10n_it_sale.pot (+17/-43)
To merge this branch: bzr merge lp:~openobject-italia-core-devs/openobject-italia/adding_l10n_it_hr
Reviewer Review Type Date Requested Status
OpenERP Italia core devs Pending
Review via email: mp+60830@code.launchpad.net
To post a comment you must log in.
108. By Lorenzo Battistini

[FIX] copyright

109. By Lorenzo Battistini

[MERGE]

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory 'l10n_it_hr'
2=== added file 'l10n_it_hr/AUTHORS.txt'
3--- l10n_it_hr/AUTHORS.txt 1970-01-01 00:00:00 +0000
4+++ l10n_it_hr/AUTHORS.txt 2011-07-02 09:56:31 +0000
5@@ -0,0 +1,2 @@
6+Lorenzo Battistini <lorenzo.battistini@domsense.com>
7+
8
9=== added file 'l10n_it_hr/__init__.py'
10--- l10n_it_hr/__init__.py 1970-01-01 00:00:00 +0000
11+++ l10n_it_hr/__init__.py 2011-07-02 09:56:31 +0000
12@@ -0,0 +1,23 @@
13+# -*- encoding: utf-8 -*-
14+##############################################################################
15+#
16+# Copyright (C) 2010-2011 Associazione OpenERP Italia
17+# (<http://www.openerp-italia.org>).
18+# All Rights Reserved
19+#
20+# This program is free software: you can redistribute it and/or modify
21+# it under the terms of the GNU Affero General Public License as published
22+# by the Free Software Foundation, either version 3 of the License, or
23+# (at your option) any later version.
24+#
25+# This program is distributed in the hope that it will be useful,
26+# but WITHOUT ANY WARRANTY; without even the implied warranty of
27+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28+# GNU General Public License for more details.
29+#
30+# You should have received a copy of the GNU Affero General Public License
31+# along with this program. If not, see <http://www.gnu.org/licenses/>.
32+#
33+##############################################################################
34+
35+import employee
36
37=== added file 'l10n_it_hr/__openerp__.py'
38--- l10n_it_hr/__openerp__.py 1970-01-01 00:00:00 +0000
39+++ l10n_it_hr/__openerp__.py 2011-07-02 09:56:31 +0000
40@@ -0,0 +1,47 @@
41+# -*- encoding: utf-8 -*-
42+##############################################################################
43+#
44+# Copyright (C) 2010-2011 Associazione OpenERP Italia
45+# (<http://www.openerp-italia.org>).
46+# All Rights Reserved
47+#
48+# This program is free software: you can redistribute it and/or modify
49+# it under the terms of the GNU Affero General Public License as published
50+# by the Free Software Foundation, either version 3 of the License, or
51+# (at your option) any later version.
52+#
53+# This program is distributed in the hope that it will be useful,
54+# but WITHOUT ANY WARRANTY; without even the implied warranty of
55+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
56+# GNU General Public License for more details.
57+#
58+# You should have received a copy of the GNU Affero General Public License
59+# along with this program. If not, see <http://www.gnu.org/licenses/>.
60+#
61+##############################################################################
62+{
63+ 'name': 'Italian Localisation - HR',
64+ 'version': '0.2',
65+ 'category': 'Localisation/Italy',
66+ 'description': """OpenERP Italian Localization - HR version
67+
68+Functionalities:
69+
70+- Fiscal Code for employee
71+
72+""",
73+ 'author': 'OpenERP Italian Community',
74+ 'website': 'http://www.openerp-italia.org',
75+ 'license': 'AGPL-3',
76+ "depends" : ['hr'],
77+ "init_xml" : [
78+ ],
79+ "update_xml" : [
80+ 'employee_view.xml',
81+ ],
82+ "demo_xml" : [],
83+ "active": False,
84+ "installable": True
85+}
86+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
87+
88
89=== added file 'l10n_it_hr/employee.py'
90--- l10n_it_hr/employee.py 1970-01-01 00:00:00 +0000
91+++ l10n_it_hr/employee.py 2011-07-02 09:56:31 +0000
92@@ -0,0 +1,31 @@
93+# -*- encoding: utf-8 -*-
94+##############################################################################
95+#
96+# Copyright (C) 2010-2011 Associazione OpenERP Italia
97+# (<http://www.openerp-italia.org>).
98+# All Rights Reserved
99+#
100+# This program is free software: you can redistribute it and/or modify
101+# it under the terms of the GNU Affero General Public License as published
102+# by the Free Software Foundation, either version 3 of the License, or
103+# (at your option) any later version.
104+#
105+# This program is distributed in the hope that it will be useful,
106+# but WITHOUT ANY WARRANTY; without even the implied warranty of
107+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
108+# GNU General Public License for more details.
109+#
110+# You should have received a copy of the GNU Affero General Public License
111+# along with this program. If not, see <http://www.gnu.org/licenses/>.
112+#
113+##############################################################################
114+
115+from osv import osv
116+from osv import fields
117+
118+class hr_employee(osv.osv):
119+ _inherit = 'hr.employee'
120+ _columns = {
121+ 'fiscalcode': fields.char('Fiscal Code', size=16, help="Italian Fiscal Code"),
122+ }
123+hr_employee()
124
125=== added file 'l10n_it_hr/employee_view.xml'
126--- l10n_it_hr/employee_view.xml 1970-01-01 00:00:00 +0000
127+++ l10n_it_hr/employee_view.xml 2011-07-02 09:56:31 +0000
128@@ -0,0 +1,17 @@
129+<?xml version="1.0" ?>
130+<openerp>
131+ <data>
132+
133+ <record id="view_employee_form_fiscalcode" model="ir.ui.view">
134+ <field name="name">hr.employee.form.fiscalcode</field>
135+ <field name="model">hr.employee</field>
136+ <field name="inherit_id" ref="hr.view_employee_form"/>
137+ <field name="arch" type="xml">
138+ <field name="passport_id" position="after">
139+ <field name="fiscalcode"/>
140+ </field>
141+ </field>
142+ </record>
143+
144+ </data>
145+</openerp>
146
147=== added directory 'l10n_it_hr/i18n'
148=== added file 'l10n_it_hr/i18n/it.po'
149--- l10n_it_hr/i18n/it.po 1970-01-01 00:00:00 +0000
150+++ l10n_it_hr/i18n/it.po 2011-07-02 09:56:31 +0000
151@@ -0,0 +1,64 @@
152+# Translation of OpenERP Server.
153+# This file contains the translation of the following modules:
154+# * l10n_it_hr
155+#
156+msgid ""
157+msgstr ""
158+"Project-Id-Version: OpenERP Server 6.0.2\n"
159+"Report-Msgid-Bugs-To: support@openerp.com\n"
160+"POT-Creation-Date: 2011-05-12 20:06+0000\n"
161+"PO-Revision-Date: 2011-05-12 22:07+0100\n"
162+"Last-Translator: Lorenzo Battistini <lorenzo.battistini@agilebg.com>\n"
163+"Language-Team: \n"
164+"MIME-Version: 1.0\n"
165+"Content-Type: text/plain; charset=UTF-8\n"
166+"Content-Transfer-Encoding: 8bit\n"
167+"Plural-Forms: \n"
168+
169+#. module: l10n_it_hr
170+#: model:ir.module.module,description:l10n_it_hr.module_meta_information
171+msgid ""
172+"OpenERP Italian Localization - HR version\n"
173+"\n"
174+"Functionalities:\n"
175+"\n"
176+"- Fiscal Code for employee\n"
177+"\n"
178+msgstr ""
179+"Localizzazione Italiana - Versione Risorse Umane\n"
180+"\n"
181+"Funzionalità:\n"
182+"\n"
183+"- Codice fiscale per i dipendenti\n"
184+"\n"
185+
186+#. module: l10n_it_hr
187+#: model:ir.module.module,shortdesc:l10n_it_hr.module_meta_information
188+msgid "Italian Localisation - Sale"
189+msgstr "Localizzazione Italiana - Vendite"
190+
191+#. module: l10n_it_hr
192+#: constraint:hr.employee:0
193+msgid "Error ! You cannot select a department for which the employee is the manager."
194+msgstr "Errore ! Non è possibile selezionare un dipartimento di cui il dipendente è manager."
195+
196+#. module: l10n_it_hr
197+#: help:hr.employee,fiscalcode:0
198+msgid "Italian Fiscal Code"
199+msgstr "Codice fiscale italiano"
200+
201+#. module: l10n_it_hr
202+#: field:hr.employee,fiscalcode:0
203+msgid "Fiscal Code"
204+msgstr "Codice fiscale"
205+
206+#. module: l10n_it_hr
207+#: model:ir.model,name:l10n_it_hr.model_hr_employee
208+msgid "Employee"
209+msgstr "Dipendente"
210+
211+#. module: l10n_it_hr
212+#: constraint:hr.employee:0
213+msgid "Error ! You cannot create recursive Hierarchy of Employees."
214+msgstr "Errore ! Non è possibile creare una gerarchia ricorsiva di dipendenti"
215+
216
217=== added file 'l10n_it_hr/i18n/l10n_it_hr.pot'
218--- l10n_it_hr/i18n/l10n_it_hr.pot 1970-01-01 00:00:00 +0000
219+++ l10n_it_hr/i18n/l10n_it_hr.pot 2011-07-02 09:56:31 +0000
220@@ -0,0 +1,58 @@
221+# Translation of OpenERP Server.
222+# This file contains the translation of the following modules:
223+# * l10n_it_hr
224+#
225+msgid ""
226+msgstr ""
227+"Project-Id-Version: OpenERP Server 6.0.2\n"
228+"Report-Msgid-Bugs-To: support@openerp.com\n"
229+"POT-Creation-Date: 2011-05-12 20:05+0000\n"
230+"PO-Revision-Date: 2011-05-12 20:05+0000\n"
231+"Last-Translator: <>\n"
232+"Language-Team: \n"
233+"MIME-Version: 1.0\n"
234+"Content-Type: text/plain; charset=UTF-8\n"
235+"Content-Transfer-Encoding: \n"
236+"Plural-Forms: \n"
237+
238+#. module: l10n_it_hr
239+#: model:ir.module.module,description:l10n_it_hr.module_meta_information
240+msgid "OpenERP Italian Localization - HR version\n"
241+"\n"
242+"Functionalities:\n"
243+"\n"
244+"- Fiscal Code for employee\n"
245+"\n"
246+""
247+msgstr ""
248+
249+#. module: l10n_it_hr
250+#: model:ir.module.module,shortdesc:l10n_it_hr.module_meta_information
251+msgid "Italian Localisation - Sale"
252+msgstr ""
253+
254+#. module: l10n_it_hr
255+#: constraint:hr.employee:0
256+msgid "Error ! You cannot select a department for which the employee is the manager."
257+msgstr ""
258+
259+#. module: l10n_it_hr
260+#: help:hr.employee,fiscalcode:0
261+msgid "Italian Fiscal Code"
262+msgstr ""
263+
264+#. module: l10n_it_hr
265+#: field:hr.employee,fiscalcode:0
266+msgid "Fiscal Code"
267+msgstr ""
268+
269+#. module: l10n_it_hr
270+#: model:ir.model,name:l10n_it_hr.model_hr_employee
271+msgid "Employee"
272+msgstr ""
273+
274+#. module: l10n_it_hr
275+#: constraint:hr.employee:0
276+msgid "Error ! You cannot create recursive Hierarchy of Employees."
277+msgstr ""
278+
279
280=== modified file 'l10n_it_sale/__init__.py'
281--- l10n_it_sale/__init__.py 2011-05-06 13:07:22 +0000
282+++ l10n_it_sale/__init__.py 2011-07-02 09:56:31 +0000
283@@ -22,7 +22,6 @@
284
285 import sale
286 import stock
287-import hr
288 import account
289 import partner
290 import wizard
291
292=== modified file 'l10n_it_sale/__openerp__.py'
293--- l10n_it_sale/__openerp__.py 2011-05-06 13:07:22 +0000
294+++ l10n_it_sale/__openerp__.py 2011-07-02 09:56:31 +0000
295@@ -23,18 +23,17 @@
296 'name': 'Italian Localisation - Sale',
297 'version': '0.2',
298 'category': 'Localisation/Italy',
299- 'description': """This module customizes OpenERP in order to fit italian laws and mores - Sale version
300+ 'description': """OpenERP Italian Localization - Sale version
301
302 Functionalities:
303
304 - Documento di trasporto
305-- Fiscal Code for employee
306
307 """,
308 'author': 'OpenERP Italian Community',
309 'website': 'http://www.openerp-italia.org',
310 'license': 'AGPL-3',
311- "depends" : ['stock','sale','hr','account', 'delivery'],
312+ "depends" : ['stock', 'sale', 'account', 'delivery'],
313 "init_xml" : [
314 ],
315 "update_xml" : [
316@@ -49,7 +48,6 @@
317 'stock/sequence.xml',
318 'sale/sale_view.xml',
319 "security/ir.model.access.csv",
320- 'hr/employee_view.xml',
321 'partner/partner_view.xml',
322 'account/invoice_view.xml',
323 ],
324
325=== removed directory 'l10n_it_sale/hr'
326=== removed file 'l10n_it_sale/hr/__init__.py'
327--- l10n_it_sale/hr/__init__.py 2010-11-17 08:04:13 +0000
328+++ l10n_it_sale/hr/__init__.py 1970-01-01 00:00:00 +0000
329@@ -1,23 +0,0 @@
330-# -*- encoding: utf-8 -*-
331-##############################################################################
332-#
333-# Copyright (C) 2010 OpenERP Italian Community (<http://www.openerp-italia.org>).
334-# All Rights Reserved
335-# $Id$
336-#
337-# This program is free software: you can redistribute it and/or modify
338-# it under the terms of the GNU Affero General Public License as published by
339-# the Free Software Foundation, either version 3 of the License, or
340-# (at your option) any later version.
341-#
342-# This program is distributed in the hope that it will be useful,
343-# but WITHOUT ANY WARRANTY; without even the implied warranty of
344-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
345-# GNU General Public License for more details.
346-#
347-# You should have received a copy of the GNU General Public License
348-# along with this program. If not, see <http://www.gnu.org/licenses/>.
349-#
350-##############################################################################
351-
352-import employee
353
354=== removed file 'l10n_it_sale/hr/employee.py'
355--- l10n_it_sale/hr/employee.py 2010-09-22 13:43:42 +0000
356+++ l10n_it_sale/hr/employee.py 1970-01-01 00:00:00 +0000
357@@ -1,10 +0,0 @@
358-
359-from osv import osv
360-from osv import fields
361-
362-class hr_employee(osv.osv):
363- _inherit = 'hr.employee'
364- _columns = {
365- 'fiscalcode': fields.char('Fiscal Code', size=16, help="Italian Fiscal Code"),
366- }
367-hr_employee()
368
369=== removed file 'l10n_it_sale/hr/employee_view.xml'
370--- l10n_it_sale/hr/employee_view.xml 2010-11-01 18:56:36 +0000
371+++ l10n_it_sale/hr/employee_view.xml 1970-01-01 00:00:00 +0000
372@@ -1,17 +0,0 @@
373-<?xml version="1.0" ?>
374-<openerp>
375- <data>
376-
377- <record id="view_employee_form_fiscalcode" model="ir.ui.view">
378- <field name="name">hr.employee.form.fiscalcode</field>
379- <field name="model">hr.employee</field>
380- <field name="inherit_id" ref="hr.view_employee_form"/>
381- <field name="arch" type="xml">
382- <field name="passport_id" position="after">
383- <field name="fiscalcode"/>
384- </field>
385- </field>
386- </record>
387-
388- </data>
389-</openerp>
390
391=== modified file 'l10n_it_sale/i18n/it.po'
392--- l10n_it_sale/i18n/it.po 2011-05-06 13:54:43 +0000
393+++ l10n_it_sale/i18n/it.po 2011-07-02 09:56:31 +0000
394@@ -6,9 +6,9 @@
395 msgstr ""
396 "Project-Id-Version: OpenERP Server 6.0.2\n"
397 "Report-Msgid-Bugs-To: support@openerp.com\n"
398-"POT-Creation-Date: 2011-05-06 13:50+0000\n"
399-"PO-Revision-Date: 2011-05-06 15:54+0100\n"
400-"Last-Translator: eLBati <lorenzo.battistini@domsense.com>\n"
401+"POT-Creation-Date: 2011-05-12 20:12+0000\n"
402+"PO-Revision-Date: 2011-05-12 22:18+0100\n"
403+"Last-Translator: Lorenzo Battistini <lorenzo.battistini@agilebg.com>\n"
404 "Language-Team: \n"
405 "MIME-Version: 1.0\n"
406 "Content-Type: text/plain; charset=UTF-8\n"
407@@ -23,25 +23,6 @@
408 msgstr "Aspetto dei Beni"
409
410 #. module: l10n_it_sale
411-#: model:ir.module.module,description:l10n_it_sale.module_meta_information
412-msgid ""
413-"This module customizes OpenERP in order to fit italian laws and mores - Sale version\n"
414-"\n"
415-"Functionalities:\n"
416-"\n"
417-"- Documento di trasporto\n"
418-"- Fiscal Code for employee\n"
419-"\n"
420-msgstr ""
421-"Localizzazione Italiana - Versione Sale\n"
422-"\n"
423-"Funzionalità:\n"
424-"\n"
425-"- Documento di trasporto\n"
426-"- Codice fiscale per l'impiegato\n"
427-"\n"
428-
429-#. module: l10n_it_sale
430 #: field:stock.picking.carriage_condition,note:0
431 #: field:stock.picking.goods_description,note:0
432 #: field:stock.picking.transportation_reason,note:0
433@@ -49,9 +30,11 @@
434 msgstr "Note"
435
436 #. module: l10n_it_sale
437-#: field:hr.employee,fiscalcode:0
438-msgid "Fiscal Code"
439-msgstr "Codice fiscale"
440+#: model:ir.actions.act_window,name:l10n_it_sale.action_transportation_reason_tree
441+#: model:ir.ui.menu,name:l10n_it_sale.menu_action_transportation_reason_tree
442+#: view:stock.picking.transportation_reason:0
443+msgid "Reasons for transportation"
444+msgstr "Causale del trasporto"
445
446 #. module: l10n_it_sale
447 #: model:ir.model,name:l10n_it_sale.model_stock_picking
448@@ -59,11 +42,6 @@
449 msgstr "Picking List"
450
451 #. module: l10n_it_sale
452-#: model:ir.model,name:l10n_it_sale.model_hr_employee
453-msgid "Employee"
454-msgstr "Dipendente"
455-
456-#. module: l10n_it_sale
457 #: model:ir.actions.act_window,name:l10n_it_sale.action_wizard_assign_ddt
458 #: view:stock.picking:0
459 #: view:wizard.assign.ddt:0
460@@ -86,11 +64,6 @@
461 msgstr "Validità"
462
463 #. module: l10n_it_sale
464-#: constraint:hr.employee:0
465-msgid "Error ! You cannot create recursive Hierarchy of Employees."
466-msgstr "Errore ! Non è possibile creare una gerarchia ricorsiva di dipendenti"
467-
468-#. module: l10n_it_sale
469 #: model:ir.model,name:l10n_it_sale.model_wizard_assign_ddt
470 msgid "wizard.assign.ddt"
471 msgstr "wizard.assign.ddt"
472@@ -101,11 +74,6 @@
473 msgstr "Note"
474
475 #. module: l10n_it_sale
476-#: constraint:hr.employee:0
477-msgid "Error ! You cannot select a department for which the employee is the manager."
478-msgstr "Errore ! Non è possibile selezionare un dipartimento di cui il dipendente è manager."
479-
480-#. module: l10n_it_sale
481 #: view:account.invoice:0
482 msgid "Shipping"
483 msgstr "Trasporto"
484@@ -177,13 +145,6 @@
485 msgstr "Aspetto dei Beni"
486
487 #. module: l10n_it_sale
488-#: model:ir.actions.act_window,name:l10n_it_sale.action_transportation_reason_tree
489-#: model:ir.ui.menu,name:l10n_it_sale.menu_action_transportation_reason_tree
490-#: view:stock.picking.transportation_reason:0
491-msgid "Reasons for transportation"
492-msgstr "Causale del trasporto"
493-
494-#. module: l10n_it_sale
495 #: model:ir.actions.act_window,name:l10n_it_sale.action_carriage_condition_tree
496 #: model:ir.ui.menu,name:l10n_it_sale.menu_action_carriage_condition_tree
497 #: view:stock.picking.carriage_condition:0
498@@ -191,11 +152,6 @@
499 msgstr "Resa merce"
500
501 #. module: l10n_it_sale
502-#: help:hr.employee,fiscalcode:0
503-msgid "Italian Fiscal Code"
504-msgstr "Codice fiscale italiano"
505-
506-#. module: l10n_it_sale
507 #: model:ir.model,name:l10n_it_sale.model_account_invoice
508 msgid "Invoice"
509 msgstr "Fattura"
510@@ -227,3 +183,20 @@
511 msgid "Default shipping conditions"
512 msgstr "Dati DDT"
513
514+#. module: l10n_it_sale
515+#: model:ir.module.module,description:l10n_it_sale.module_meta_information
516+msgid ""
517+"OpenERP Italian Localization - Sale version\n"
518+"\n"
519+"Functionalities:\n"
520+"\n"
521+"- Documento di trasporto\n"
522+"\n"
523+msgstr ""
524+"Localizzazione Italiana - Versione Sale\n"
525+"\n"
526+"Funzionalità:\n"
527+"\n"
528+"- Documento di trasporto\n"
529+"\n"
530+
531
532=== modified file 'l10n_it_sale/i18n/l10n_it_sale.pot'
533--- l10n_it_sale/i18n/l10n_it_sale.pot 2011-05-06 13:54:43 +0000
534+++ l10n_it_sale/i18n/l10n_it_sale.pot 2011-07-02 09:56:31 +0000
535@@ -6,8 +6,8 @@
536 msgstr ""
537 "Project-Id-Version: OpenERP Server 6.0.2\n"
538 "Report-Msgid-Bugs-To: support@openerp.com\n"
539-"POT-Creation-Date: 2011-05-06 13:37+0000\n"
540-"PO-Revision-Date: 2011-05-06 13:37+0000\n"
541+"POT-Creation-Date: 2011-05-12 20:12+0000\n"
542+"PO-Revision-Date: 2011-05-12 20:12+0000\n"
543 "Last-Translator: <>\n"
544 "Language-Team: \n"
545 "MIME-Version: 1.0\n"
546@@ -23,18 +23,6 @@
547 msgstr ""
548
549 #. module: l10n_it_sale
550-#: model:ir.module.module,description:l10n_it_sale.module_meta_information
551-msgid "This module customizes OpenERP in order to fit italian laws and mores - Sale version\n"
552-"\n"
553-"Functionalities:\n"
554-"\n"
555-"- Documento di trasporto\n"
556-"- Fiscal Code for employee\n"
557-"\n"
558-""
559-msgstr ""
560-
561-#. module: l10n_it_sale
562 #: field:stock.picking.carriage_condition,note:0
563 #: field:stock.picking.goods_description,note:0
564 #: field:stock.picking.transportation_reason,note:0
565@@ -42,8 +30,10 @@
566 msgstr ""
567
568 #. module: l10n_it_sale
569-#: field:hr.employee,fiscalcode:0
570-msgid "Fiscal Code"
571+#: model:ir.actions.act_window,name:l10n_it_sale.action_transportation_reason_tree
572+#: model:ir.ui.menu,name:l10n_it_sale.menu_action_transportation_reason_tree
573+#: view:stock.picking.transportation_reason:0
574+msgid "Reasons for transportation"
575 msgstr ""
576
577 #. module: l10n_it_sale
578@@ -52,11 +42,6 @@
579 msgstr ""
580
581 #. module: l10n_it_sale
582-#: model:ir.model,name:l10n_it_sale.model_hr_employee
583-msgid "Employee"
584-msgstr ""
585-
586-#. module: l10n_it_sale
587 #: model:ir.actions.act_window,name:l10n_it_sale.action_wizard_assign_ddt
588 #: view:stock.picking:0
589 #: view:wizard.assign.ddt:0
590@@ -79,11 +64,6 @@
591 msgstr ""
592
593 #. module: l10n_it_sale
594-#: constraint:hr.employee:0
595-msgid "Error ! You cannot create recursive Hierarchy of Employees."
596-msgstr ""
597-
598-#. module: l10n_it_sale
599 #: model:ir.model,name:l10n_it_sale.model_wizard_assign_ddt
600 msgid "wizard.assign.ddt"
601 msgstr ""
602@@ -94,11 +74,6 @@
603 msgstr ""
604
605 #. module: l10n_it_sale
606-#: constraint:hr.employee:0
607-msgid "Error ! You cannot select a department for which the employee is the manager."
608-msgstr ""
609-
610-#. module: l10n_it_sale
611 #: view:account.invoice:0
612 msgid "Shipping"
613 msgstr ""
614@@ -170,13 +145,6 @@
615 msgstr ""
616
617 #. module: l10n_it_sale
618-#: model:ir.actions.act_window,name:l10n_it_sale.action_transportation_reason_tree
619-#: model:ir.ui.menu,name:l10n_it_sale.menu_action_transportation_reason_tree
620-#: view:stock.picking.transportation_reason:0
621-msgid "Reasons for transportation"
622-msgstr ""
623-
624-#. module: l10n_it_sale
625 #: model:ir.actions.act_window,name:l10n_it_sale.action_carriage_condition_tree
626 #: model:ir.ui.menu,name:l10n_it_sale.menu_action_carriage_condition_tree
627 #: view:stock.picking.carriage_condition:0
628@@ -184,11 +152,6 @@
629 msgstr ""
630
631 #. module: l10n_it_sale
632-#: help:hr.employee,fiscalcode:0
633-msgid "Italian Fiscal Code"
634-msgstr ""
635-
636-#. module: l10n_it_sale
637 #: model:ir.model,name:l10n_it_sale.model_account_invoice
638 msgid "Invoice"
639 msgstr ""
640@@ -220,3 +183,14 @@
641 msgid "Default shipping conditions"
642 msgstr ""
643
644+#. module: l10n_it_sale
645+#: model:ir.module.module,description:l10n_it_sale.module_meta_information
646+msgid "OpenERP Italian Localization - Sale version\n"
647+"\n"
648+"Functionalities:\n"
649+"\n"
650+"- Documento di trasporto\n"
651+"\n"
652+""
653+msgstr ""
654+