Change how we import Member.id
from CORE
to match what we do for `Customer.id`
This commit is contained in:
parent
6e51f36fc5
commit
154722b78d
|
@ -480,10 +480,10 @@ class MemberImporter(FromCOREPOSAPI, importing.model.MemberImporter):
|
|||
"""
|
||||
Importer for member data from CORE POS API.
|
||||
"""
|
||||
key = 'id'
|
||||
key = 'number'
|
||||
supported_fields = [
|
||||
'id',
|
||||
'number',
|
||||
'id',
|
||||
'customer_uuid',
|
||||
'joined',
|
||||
'withdrew',
|
||||
|
@ -548,8 +548,8 @@ class MemberImporter(FromCOREPOSAPI, importing.model.MemberImporter):
|
|||
withdrew = withdrew.date()
|
||||
|
||||
return {
|
||||
'id': str(member['cardNo']),
|
||||
'number': int(member['cardNo']),
|
||||
'id': str(member['customerAccountID']),
|
||||
'customer_uuid': customer.uuid,
|
||||
'joined': joined,
|
||||
'withdrew': withdrew,
|
||||
|
|
Loading…
Reference in a new issue