From 822c10a7e3e483ba90602df226e2cba96f509097 Mon Sep 17 00:00:00 2001 From: Alexandre Fayolle Date: Mon, 16 Feb 2015 10:29:05 +0100 Subject: [PATCH] fix pep8 W503 --- base_partner_merge/base_partner_merge.py | 44 ++++++++++++------------ 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/base_partner_merge/base_partner_merge.py b/base_partner_merge/base_partner_merge.py index f3d1055ad..1cc1eca75 100644 --- a/base_partner_merge/base_partner_merge.py +++ b/base_partner_merge/base_partner_merge.py @@ -123,8 +123,8 @@ class MergePartnerAutomatic(orm.TransientModel): context = {} res = super(MergePartnerAutomatic, self ).default_get(cr, uid, fields, context) - if (context.get('active_model') == 'res.partner' - and context.get('active_ids')): + if (context.get('active_model') == 'res.partner' and + context.get('active_ids')): partner_ids = context['active_ids'] res['state'] = 'selection' res['partner_ids'] = partner_ids @@ -212,8 +212,8 @@ class MergePartnerAutomatic(orm.TransientModel): '%(column)s IN %%s') % query_dic cr.execute(query, (dst_partner.id, partner_ids,)) - if (column == proxy._parent_name - and table == 'res_partner'): + if (column == proxy._parent_name and + table == 'res_partner'): query = """ WITH RECURSIVE cycle(id, parent_id) AS ( SELECT id, parent_id FROM res_partner @@ -316,8 +316,8 @@ class MergePartnerAutomatic(orm.TransientModel): values = dict() for column, field in columns.iteritems(): - if (field._type not in ('many2many', 'one2many') - and not isinstance(field, fields.function)): + if (field._type not in ('many2many', 'one2many') and + not isinstance(field, fields.function)): for item in itertools.chain(src_partners, [dst_partner]): if item[column]: values[column] = write_serializer(column, @@ -350,10 +350,10 @@ class MergePartnerAutomatic(orm.TransientModel): "together. You can re-open the wizard several times if " "needed.")) - if (openerp.SUPERUSER_ID != uid - and len(set(partner.email for partner - in proxy.browse(cr, uid, partner_ids, - context=context))) > 1): + if (openerp.SUPERUSER_ID != uid and + len(set(partner.email for partner + in proxy.browse(cr, uid, partner_ids, + context=context))) > 1): raise orm.except_orm( _('Error'), _("All contacts must have the same email. Only the " @@ -371,16 +371,16 @@ class MergePartnerAutomatic(orm.TransientModel): src_partners = ordered_partners[:-1] _logger.info("dst_partner: %s", dst_partner.id) - if (openerp.SUPERUSER_ID != uid - and self._model_is_installed(cr, uid, 'account.move.line', - context=context) - and self.pool.get('account.move.line' - ).search(cr, openerp.SUPERUSER_ID, - [('partner_id', - 'in', - [partner.id for partner - in src_partners])], - context=context)): + if (openerp.SUPERUSER_ID != uid and + self._model_is_installed(cr, uid, 'account.move.line', + context=context) and + self.pool.get('account.move.line' + ).search(cr, openerp.SUPERUSER_ID, + [('partner_id', + 'in', + [partner.id for partner + in src_partners])], + context=context)): raise orm.except_orm( _('Error'), _("Only the destination contact may be linked to existing " @@ -617,8 +617,8 @@ class MergePartnerAutomatic(orm.TransientModel): models['res.users'] = 'partner_id' if (self._model_is_installed(cr, uid, 'account.move.line', - context=context) - and this.exclude_journal_item): + context=context) and + this.exclude_journal_item): models['account.move.line'] = 'partner_id' return models