Skip to content

Commit

Permalink
map Order ID from AuthorizeCCTransaction to invoice_id
Browse files Browse the repository at this point in the history
  • Loading branch information
erincdustin committed Dec 5, 2024
1 parent 7217256 commit 45bb21d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public List<PurchaseUnit> MapToPurchaseUnit(AuthorizeCCTransaction transaction,
},
description = transaction?.OrderWorksheet?.Order?.Comments,
reference_id = Guid.NewGuid().ToString(),
invoice_id = Guid.NewGuid().ToString(),
invoice_id = transaction?.OrderID,
};
if (address != null)
{
Expand Down

0 comments on commit 45bb21d

Please sign in to comment.