Commit 147fe31e authored by Mahmoud Aglan's avatar Mahmoud Aglan

s

parent 66fe4912
...@@ -559,8 +559,8 @@ document.addEventListener('DOMContentLoaded', function() { ...@@ -559,8 +559,8 @@ document.addEventListener('DOMContentLoaded', function() {
}).then(function(r){return r.json();}).then(function(data) { }).then(function(r){return r.json();}).then(function(data) {
if (data.success) { if (data.success) {
var sub = data.subscription_amount || 0; var sub = data.subscription_amount || 0;
var card = <?= (int) $registration['card_fee'] ?>; var card = <?= isset($registration) ? (int) $registration['card_fee'] : 0 ?>;
var form = <?= (int) $registration['form_fee'] ?>; var form = <?= isset($registration) ? (int) $registration['form_fee'] : 0 ?>;
document.getElementById('feeSub').textContent = Number(sub).toLocaleString() + ' ج.م'; document.getElementById('feeSub').textContent = Number(sub).toLocaleString() + ' ج.م';
document.getElementById('feeTotal').textContent = Number(sub + card + form).toLocaleString() + ' ج.م'; document.getElementById('feeTotal').textContent = Number(sub + card + form).toLocaleString() + ' ج.م';
document.getElementById('feeBreakdown').style.display = ''; document.getElementById('feeBreakdown').style.display = '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment