-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathwizard.py
More file actions
620 lines (479 loc) · 17.9 KB
/
wizard.py
File metadata and controls
620 lines (479 loc) · 17.9 KB
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
# -*- coding: utf-8 -*-
"""
wizard
:copyright: (c) 2015 by Openlabs Technologies & Consulting (P) Limited
:license: BSD, see LICENSE for more details.
"""
import magento
import json
from .api import Core
from trytond.model import ModelView, fields
from trytond.pool import PoolMeta, Pool
from trytond.transaction import Transaction
from trytond.pyson import PYSONEncoder
from trytond.wizard import (
Wizard, StateView, Button, StateAction, StateTransition
)
__all__ = [
'ExportMagentoInventoryStart', 'ExportMagentoInventory',
'ExportMagentoShipmentStatusStart',
'ExportMagentoShipmentStatus', 'ImportMagentoCarriersStart',
'ImportMagentoCarriers', 'ConfigureMagento',
'TestMagentoConnectionStart', 'ImportWebsitesStart',
'ImportStoresStart', 'FailureStart', 'SuccessStart',
'ExportMagentoOrderStatusStart', 'ExportMagentoOrderStatus',
'UpdateMagentoCatalogStart', 'UpdateMagentoCatalog',
'ExportMagentoCatalogStart', 'ExportMagentoCatalog'
]
__metaclass__ = PoolMeta
class ExportMagentoOrderStatusStart(ModelView):
"Export Order Status Start View"
__name__ = 'magento.wizard_export_order_status.start'
message = fields.Text("Message", readonly=True)
class ExportMagentoOrderStatus(Wizard):
"""
Export Order Status wizard
Export order status to magento for the current store view
"""
__name__ = 'magento.wizard_export_order_status'
start = StateView(
'magento.wizard_export_order_status.start',
'magento.wizard_export_magento_order_status_view_start_form',
[
Button('Cancel', 'end', 'tryton-cancel'),
Button('Continue', 'export_', 'tryton-ok', default=True),
]
)
export_ = StateAction('magento.act_sale_form_all')
def default_start(self, data):
"""
Sets default data for wizard
:param data: Wizard data
"""
Channel = Pool().get('sale.channel')
channel = Channel(Transaction().context.get('active_id'))
channel.validate_magento_channel()
return {
'message':
"This wizard will export orders status to magento " +
"for this store view. All the orders edited/updated after " +
"the Last Order Export Time will be exported."
}
def do_export_(self, action):
"""
Export order status to magento
"""
Channel = Pool().get('sale.channel')
channel = Channel(Transaction().context.get('active_id'))
channel.validate_magento_channel()
sales = channel.export_order_status_to_magento()
data = {'res_id': [sale.id for sale in sales]}
return action, data
def transition_export_(self):
return 'end'
class ImportMagentoCarriersStart(ModelView):
"Import Carriers Start"
__name__ = 'magento.wizard_import_carriers.start'
message = fields.Text("Message", readonly=True)
class ImportMagentoCarriers(Wizard):
"""
Wizard to import carriers / shipping methods for channel
"""
__name__ = 'magento.wizard_import_carriers'
start = StateView(
'magento.wizard_import_carriers.start',
'magento.wizard_import_magento_carriers_start_view_form',
[
Button('Ok', 'end', 'tryton-ok'),
]
)
def default_start(self, data):
"""
Import carriers and show the user appropriate message
:param data: Wizard data
"""
Channel = Pool().get('sale.channel')
channel = Channel(Transaction().context.get('active_id'))
channel.validate_magento_channel()
return {
'message':
"This wizard has imported all the carriers / " +
"shipping methods for this magento channel. You should now " +
"configure the imported carriers / shipping methods to " +
"match the shipment carriers in Tryton to allow seamless " +
"synchronisation of tracking information."
}
class ExportMagentoInventoryStart(ModelView):
"Export Inventory Start View"
__name__ = 'magento.wizard_export_inventory.start'
class ExportMagentoInventory(Wizard):
"""
Export Inventory Wizard
Export product stock information to magento for the current website
"""
__name__ = 'magento.wizard_export_inventory'
start = StateView(
'magento.wizard_export_inventory.start',
'magento.wizard_export_magento_inventory_view_start_form',
[
Button('Cancel', 'end', 'tryton-cancel'),
Button('Continue', 'export_', 'tryton-ok', default=True),
]
)
export_ = StateAction('product.act_template_form')
def do_export_(self, action):
"""
Handles the transition
"""
Channel = Pool().get('sale.channel')
channel = Channel.get_current_magento_channel()
product_templates = channel.export_inventory_to_magento()
action['pyson_domain'] = PYSONEncoder().encode(
[('id', 'in', map(int, product_templates))])
return action, {}
def transition_export_(self):
return 'end'
class ExportMagentoShipmentStatusStart(ModelView):
"Export Shipment Status View"
__name__ = 'magento.wizard_export_shipment_status.start'
message = fields.Text("Message", readonly=True)
class ExportMagentoShipmentStatus(Wizard):
"""
Export Shipment Status Wizard
Exports shipment status for sale orders related to current store view
"""
__name__ = 'magento.wizard_export_shipment_status'
start = StateView(
'magento.wizard_export_shipment_status.start',
'magento.wizard_export_magento_shipment_status_view_start_form',
[
Button('Cancel', 'end', 'tryton-cancel'),
Button('Continue', 'export_', 'tryton-ok', default=True),
]
)
export_ = StateAction('sale.act_sale_form')
def default_start(self, data):
"""
Sets default data for wizard
:param data: Wizard data
"""
Channel = Pool().get('sale.channel')
channel = Channel(Transaction().context.get('active_id'))
channel.validate_magento_channel()
return {
'message':
"This wizard will export shipment status for all the " +
"shipments related to this store view. To export tracking " +
"information also for these shipments please check the " +
"checkbox for Export Tracking Information on Store View."
}
def do_export_(self, action):
"""Handles the transition"""
Channel = Pool().get('sale.channel')
channel = Channel(Transaction().context.get('active_id'))
channel.validate_magento_channel()
sales = channel.export_shipment_status_to_magento()
action['pyson_domain'] = PYSONEncoder().encode(
[('id', 'in', map(int, sales))]
)
return action, {}
def transition_export_(self):
return 'end'
class ConfigureMagento(Wizard):
"""
Wizard To Configure Magento
"""
__name__ = 'magento.wizard_configure_magento'
start = StateView(
'magento.wizard_test_connection.start',
'magento.wizard_test_magento_connection_view_form',
[
Button('Cancel', 'end', 'tryton-cancel'),
Button('Next', 'website', 'tryton-go-next', 'True'),
]
)
website = StateTransition()
import_website = StateView(
'magento.wizard_import_websites.start',
'magento.wizard_import_websites_view_form',
[
Button('Next', 'store', 'tryton-go-next', 'True'),
]
)
store = StateTransition()
import_store = StateView(
'magento.wizard_import_stores.start',
'magento.wizard_import_stores_view_form',
[
Button('Next', 'success', 'tryton-go-next', 'True'),
]
)
success = StateView(
'magento.wizard_configuration_success.start',
'magento.wizard_configuration_success_view_form',
[
Button('Ok', 'end', 'tryton-ok')
]
)
failure = StateView(
'magento.wizard_configuration_failure.start',
'magento.wizard_configuration_failure_view_form',
[
Button('Ok', 'end', 'tryton-ok')
]
)
def default_start(self, data):
"""
Test the connection for current magento channel
"""
Channel = Pool().get('sale.channel')
magento_channel = Channel(Transaction().context.get('active_id'))
magento_channel.validate_magento_channel()
# Test Connection
magento_channel.test_magento_connection()
return {
'channel': magento_channel.id
}
def transition_website(self):
"""
Import websites for current magento channel
"""
magento_channel = self.start.channel
self.import_website.__class__.magento_websites.selection = \
self.get_websites()
if not (
magento_channel.magento_website_id and
magento_channel.magento_store_id
):
return 'import_website'
if not self.validate_websites():
return 'failure'
return 'end'
def transition_store(self):
"""
Initialize the values of website in sale channel
"""
self.import_store.__class__.magento_stores.selection = \
self.get_stores()
return 'import_store'
def default_success(self, data):
"""
Initialize the values of store in sale channel
"""
channel = self.start.channel
imported_store = self.import_store.magento_stores
imported_website = self.import_website.magento_websites
magento_website = json.loads(imported_website)
channel.magento_website_id = magento_website['id']
channel.magento_website_name = magento_website['name']
channel.magento_website_code = magento_website['code']
magento_store = json.loads(imported_store)
channel.magento_store_id = magento_store['store_id']
channel.magento_store_name = magento_store['name']
channel.save()
return {}
def get_websites(self):
"""
Returns the list of websites
"""
magento_channel = self.start.channel
with Core(
magento_channel.magento_url, magento_channel.magento_api_user,
magento_channel.magento_api_key
) as core_api:
websites = core_api.websites()
selection = []
for website in websites:
# XXX: An UGLY way to map json to selection, fix me
website_data = {
'code': website['code'],
'id': website['website_id'],
'name': website['name']
}
website_data = json.dumps(website_data)
selection.append((website_data, website['name']))
return selection
def get_stores(self):
"""
Return list of all stores
"""
magento_channel = self.start.channel
selected_website = json.loads(self.import_website.magento_websites)
with Core(
magento_channel.magento_url, magento_channel.magento_api_user,
magento_channel.magento_api_key
) as core_api:
stores = core_api.stores(selected_website['id'])
all_stores = []
for store in stores:
# Create the new dictionary of required values from a dictionary,
# and convert it into the string
store_data = {
'store_id': store['default_store_id'],
'name': store['name']
}
store_data = json.dumps(store_data)
all_stores.append((store_data, store['name']))
return all_stores
def validate_websites(self):
"""
Validate the website of magento channel
"""
magento_channel = self.start.channel
current_website_configurations = {
'code': magento_channel.magento_website_code,
'id': str(magento_channel.magento_website_id),
'name': magento_channel.magento_website_name
}
current_website = (
json.dumps(current_website_configurations),
magento_channel.magento_website_name
)
if current_website not in self.get_websites():
return False
return True
class TestMagentoConnectionStart(ModelView):
"Test Connection"
__name__ = 'magento.wizard_test_connection.start'
channel = fields.Many2One(
'sale.channel', 'Sale Channel', required=True, readonly=True
)
class ImportWebsitesStart(ModelView):
"""
Import Websites Start View
"""
__name__ = 'magento.wizard_import_websites.start'
magento_websites = fields.Selection([], 'Select Website', required=True)
class ImportStoresStart(ModelView):
"""
Import stores from websites
"""
__name__ = 'magento.wizard_import_stores.start'
magento_stores = fields.Selection([], 'Select Store', required=True)
class FailureStart(ModelView):
"""
Failure wizard
"""
__name__ = 'magento.wizard_configuration_failure.start'
class SuccessStart(ModelView):
"""
Get Done
"""
__name__ = 'magento.wizard_configuration_success.start'
class UpdateMagentoCatalogStart(ModelView):
'Update Catalog View'
__name__ = 'magento.update_catalog.start'
class UpdateMagentoCatalog(Wizard):
'''
Update Catalog
This is a wizard to update already imported products
'''
__name__ = 'magento.update_catalog'
start = StateView(
'magento.update_catalog.start',
'magento.magento_update_catalog_start_view_form', [
Button('Cancel', 'end', 'tryton-cancel'),
Button('Continue', 'update_', 'tryton-ok', default=True),
]
)
update_ = StateAction('product.act_template_form')
def do_update_(self, action):
"""Handles the transition"""
Channel = Pool().get('sale.channel')
channel = Channel(Transaction().context.get('active_id'))
channel.validate_magento_channel()
product_template_ids = self.update_products(channel)
action['pyson_domain'] = PYSONEncoder().encode(
[('id', 'in', product_template_ids)])
return action, {}
def transition_import_(self):
return 'end'
def update_products(self, channel):
"""
Updates products for current magento_channel
:param channel: Browse record of channel
:return: List of product IDs
"""
products = []
with Transaction().set_context({'current_channel': channel.id}):
for listing in channel.product_listings:
products.append(
listing.product.update_from_magento()
)
return map(int, products)
class ExportMagentoCatalogStart(ModelView):
'Export Catalog View'
__name__ = 'magento.export_catalog.start'
category = fields.Many2One(
'product.category', 'Magento Category', required=True,
domain=[('magento_ids', 'not in', [])],
)
products = fields.Many2Many(
'product.product', None, None, 'Products', required=True,
domain=[('channel_listings', '=', None)],
)
attribute_set = fields.Selection(
[], 'Attribute Set', required=True,
)
@classmethod
def get_attribute_sets(cls):
"""Get the list of attribute sets from magento for the current channel
:return: Tuple of attribute sets where each tuple consists of (ID,Name)
"""
Channel = Pool().get('sale.channel')
if not Transaction().context.get('active_id'):
return []
channel = Channel(Transaction().context['active_id'])
channel.validate_magento_channel()
with magento.ProductAttributeSet(
channel.magento_url, channel.magento_api_user,
channel.magento_api_key
) as attribute_set_api:
attribute_sets = attribute_set_api.list()
return [(
attribute_set['set_id'], attribute_set['name']
) for attribute_set in attribute_sets]
@classmethod
def fields_view_get(cls, view_id=None, view_type='form'):
"""This method is overridden to populate the selection field for
attribute_set with the attribute sets from the current channel's
counterpart on magento.
This overridding has to be done because `active_id` is not available
if the meth:get_attribute_sets is called directly from the field.
"""
rv = super(
ExportMagentoCatalogStart, cls
).fields_view_get(view_id, view_type)
rv['fields']['attribute_set']['selection'] = cls.get_attribute_sets()
return rv
class ExportMagentoCatalog(Wizard):
'''Export catalog
Export the products selected to the selected category for this channel
'''
__name__ = 'magento.export_catalog'
start = StateView(
'magento.export_catalog.start',
'magento.magento_export_catalog_start_view_form', [
Button('Cancel', 'end', 'tryton-cancel'),
Button('Continue', 'export_', 'tryton-ok', default=True),
]
)
export_ = StateAction('product.act_template_form')
def do_export_(self, action):
"""
Export the products selected to the selected category for this website
"""
Channel = Pool().get('sale.channel')
channel = Channel(Transaction().context['active_id'])
channel.validate_magento_channel()
with Transaction().set_context({
'current_channel': channel.id,
'magento_attribute_set': self.start.attribute_set,
}):
for product in self.start.products:
product.export_to_magento(self.start.category)
action['pyson_domain'] = PYSONEncoder().encode(
[('id', 'in', map(int, self.start.products))])
return action, {}
def transition_export_(self):
return 'end'