From 4429bbe07b9d874d07a3adbe2f5dbea0aa86eff7 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 21 Mar 2014 17:00:22 +0100 Subject: [PATCH] Adapt user form to look like partner form * Name field replaced by Firstname and Lastname --- partner_firstname/__openerp__.py | 44 -------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 partner_firstname/__openerp__.py diff --git a/partner_firstname/__openerp__.py b/partner_firstname/__openerp__.py deleted file mode 100644 index 65d7ebe48..000000000 --- a/partner_firstname/__openerp__.py +++ /dev/null @@ -1,44 +0,0 @@ -# -*- 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 . -# -############################################################################## - -{'name': 'Partner first name, last name', - 'description': """ -This module splits first name and last name for non company partners -==================================================================== - -The field 'name' becomes a stored function field concatenating lastname and firstname -Note: in version 7.0, installing this module invalidates a yaml test in the 'edi' module -""", - 'version': '1.0.2', - 'author': 'Camptocamp', - 'maintainer': 'Camptocamp, Acsone', - 'category': 'Extra Tools', - 'website': 'http://www.camptocamp.com, http://www.acsone.eu', - 'depends': ['base'], - 'data': [ - 'partner_view.xml', - 'res_user_view.xml', - ], - 'demo': [], - 'test': [], - 'auto_install': False, - 'installable': True, - 'images': [] -}