forked from OCA/connector-magento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
partner.py
224 lines (193 loc) · 7.77 KB
/
partner.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# -*- coding: utf-8 -*-
##############################################################################
#
# Author: Guewen Baconnier
# Copyright 2013 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.addons.connector.unit.mapper import (mapping,
changed_by,
ExportMapper)
from openerp.addons.connector.exception import InvalidDataError
from openerp.addons.magentoerpconnect.unit.delete_synchronizer import (
MagentoDeleteSynchronizer
)
from openerp.addons.magentoerpconnect.unit.export_synchronizer import (
MagentoExporter
)
from openerp.addons.magentoerpconnect.backend import magento
@magento
class PartnerDeleteSynchronizer(MagentoDeleteSynchronizer):
""" Partner deleter for Magento """
_model_name = ['magento.res.partner',
'magento.address']
@magento
class PartnerExport(MagentoExporter):
_model_name = ['magento.res.partner']
def _after_export(self):
# Condition on street field because we consider that if street
# is false, there is no address to export on this partner.
if (not self.binding_record.magento_address_bind_ids and
not self.binding_record.consider_as_company and
self.binding_record.street):
extra_vals = {
'is_default_billing': True,
'magento_partner_id': self.binding_id,
}
if not self.binding_record.child_ids:
extra_vals['is_default_shipping'] = True
self._export_dependency(self.binding_record.openerp_id,
'magento.address',
exporter_class=AddressExport,
binding_field='magento_address_bind_ids',
binding_extra_vals=extra_vals)
for child in self.binding_record.child_ids:
child_extra_vals = {
'magento_partner_id': self.binding_id,
}
if not child.magento_address_bind_ids:
if child.type == 'invoice':
child_extra_vals['is_default_billing'] = True
if child.type == 'delivery':
child_extra_vals['is_default_shipping'] = True
self._export_dependency(
child, 'magento.address',
exporter_class=AddressExport,
binding_field='magento_address_bind_ids',
binding_extra_vals=child_extra_vals)
def _validate_create_data(self, data):
""" Check if the values to import are correct
Pro-actively check before the ``Model.create`` or
``Model.update`` if some fields are missing
Raise `InvalidDataError`
"""
if not data.get('email'):
raise InvalidDataError("The partner does not have an email "
"but it is mandatory for Magento")
return
@magento
class AddressExport(MagentoExporter):
_model_name = ['magento.address']
def _export_dependencies(self):
""" Export the dependencies for the record"""
relation = (self.binding_record.parent_id or
self.binding_record.openerp_id)
self._export_dependency(relation, 'magento.res.partner',
exporter_class=PartnerExport)
def _validate_create_data(self, data):
""" Check if the values to import are correct
Pro-actively check before the ``Model.create`` or
``Model.update`` if some fields are missing
Raise `InvalidDataError`
"""
missing_fields = []
for required_key in ('city', 'street', 'postcode',
'country_id', 'telephone'):
if not data.get(required_key):
missing_fields.append(required_key)
if missing_fields:
raise InvalidDataError("The address does not contain one or "
"several mandatory fields for "
"Magento : %s" %
missing_fields)
def _create(self, data):
""" Create the Magento record """
# special check on data before export
self._validate_create_data(data)
customer_id = data.pop('customer_id')
return self.backend_adapter.create(customer_id, data)
@magento
class PartnerExportMapper(ExportMapper):
_model_name = 'magento.res.partner'
direct = [
('birthday', 'dob'),
('created_at', 'created_at'),
('updated_at', 'updated_at'),
('taxvat', 'taxvat'),
('group_id', 'group_id'),
('website_id', 'website_id'),
]
@changed_by('email', 'emailid')
@mapping
def email(self, record):
email = record.emailid or record.email
return {'email': email}
@changed_by('name')
@mapping
def names(self, record):
# FIXME base_surname needed
if ' ' in record.name:
parts = record.name.split()
firstname = parts[0]
lastname = ' '.join(parts[1:])
else:
lastname = record.name
firstname = '-'
return {'firstname': firstname, 'lastname': lastname}
@magento
class PartnerAddressExportMapper(ExportMapper):
_model_name = 'magento.address'
direct = [('zip', 'postcode'),
('city', 'city'),
('is_default_billing', 'is_default_billing'),
('is_default_shipping', 'is_default_shipping'),
('company', 'company'),
]
@changed_by('parent_id', 'openerp_id')
@mapping
def partner(self, record):
binder = self.get_binder_for_model('magento.res.partner')
if record.parent_id:
erp_partner_id = record.parent_id.id
else:
erp_partner_id = record.openerp_id.id
mag_partner_id = binder.to_backend(erp_partner_id, wrap=True)
return {'customer_id': mag_partner_id}
@changed_by('name')
@mapping
def names(self, record):
if ' ' in record.name:
parts = record.name.split()
firstname = parts[0]
lastname = ' '.join(parts[1:])
else:
lastname = record.name
firstname = '-'
return {'firstname': firstname, 'lastname': lastname}
@changed_by('phone', 'mobile')
@mapping
def phone(self, record):
return {'telephone': record.phone or record.mobile}
@changed_by('country_id')
@mapping
def country(self, record):
if record.country_id:
return {'country_id': record.country_id.code}
@changed_by('state_id')
@mapping
def region(self, record):
if record.state_id:
return {'region': record.state_id.name}
@changed_by('street', 'street2')
@mapping
def street(self, record):
street = False
if record.street:
street = record.street
if record.street2:
street = ['\n'.join([street, record.street2])]
if street:
return {'street': street}