Browse Source

Changes as requested.

pull/203/head
Richard deMeester 9 years ago
parent
commit
03eddbdd6a
  1. 16
      partner_contact_gender/__init__.py
  2. 1
      partner_contact_gender/__openerp__.py
  3. 3
      partner_contact_gender/models/__init__.py
  4. 3
      partner_contact_gender/models/res_partner.py

16
partner_contact_gender/__init__.py

@ -1,19 +1,5 @@
# -*- coding: utf-8 -*-
# Odoo, Open Source Management Solution
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
#
# 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/>.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from . import models

1
partner_contact_gender/__openerp__.py

@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{

3
partner_contact_gender/models/__init__.py

@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from . import partner_gender
from . import res_partner

3
partner_contact_gender/models/partner_gender.py → partner_contact_gender/models/res_partner.py

@ -1,7 +1,8 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openerp import fields, models, _, api
from openerp import fields, models
class ResPartner(models.Model):
Loading…
Cancel
Save