-
Notifications
You must be signed in to change notification settings - Fork 77
/
sale.py
758 lines (645 loc) · 25.7 KB
/
sale.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
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
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
# -*- coding: utf-8 -*-
"""
sale
Sale
:copyright: (c) 2013-2014 by Openlabs Technologies & Consulting (P) Limited
:license: AGPLv3, see LICENSE for more details.
"""
import xmlrpclib
import magento
from openerp.osv import fields, osv
from openerp.tools.translate import _
class MagentoOrderState(osv.Model):
"""Magento - OpenERP Order State map
This model stores a map of order states between OpenERP and Magento.
This allows the user to configure the states mapping according to his/her
convenience. This map is used to process orders in OpenERP when they are
imported. This is also used to map the order status on magento when
sales are exported. This also allows the user to determine in which state
he/she wants the order to be imported in.
"""
_name = 'magento.order_state'
_description = 'Magento - OpenERP Order State map'
_columns = dict(
name=fields.char('Name', required=True, size=100, readonly=True),
code=fields.char('Code', required=True, size=100, readonly=True),
openerp_state=fields.selection([
('draft', 'Draft Quotation'),
('sent', 'Quotation Sent'),
('cancel', 'Cancelled'),
('waiting_date', 'Waiting Schedule'),
('progress', 'Sales Order'),
('manual', 'Sale to Invoice'),
('shipping_except', 'Shipping Exception'),
('invoice_except', 'Invoice Exception'),
('done', 'Done')
], 'OpenERP State'),
use_for_import=fields.boolean('Import orders in this magento state'),
instance=fields.many2one(
'magento.instance', 'Magento Instance', required=True,
ondelete='cascade',
)
)
_defaults = dict(
use_for_import=lambda *a: 1,
)
_sql_constraints = [
(
'code_instance_unique', 'unique(code, instance)',
'Each magento state must be unique by code in an instance'
),
]
def create_all_using_magento_data(
self, cursor, user, magento_data, context
):
"""This method expects a dictionary in which the key is the state
code on magento and value is the state name on magento.
This method will create each of the item in the dict as a record in
this model.
:param cursor: Database cursor
:param user: ID of current user
:param magento_data: Magento data in form of dict
:param context: Application context
:return: List of browse records of records created
"""
new_records = []
default_order_states_map = {
# 'sent' here means quotation state, thats an OpenERP fuck up.
'new': 'sent',
'canceled': 'cancel',
'closed': 'done',
'complete': 'done',
'processing': 'progress',
'holded': 'sent',
'pending_payment': 'sent',
'payment_review': 'sent',
}
for code, name in magento_data.iteritems():
if self.search(cursor, user, [
('code', '=', code),
('instance', '=', context['magento_instance'])
], context=context):
continue
new_records.append(
self.create(cursor, user, {
'name': name,
'code': code,
'instance': context['magento_instance'],
'openerp_state': default_order_states_map.get(code),
}, context=context)
)
return self.browse(
cursor, user, new_records, context=context
)
class SaleLine(osv.osv):
"Sale Line"
_inherit = 'sale.order.line'
_columns = dict(
magento_notes=fields.text("Magento Notes"),
)
class Sale(osv.Model):
"Sale"
_inherit = 'sale.order'
_columns = dict(
magento_id=fields.integer('Magento ID', readonly=True),
magento_instance=fields.many2one(
'magento.instance', 'Magento Instance', readonly=True,
),
magento_store_view=fields.many2one(
'magento.store.store_view', 'Store View', readonly=True,
),
)
_sql_constraints = [(
'magento_id_instance_unique', 'unique(magento_id, magento_instance)',
'A sale must be unique in an instance'
)]
def check_store_view_instance(self, cursor, user, ids, context=None):
"""
Checks if instance of store view is same as instance of sale order
:param cursor: Database cursor
:param user: ID of current user
:param ids: IDs of records
:param context: Application context
:return: True or False
"""
for sale in self.browse(cursor, user, ids, context=context):
if sale.magento_id:
if sale.magento_store_view.instance != sale.magento_instance:
return False
return True
_constraints = [
(
check_store_view_instance,
'Error: Store view must have same instance as sale order',
[]
)
]
def find_or_create_using_magento_data(
self, cursor, user, order_data, context
):
"""
Find or Create sale using magento data
:param cursor: Database cursor
:param user: ID of current user
:param order_data: Order Data from magento
:param context: Application context
:returns: Browse record of sale order found/created
"""
sale = self.find_using_magento_data(
cursor, user, order_data, context
)
if not sale:
sale = self.create_using_magento_data(
cursor, user, order_data, context
)
return sale
def find_using_magento_data(
self, cursor, user, order_data, context
):
"""
Create sale using magento data
:param cursor: Database cursor
:param user: ID of current user
:param order_data: Order Data from magento
:param context: Application context
:returns: Browse record of sale order found
"""
# each sale has to be unique in an instance of magento
sale_ids = self.search(cursor, user, [
('magento_id', '=', int(order_data['order_id'])),
('magento_instance', '=', context.get('magento_instance'))
], context=context)
return sale_ids and self.browse(
cursor, user, sale_ids[0], context
) or None
def find_or_create_using_magento_increment_id(
self, cursor, user, order_increment_id, context
):
"""
Finds or create sale order using magento ID
:param cursor: Database cursor
:param user: ID of current user
:param order_increment_id: Order increment ID from magento
:type order_increment_id: string
:param context: Application context
:returns: Browse record of sale order created/found
"""
instance_obj = self.pool.get('magento.instance')
sale = self.find_using_magento_increment_id(
cursor, user, order_increment_id, context
)
if not sale:
instance = instance_obj.browse(
cursor, user, context['magento_instance'], context=context
)
with magento.Order(
instance.url, instance.api_user, instance.api_key
) as order_api:
order_data = order_api.info(order_increment_id)
sale = self.create_using_magento_data(
cursor, user, order_data, context
)
return sale
def find_using_magento_id(self, cursor, user, order_id, context):
"""
Create sale using magento id
:param cursor: Database cursor
:param user: ID of current user
:param order_id: Order ID from magento
:type order_id: integer
:param context: Application context
:returns: Browse record of sale order created
"""
# each sale has to be unique in an instance of magento
sale_ids = self.search(cursor, user, [
('magento_id', '=', order_id),
('magento_instance', '=', context.get('magento_instance'))
], context=context)
return sale_ids and self.browse(
cursor, user, sale_ids[0], context
) or None
def find_using_magento_increment_id(
self, cursor, user, order_increment_id, context
):
"""
Create sale using magento id
:param cursor: Database cursor
:param user: ID of current user
:param order_increment_id: Order Increment ID from magento
:type order_increment_id: string
:param context: Application context
:returns: Browse record of sale order created
"""
instance_obj = self.pool.get('magento.instance')
instance = instance_obj.browse(
cursor, user, context['magento_instance'], context=context
)
# Each sale has to be unique in an instance of magento
sale_ids = self.search(cursor, user, [
('name', '=', instance.order_prefix + order_increment_id),
('magento_instance', '=', context['magento_instance'])
], context=context)
return sale_ids and self.browse(
cursor, user, sale_ids[0], context
) or None
def create_using_magento_data(self, cursor, user, order_data, context):
"""
Create a sale order from magento data
:param cursor: Database cursor
:param user: ID of current user
:param order_data: Order Data from magento
:param context: Application context
:returns: Browse record of sale order created
"""
currency_obj = self.pool.get('res.currency')
store_view_obj = self.pool.get('magento.store.store_view')
partner_obj = self.pool.get('res.partner')
store_view = store_view_obj.browse(
cursor, user, context['magento_store_view'], context
)
if not store_view.shop:
raise osv.except_osv(
_('Not Found!'),
_(
'Magento Store %s should have a shop configured.'
% store_view.store.name
)
)
if not store_view.shop.pricelist_id:
raise osv.except_osv(
_('Not Found!'),
_(
'Shop on store %s does not have a pricelist!'
% store_view.store.name
)
)
instance = store_view.instance
currency = currency_obj.search_using_magento_code(
cursor, user, order_data['order_currency_code'], context
)
if order_data['customer_id']:
partner = partner_obj.find_or_create_using_magento_id(
cursor, user, order_data['customer_id'], context
)
else:
partner = partner_obj.create_using_magento_data(
cursor, user, {
'firstname': order_data['customer_firstname'],
'lastname': order_data['customer_lastname'],
'email': order_data['customer_email'],
'magento_id': 0
},
context
)
partner_invoice_address = \
partner_obj.find_or_create_address_as_partner_using_magento_data(
cursor, user, order_data['billing_address'], partner, context
)
partner_shipping_address = \
partner_obj.find_or_create_address_as_partner_using_magento_data(
cursor, user, order_data['shipping_address'], partner, context
)
sale_data = {
'name': instance.order_prefix + order_data['increment_id'],
'shop_id': store_view.shop.id,
'date_order': order_data['created_at'].split()[0],
'partner_id': partner.id,
'pricelist_id': store_view.shop.pricelist_id.id,
'currency_id': currency.id,
'partner_invoice_id': partner_invoice_address.id,
'partner_shipping_id': partner_shipping_address.id,
'magento_id': int(order_data['order_id']),
'magento_instance': instance.id,
'magento_store_view': store_view.id,
'order_line': self.get_item_line_data_using_magento_data(
cursor, user, order_data, context
)
}
if float(order_data.get('shipping_amount')):
sale_data['order_line'].append(
self.get_shipping_line_data_using_magento_data(
cursor, user, order_data, context
)
)
if float(order_data.get('discount_amount')):
sale_data['order_line'].append(
self.get_discount_line_data_using_magento_data(
cursor, user, order_data, context
)
)
sale_id = self.create(
cursor, user, sale_data, context=context
)
sale = self.browse(cursor, user, sale_id, context)
# Process sale now
self.process_sale_using_magento_state(
cursor, user, sale, order_data['state'], context
)
return sale
def get_item_line_data_using_magento_data(
self, cursor, user, order_data, context
):
"""Make data for an item line from the magento data.
This method decides the actions to be taken on different product types
:param cursor: Database cursor
:param user: ID of current user
:param order_data: Order Data from magento
:param context: Application context
:return: List of data of order lines in required format
"""
website_obj = self.pool.get('magento.instance.website')
product_obj = self.pool.get('product.product')
bom_obj = self.pool.get('mrp.bom')
line_data = []
for item in order_data['items']:
if not item['parent_item_id']:
taxes = self.get_magento_taxes(cursor, user, item, context)
# If its a top level product, create it
values = {
'name': item['name'],
'price_unit': float(item['price']),
'product_uom':
website_obj.get_default_uom(
cursor, user, context
).id,
'product_uom_qty': float(item['qty_ordered']),
'magento_notes': item['product_options'],
'type': 'make_to_order',
'tax_id': [(6, 0, taxes)],
'product_id':
product_obj.find_or_create_using_magento_id(
cursor, user, item['product_id'],
context=context
).id
}
line_data.append((0, 0, values))
# If the product is a child product of a bundle product, do not
# create a separate line for this.
if 'bundle_option' in item['product_options'] and \
item['parent_item_id']:
continue
# Handle bundle products.
# Find/Create BoMs for bundle products
# If no bundle products exist in sale, nothing extra will happen
bom_obj.find_or_create_bom_for_magento_bundle(
cursor, user, order_data, context
)
return line_data
def get_magento_taxes(self, cursor, user, item_data, context):
"""Match the tax in openerp with the tax rate from magento
Use this tax on sale line
:param cursor: Database cursor
:param user: ID of current user
:param item_data: Item Data from magento
:param context: Application context
"""
tax_obj = self.pool.get('account.tax')
# Magento does not return the name of tax
# First try matching with the percent
tax_ids = tax_obj.search(cursor, user, [
('amount', '=', float(item_data['tax_percent']) / 100),
('used_on_magento', '=', True)
], context=context)
# FIXME This will fail in the case of bundle products as tax comes
# comes with the children and not with parent
return tax_ids
def get_magento_shipping_tax(self, cursor, user, order_data, context):
"""Match the tax in openerp which has been selected to be applied on
magento shipping.
:param cursor: Database cursor
:param user: ID of current user
:param order_data: Order Data from magento
:param context: Application context
"""
tax_obj = self.pool.get('account.tax')
# Magento does not return the name of tax or rate
# We can match only using the field set on tax in openerp itself
tax_ids = tax_obj.search(cursor, user, [
('apply_on_magento_shipping', '=', True),
('used_on_magento', '=', True)
], context=context)
return tax_ids
def get_shipping_line_data_using_magento_data(
self, cursor, user, order_data, context
):
"""
Create a shipping line for the given sale using magento data
:param cursor: Database cursor
:param user: ID of current user
:param order_data: Order Data from magento
:param context: Application context
"""
website_obj = self.pool.get('magento.instance.website')
taxes = self.get_magento_shipping_tax(
cursor, user, order_data, context
)
return (0, 0, {
'name': 'Magento Shipping',
'price_unit': float(order_data.get('shipping_incl_tax', 0.00)),
'product_uom':
website_obj.get_default_uom(
cursor, user, context
).id,
'tax_id': [(6, 0, taxes)],
'magento_notes': ' - '.join([
order_data['shipping_method'],
order_data['shipping_description']
])
})
def get_discount_line_data_using_magento_data(
self, cursor, user, order_data, context
):
"""
Create a discount line for the given sale using magento data
:param cursor: Database cursor
:param user: ID of current user
:param order_data: Order Data from magento
:param context: Application context
"""
website_obj = self.pool.get('magento.instance.website')
return (0, 0, {
'name': order_data['discount_description'] or 'Magento Discount',
'price_unit': float(order_data.get('discount_amount', 0.00)),
'product_uom':
website_obj.get_default_uom(
cursor, user, context
).id,
'magento_notes': order_data['discount_description'],
})
def process_sale_using_magento_state(
self, cursor, user, sale, magento_state, context
):
"""Process the sale in openerp based on the state of order
when its imported from magento
:param cursor: Database cursor
:param user: ID of current user
:param sale: Browse record of sale
:param magento_state: State on magento the order was imported in
:param context: Application context
"""
# TODO: Improve this method for invoicing and shipping etc
magento_order_state_obj = self.pool.get('magento.order_state')
state_ids = magento_order_state_obj.search(cursor, user, [
('code', '=', magento_state),
('instance', '=', context['magento_instance'])
])
if not state_ids:
raise osv.except_osv(
_('Order state not found!'),
_('Order state not found/mapped in OpenERP! '
'Please import order states on instance'
)
)
state = magento_order_state_obj.browse(
cursor, user, state_ids[0], context=context
)
openerp_state = state.openerp_state
# If order is canceled, just cancel it
if openerp_state == 'cancel':
self.action_cancel(cursor, user, [sale.id], context)
return
# Order is not canceled, move it to quotation
self.action_button_confirm(cursor, user, [sale.id], context)
if openerp_state in ['closed', 'complete', 'processing']:
self.action_wait(cursor, user, [sale.id], context)
if openerp_state in ['closed', 'complete']:
self.action_done(cursor, user, [sale.id], context)
def export_order_status_to_magento(self, cursor, user, sale, context):
"""
Export order status to magento.
:param cursor: Database cursor
:param user: ID of current user
:param sale: Browse record of sale
:param context: Application context
:return: Browse record of sale
"""
if not sale.magento_id:
return sale
instance = sale.magento_instance
if sale.state == 'cancel':
increment_id = sale.name.split(instance.order_prefix)[1]
# This try except is placed because magento might not accept this
# order status change due to its workflow constraints.
# TODO: Find a better way to do it
try:
with magento.Order(
instance.url, instance.api_user, instance.api_key
) as order_api:
order_api.cancel(increment_id)
except xmlrpclib.Fault, f:
if f.faultCode == 103:
return sale
# TODO: Add logic for other sale states also
return sale
class MagentoInstanceCarrier(osv.Model):
"Magento Instance Carrier"
_name = 'magento.instance.carrier'
_columns = dict(
code=fields.char("Code", readonly=True),
title=fields.char('Title', readonly=True),
carrier=fields.many2one('delivery.carrier', 'Carrier'),
instance=fields.many2one(
'magento.instance', 'Magento Instance', readonly=True
),
)
_sql_constraints = [(
'code_instance_unique', 'unique(code, instance)',
'Shipping method must be unique in instance'
)]
def create_all_using_magento_data(
self, cursor, user, magento_data, context
):
"""
Creates record for list of carriers sent by magento.
It creates a new carrier only if one with the same code does not
exist for this instance.
:param cursor: Database cursor
:param user: ID of current user
:param magento_data: List of Dictionary of carriers sent by magento
:param context: Application context
:return: List of Browse record of carriers Created/Found
"""
carriers = []
for data in magento_data:
carrier = self.find_using_magento_data(
cursor, user, data, context
)
if carrier:
carriers.append(carrier)
else:
# Create carrier if not found
carriers.append(
self.create_using_magento_data(
cursor, user, data, context
)
)
return carriers
def create_using_magento_data(self, cursor, user, carrier_data, context):
"""
Create record for carrier data sent by magento
:param cursor: Database cursor
:param user: ID of current user
:param carrier_data: Dictionary of carrier sent by magento
:param context: Application context
:return: Browse record of carrier created
"""
carrier_id = self.create(
cursor, user, {
'code': carrier_data['code'],
'title': carrier_data['label'],
'instance': context['magento_instance'],
}, context=context
)
return self.browse(cursor, user, carrier_id, context)
def find_using_magento_data(self, cursor, user, carrier_data, context):
"""
Search for an existing carrier by matching code and instance.
If found, return its browse record else None
:param cursor: Database cursor
:param user: ID of current user
:param carrier_data: Dictionary of carrier sent by magento
:param context: Application context
:return: Browse record of carrier found or None
"""
carrier_ids = self.search(
cursor, user, [
('code', '=', carrier_data['code']),
('instance', '=', context['magento_instance']),
], context=context
)
return carrier_ids and self.browse(
cursor, user, carrier_ids[0], context
) or None
class CustomerShipment(osv.Model):
"Customer Shipment"
_inherit = 'stock.picking'
_columns = dict(
magento_instance=fields.related(
'sale_id', 'magento_instance', type='many2one',
relation='magento.instance', string=' Magento Instance',
readonly=True, store=True
),
magento_store_view=fields.related(
'sale_id', 'magento_store_view', type='many2one',
relation='magento.store.store_view', string="Magento Store View",
readonly=True,
),
# Shipment has a separate increment ID
magento_increment_id=fields.char(
"Magento Increment ID", readonly=True
),
write_date=fields.datetime("Write Date", readonly=True),
is_tracking_exported_to_magento=fields.boolean(
"Is Tracking Info Exported To Magento"
),
)
_defaults = dict(
is_tracking_exported_to_magento=lambda *a: 0,
)
_sql_constraints = [
(
'instance_increment_id_unique',
'UNIQUE(magento_instance, magento_increment_id)',
'Customer shipment should be unique in magento instance'
),
]