payment button connected + supported payment by quote reference #168

Merged
tech merged 3 commits from pay-167 into main 2025-12-25 16:24:56 +00:00
Showing only changes of commit 2d38b974ba - Show all commits

View File

@@ -143,12 +143,9 @@ func (h *quotePaymentsCommand) Execute(ctx context.Context, req *orchestratorv1.
if err := quotesStore.Create(ctx, record); err != nil { if err := quotesStore.Create(ctx, record); err != nil {
return gsresponse.Auto[orchestratorv1.QuotePaymentsResponse](h.logger, mservice.PaymentOrchestrator, err) return gsresponse.Auto[orchestratorv1.QuotePaymentsResponse](h.logger, mservice.PaymentOrchestrator, err)
} }
h.logger.Info( h.logger.Info("Stored payment quotes",
"stored payment quotes", zap.String("quote_ref", quoteRef), mzap.ObjRef("org_ref", orgRef),
zap.String("quote_ref", quoteRef), zap.String("idempotency_key", baseKey), zap.Int("quote_count", len(quotes)),
mzap.ObjRef("org_ref", orgRef),
zap.String("idempotency_key", baseKey),
zap.Int("quote_count", len(quotes)),
) )
} }