Add PayPal transaction memo to note field
This commit is contained in:
parent
218dc60fb4
commit
0d1ab359a4
|
@ -124,11 +124,12 @@ def build_tx(data):
|
||||||
def create_unmatched_member_tx(data):
|
def create_unmatched_member_tx(data):
|
||||||
transactions = models.Transaction.objects
|
transactions = models.Transaction.objects
|
||||||
|
|
||||||
report_memo = 'Cant link sender name, {} {}, email: {}, note: {}'.format(
|
report_memo = 'Cant link sender name, {} {}, email: {}, note: {} - {}'.format(
|
||||||
data.get('first_name', 'unknown'),
|
data.get('first_name', 'unknown'),
|
||||||
data.get('last_name', 'unknown'),
|
data.get('last_name', 'unknown'),
|
||||||
data.get('payer_email', 'unknown'),
|
data.get('payer_email', 'unknown'),
|
||||||
data.get('custom', 'none'),
|
data.get('custom', 'none'),
|
||||||
|
data.get('memo', 'none'),
|
||||||
)
|
)
|
||||||
|
|
||||||
return transactions.create(
|
return transactions.create(
|
||||||
|
@ -173,11 +174,12 @@ def create_unmatched_purchase_tx(data, member):
|
||||||
transactions = models.Transaction.objects
|
transactions = models.Transaction.objects
|
||||||
|
|
||||||
user = getattr(member, 'user', None)
|
user = getattr(member, 'user', None)
|
||||||
report_memo = 'Unknown payment reason, {} {}, email: {}, note: {}'.format(
|
report_memo = 'Unknown payment reason, {} {}, email: {}, note: {} - {}'.format(
|
||||||
data.get('first_name', 'unknown'),
|
data.get('first_name', 'unknown'),
|
||||||
data.get('last_name', 'unknown'),
|
data.get('last_name', 'unknown'),
|
||||||
data.get('payer_email', 'unknown'),
|
data.get('payer_email', 'unknown'),
|
||||||
data.get('custom', 'none'),
|
data.get('custom', 'none'),
|
||||||
|
data.get('memo', 'none'),
|
||||||
)
|
)
|
||||||
|
|
||||||
return transactions.create(
|
return transactions.create(
|
||||||
|
|
Loading…
Reference in New Issue
Block a user