Skip to content
Merged

Dev #2500

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ await GetLevel1DecisionUserNameAsync(paymentRequest),
}
]
};

return casInvoice;
}

Expand Down Expand Up @@ -249,6 +249,9 @@ await invoiceManager.UpdatePaymentRequestWithInvoiceAsync(
public async Task<InvoiceResponse> CreateInvoiceAsync(Invoice casAPInvoice)
{
string jsonString = JsonSerializer.Serialize(casAPInvoice);

Logger.LogDebug("CAS Invoice JSON: {CasInvoiceJson}", jsonString);

var authToken = await iTokenService.GetAuthTokenAsync(CurrentTenant.Id ?? Guid.Empty);
string casBaseUrl = await endpointManagementAppService.GetUgmUrlByKeyNameAsync(DynamicUrlKeyNames.PAYMENT_API_BASE);
var resource = $"{casBaseUrl}/{CFS_APINVOICE}/";
Expand Down
Loading