testeando el notify

This commit is contained in:
2025-11-03 19:31:28 +01:00
parent 88650fc5e8
commit 725cff9b51
10 changed files with 716 additions and 226 deletions

View File

@ -3,7 +3,7 @@
<div class="row g-4">
<div class="col-lg-4 col-sm-6">
<div class="form-check card-radio">
<input id="paymentMethod01" name="paymentMethod" type="radio" class="form-check-input" checked>
<input id="paymentMethod01" name="paymentMethod" type="radio" class="form-check-input" checked value="card">
<label class="form-check-label" for="paymentMethod01">
<span class="fs-16 text-muted me-2"><i class="mdi mdi-credit-card-outline align-bottom"></i></span>
<span class="fs-14 text-wrap" th:text="#{checkout.payment.card}"></span>
@ -13,7 +13,7 @@
</div>
<div class="col-lg-4 col-sm-6">
<div class="form-check card-radio">
<input id="paymentMethod02" name="paymentMethod" type="radio" class="form-check-input">
<input id="paymentMethod02" name="paymentMethod" type="radio" class="form-check-input" value="bizum">
<label class="form-check-label" for="paymentMethod02">
<span class="fs-16 text-muted me-2"><i class="mdi mdi-wallet-outline align-bottom"></i></span>
<span class="fs-14 text-wrap" th:text="#{checkout.payment.bizum}"></span>
@ -24,7 +24,7 @@
<div class="col-lg-4 col-sm-6">
<div class="form-check card-radio">
<input id="paymentMethod03" name="paymentMethod" type="radio" class="form-check-input">
<input id="paymentMethod03" name="paymentMethod" type="radio" class="form-check-input" value="bank-transfer">
<label class="form-check-label" for="paymentMethod03">
<span class="fs-16 text-muted me-2"><i class="mdi mdi-bank-transfer align-bottom"></i></span>
<span class="fs-14 text-wrap" th:text="#{checkout.payment.bank-transfer}"></span>

View File

@ -39,8 +39,8 @@
</tbody>
</table>
<form th:action="@{/pagos/redsys/crear}" method="post">
<input type="hidden" name="order" value="123456789012" />
<input type="hidden" name="amountCents" th:value="${summary.amountCents}" />
<input type="hidden" name="method" value="card"/>
<button id="btn-checkout" type="submit" class="btn btn-secondary w-100 mt-2"
th:text="#{checkout.make-payment}" disabled>Checkout</button>
</form>