Browse Source

improve adherance to coding conventions

pull/2/head
Thomas Rehn 11 years ago
parent
commit
0186d4513d
  1. 7
      base_partner_sequence/__init__.py
  2. 25
      base_partner_sequence/__openerp__.py
  3. 23
      base_partner_sequence/partner.py

7
base_partner_sequence/__init__.py

@ -1,6 +1,6 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
#
@ -15,9 +15,8 @@
# 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/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import partner_sequence
import partner
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

25
base_partner_sequence/__openerp__.py

@ -1,6 +1,6 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
# Copyright (C) 2013 initOS GmbH & Co. KG (<http://www.initos.com>).
@ -17,29 +17,28 @@
# 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/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
"name" : "Add a sequence on customers' code",
"version" : "1.1",
"author" : "initOS GmbH & Co. KG",
"category" : "Generic Modules/Base",
"name": "Add a sequence on customers' code",
"version": "1.1",
"author": "initOS GmbH & Co. KG",
"category": "Generic Modules/Base",
"website": "http://www.initos.com",
"depends" : ["base"],
"summary" : "Sets customer's code from a sequence",
"depends": ["base"],
"summary": "Sets customer's code from a sequence",
"description": """
This module adds the possibility to define a sequence for
the partner code. This code is then set as default when you
create a new customer, using the defined sequence.
create a new partner (not a contact), using the defined sequence.
This module is a migration of the original base_partner_sequence
addon to OpenERP version 7.0.
""",
"demo_xml" : [],
"init_xml" : ['partner_sequence.xml'],
"update_xml" : [],
"demo_xml": [],
"init_xml": ['partner_sequence.xml'],
"update_xml": [],
"active": False,
"installable": True
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

23
base_partner_sequence/partner_sequence.py → base_partner_sequence/partner.py

@ -1,6 +1,6 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
# Copyright (C) 2013 initOS GmbH & Co. KG (<http://www.initos.com>).
@ -17,26 +17,27 @@
# 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/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from osv import osv, fields
import logging
_logger = logging.getLogger(__name__)
from openerp.osv import orm, fields
class ResPartner(orm.Model):
"""Assigns 'ref' from a sequence on creation"""
class partner_sequence(osv.osv):
_inherit = 'res.partner'
def create(self, cr, uid, vals, context={}):
# only assign a 'ref' if it is not a child object
# (such as a shipping/invoice address)
if vals.get('parent_id', 0) > 0:
if not vals.get('parent_id'):
vals['ref'] = self.pool.get('ir.sequence').get(cr, uid, 'res.partner')
res = super(partner_sequence, self).create(cr, uid, vals, context)
return res
return super(ResPartner, self).create(cr, uid, vals, context)
_columns = {
'ref': fields.char('Code', size=64, readonly=True),
}
partner_sequence()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
Loading…
Cancel
Save