udemy-go-web-2/cmd/web/templates/sale.page.gohtml

35 lines
1.0 KiB
Plaintext
Raw Normal View History

2024-08-21 21:43:16 +00:00
{{template "base" .}}
{{define "title"}}
2024-08-22 07:56:14 +00:00
{{index .StringMap "title"}}
2024-08-21 21:43:16 +00:00
{{end}}
{{define "content"}}
<h2 class="mt-5">Sale</h2>
<hr>
2024-08-22 07:56:14 +00:00
<div>
<strong>Order No:</strong> <span id="order-no"></span><br>
<strong>Customer:</strong> <span id="customer"></span><br>
<strong>Product:</strong> <span id="product"></span><br>
<strong>Quantity:</strong> <span id="quantity"></span><br>
<strong>Total Sale:</strong> <span id="amount"></span><br>
</div>
<hr>
<a href='{{index .StringMap "cancel"}}' class="btn btn-info">Cancel</a>
2024-08-22 12:05:46 +00:00
<a id="refund-btn" href="#!" class="btn btn-warning">Refund Order</a>
<input type="hidden" id="pi" value="">
<input type="hidden" id="charge-amount" value="">
<input type="hidden" id="currency" value="">
2024-08-21 21:43:16 +00:00
{{end}}
{{define "js"}}
2024-08-22 12:05:46 +00:00
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
2024-08-21 21:43:16 +00:00
<script type="module">
2024-08-22 12:05:46 +00:00
import {showInfo, refund} from "/static/js/sale.js"
2024-08-21 21:43:16 +00:00
showInfo({{.API}});
2024-08-22 12:05:46 +00:00
document.getElementById("refund-btn").addEventListener("click", function(event) {
refund({{.API}});
});
2024-08-21 21:43:16 +00:00
</script>
{{end}}