File tree Expand file tree Collapse file tree 4 files changed +17
-20
lines changed
document_images_on_partner Expand file tree Collapse file tree 4 files changed +17
-20
lines changed Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
- #################################################################################
2
+ ###############################################################################
3
3
#
4
4
# OpenERP, Open Source Management Solution
5
- # Copyright (C) 2013 Julius Network Solutions SARL <[email protected] >
5
+ # Copyright (C) 2013-Today Julius Network Solutions SARL <[email protected] >
6
6
#
7
7
# This program is free software: you can redistribute it and/or modify
8
8
# it under the terms of the GNU General Public License as published by
17
17
# You should have received a copy of the GNU General Public License
18
18
# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
19
#
20
- #################################################################################
20
+ ###############################################################################
21
21
22
- import partner
22
+ from . import partner
23
23
24
24
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
- #################################################################################
2
+ ###############################################################################
3
3
#
4
4
# OpenERP, Open Source Management Solution
5
- # Copyright (C) 2013 Julius Network Solutions SARL <[email protected] >
5
+ # Copyright (C) 2013-Today Julius Network Solutions SARL <[email protected] >
6
6
#
7
7
# This program is free software: you can redistribute it and/or modify
8
8
# it under the terms of the GNU General Public License as published by
17
17
# You should have received a copy of the GNU General Public License
18
18
# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
19
#
20
- #################################################################################
20
+ ###############################################################################
21
21
22
22
{
23
23
'name' : 'Document Images on partners' ,
24
- 'version' : '0.1 ' ,
24
+ 'version' : '0.2 ' ,
25
25
'category' : 'Base' ,
26
26
'description' : """
27
- Get a gallery of images with the attached documents on a partner
28
- """ ,
27
+ Get a gallery of images with the attached documents on a partner
28
+ """ ,
29
29
'author' : 'Julius Network Solutions' ,
30
30
'website' : 'http://www.julius.fr/' ,
31
- 'images' : [
32
- ],
31
+ 'images' : [],
33
32
'depends' : [
34
33
'document_images' ,
35
34
],
36
35
'data' : [
37
36
'partner_view.xml' ,
38
37
],
39
38
'demo' : [],
40
- 'installable' : False ,
39
+ 'installable' : True ,
41
40
'active' : False ,
42
- 'license' : 'AGPL-3' ,
43
41
}
44
42
45
43
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
- #################################################################################
2
+ ###############################################################################
3
3
#
4
4
# OpenERP, Open Source Management Solution
5
- # Copyright (C) 2013 Julius Network Solutions SARL <[email protected] >
5
+ # Copyright (C) 2013-Today Julius Network Solutions SARL <[email protected] >
6
6
#
7
7
# This program is free software: you can redistribute it and/or modify
8
8
# it under the terms of the GNU General Public License as published by
17
17
# You should have received a copy of the GNU General Public License
18
18
# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
19
#
20
- #################################################################################
20
+ ###############################################################################
21
21
22
- from openerp .osv import orm , fields
23
- from openerp .tools .translate import _
22
+ from openerp import models
24
23
25
- class res_partner (orm .Model ):
24
+ class res_partner (models .Model ):
26
25
_name = 'res.partner'
27
26
_inherit = ['res.partner' , 'document.images' ]
28
27
File renamed without changes.
You can’t perform that action at this time.
0 commit comments