unknown
12 years ago
4 changed files with 154 additions and 0 deletions
-
20partner_firstname/__init__.py
-
37partner_firstname/__openerp__.py
-
65partner_firstname/partner.py
-
32partner_firstname/partner_view.xml
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Author: Nicolas Bessi. Copyright Camptocamp SA |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
from . import partner |
@ -0,0 +1,37 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Author: Nicolas Bessi. Copyright Camptocamp SA |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
|
||||
|
{'name': 'Partner first name, last name', |
||||
|
'description': """Split firstname and lastname on res.partner. |
||||
|
The field name becomes a stored function field concatenating lastname, firstname. |
||||
|
The create write function are overwritten to support compatibility |
||||
|
""", |
||||
|
'version': '1.0', |
||||
|
'author': 'Camptocamp', |
||||
|
'category': 'MISC', |
||||
|
'website': 'http://www.camptocamp.com', |
||||
|
'depends': ['base'], |
||||
|
'data': ['partner_view.xml'], |
||||
|
'demo': [], |
||||
|
'test': [], |
||||
|
'auto_install': False, |
||||
|
'installable': True, |
||||
|
'images': [] |
||||
|
} |
@ -0,0 +1,65 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Author: Nicolas Bessi. Copyright Camptocamp SA |
||||
|
# |
||||
|
# 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
from openerp.osv.orm import Model, fields |
||||
|
|
||||
|
|
||||
|
class ResPartner(Model): |
||||
|
"""Adds lastname and firstname, name become a stored function field""" |
||||
|
|
||||
|
_inherit = 'res.partner' |
||||
|
|
||||
|
def init(self, cursor): |
||||
|
cursor.execute('SELECT id FROM res_partner WHERE lastname IS NOT NULL') |
||||
|
if not cursor.fetchone(): |
||||
|
cursor.execute('UPDATE res_partner set lastname = name WHERE name IS NOT NULL') |
||||
|
|
||||
|
def _compute_name_custom(self, cursor, uid, ids, fname, arg, context=None): |
||||
|
res = {} |
||||
|
for rec in self.read(cursor, uid, ids, ['firstname', 'lastname']): |
||||
|
name = rec['lastname'] + (u" " + rec['firstname'] if rec['firstname'] else u"") |
||||
|
res[rec['id']] = name |
||||
|
return res |
||||
|
|
||||
|
_columns = {'name': fields.function(_compute_name_custom, string="Name", |
||||
|
type="char", store=True, |
||||
|
select=True, readonly=True), |
||||
|
|
||||
|
'firstname': fields.char("Firstname"), |
||||
|
'lastname': fields.char("Lastname", required=True)} |
||||
|
|
||||
|
def create(self, cursor, uid, vals, context=None): |
||||
|
"""To support data backward compatibility""" |
||||
|
to_use = vals |
||||
|
if vals.get('name'): |
||||
|
corr_vals = vals.copy() |
||||
|
corr_vals['lastname'] = corr_vals['name'] |
||||
|
del(corr_vals['name']) |
||||
|
to_use = corr_vals |
||||
|
return super(ResPartner, self).create(cursor, uid, to_use, context=context) |
||||
|
|
||||
|
def write(self, cursor, uid, ids, vals, context=None): |
||||
|
"""To support data backward compatibility""" |
||||
|
to_use = vals |
||||
|
if vals.get('name'): |
||||
|
corr_vals = vals.copy() |
||||
|
corr_vals['lastname'] = corr_vals['name'] |
||||
|
del(corr_vals['name']) |
||||
|
to_use = corr_vals |
||||
|
return super(ResPartner, self).write(cursor, uid, ids, to_use, context=context) |
@ -0,0 +1,32 @@ |
|||||
|
<openerp> |
||||
|
<data> |
||||
|
<record id="view_partner_simple_form_firstname" model="ir.ui.view"> |
||||
|
<field name="name">res.partner.simplified.form.firstname</field> |
||||
|
<field name="model">res.partner</field> |
||||
|
<field name="inherit_id" ref="base.view_partner_simple_form"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<field name="category_id" position="before"> |
||||
|
<group> |
||||
|
<field name="lastname"/> |
||||
|
<field name="firstname"/> |
||||
|
</group> |
||||
|
</field> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record id="view_partner_form_firstname" model="ir.ui.view"> |
||||
|
<field name="name">res.partner.form.firstname</field> |
||||
|
<field name="model">res.partner</field> |
||||
|
<field name="inherit_id" ref="base.view_partner_form"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<field name="category_id" position="before"> |
||||
|
<group> |
||||
|
<field name="lastname"/> |
||||
|
<field name="firstname"/> |
||||
|
</group> |
||||
|
</field> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue