add proposalId in preparePay response
fixes https://bugs.taler.net/n/6535
This commit is contained in:
parent
09b5bfe0db
commit
bf9c2ae7f9
@ -1085,6 +1085,7 @@ export async function preparePayForUri(
|
||||
paid: true,
|
||||
amountRaw: Amounts.stringify(purchase.contractData.amount),
|
||||
amountEffective: Amounts.stringify(purchase.payCostInfo.totalCost),
|
||||
proposalId,
|
||||
};
|
||||
} else if (!purchase.timestampFirstSuccessfulPay) {
|
||||
return {
|
||||
@ -1094,6 +1095,7 @@ export async function preparePayForUri(
|
||||
paid: false,
|
||||
amountRaw: Amounts.stringify(purchase.contractData.amount),
|
||||
amountEffective: Amounts.stringify(purchase.payCostInfo.totalCost),
|
||||
proposalId,
|
||||
};
|
||||
} else {
|
||||
const paid = !purchase.paymentSubmitPending;
|
||||
@ -1105,6 +1107,7 @@ export async function preparePayForUri(
|
||||
amountRaw: Amounts.stringify(purchase.contractData.amount),
|
||||
amountEffective: Amounts.stringify(purchase.payCostInfo.totalCost),
|
||||
...(paid ? { nextUrl: purchase.contractData.orderId } : {}),
|
||||
proposalId,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -416,6 +416,7 @@ export const codecForPreparePayResultAlreadyConfirmed = (): Codec<
|
||||
.property("paid", codecForBoolean())
|
||||
.property("contractTerms", codecForAny())
|
||||
.property("contractTermsHash", codecForString())
|
||||
.property("proposalId", codecForString())
|
||||
.build("PreparePayResultAlreadyConfirmed");
|
||||
|
||||
export const codecForPreparePayResult = (): Codec<PreparePayResult> =>
|
||||
@ -462,6 +463,7 @@ export interface PreparePayResultAlreadyConfirmed {
|
||||
amountRaw: string;
|
||||
amountEffective: string;
|
||||
contractTermsHash: string;
|
||||
proposalId: string;
|
||||
}
|
||||
|
||||
export interface BankWithdrawDetails {
|
||||
|
Loading…
Reference in New Issue
Block a user