Файл: modules/balance/tmpls/home.html
Строк: 102
<?php
<h1>Баланс</h1>
<hr />
<div style="font-size:17px;font-weight:bold;"><i class="home-wallet iconred"></i> {money} руб. | {balance} балл.<div style="float: right;">
{{if({balance}!=0)}}
<script>
$('#balmoney').modal({
show: false
});
</script>
{{endif}}
{{if({money}!=0)}}
<button class="btn btn-inverse" href="#moneybal" data-toggle="modal">Поменять деньги на баллы</button>
<div class="modal fade" id="moneybal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display:none;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Поменять деньги на баллы</h3>
</div>
<div class="modal-body">
<input type="text" id="dengi" placeholder="{money}" style="margin:0;width:100px;"> <font color="gray" size="1px">Комиссия 0%, 1 рубль = 10 баллов</font>
</div>
<div class="modal-footer">
<button class="btn btn-inverse" href="javascript:" onclick="ToBalls()">Поменять</button>
</div>
</div>
<script>
$('#moneybal').modal({
show: false
});
</script>
{{endif}}
<button class="btn btn-danger" href="#moneyplus" data-toggle="modal">Пополнить</button>
<div class="modal fade" id="moneyplus" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display:none;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Пополнить баланс</h3>
</div>
<div class="modal-body">
<input type="text" id="payment" placeholder="Сумма в рублях" style="margin:0;width:100px;"> <font color="gray" size="1px">Комиссия 0%</font>
<br /><br />
<div>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-inverse" href="javascript:" onclick="SerializePayment()">Оплатить</button>
</div>
</div>
<script>
$('#moneyplus').modal({
show: false
});
function SerializePayment(){
if($('#payment').val()>0){
window.location = '/payment/serialize?summ='+$('#payment').val();
} else {
Noty.Show('red','Сумма указана неверно','error');
}
}
</script>
</div></div>
<script>
$('#moneypol').modal({
show: false
});
</script>
<div class="clear"></div><br>
<h1>История операций</h1>
<table class="table">
<tbody>
<tr><th>Операция</th><th>Изменение</th><th>Дата</th></tr>
{{set('orders',Core::MysqlSelect('orders','`summ`,`date`,`status`,`bal`',array('uid'=>'{uid}'),'ORDER BY `date` DESC LIMIT 0,10'))}}
{{foreach($SET['orders'] as $ord)}}
{{if($ord['status']=='2')}}
<tr><td>Покупка пакета </td><td>+{{echo($ord['bal'])}} балл.</td><td>{{echo($ord['date'])}}</td></tr>
{{else}}
<tr><td>Пополнение баланса</td><td>+{{echo($ord['summ'])}} рублей.</td><td>{{echo($ord['date'])}}</td></tr>
{{endif}}
{{endforeach}}
{{if(!is_array($SET['orders']))}}
<div class="alert">
Вы ещё не пополняли свой счёт.
</div>
{{endif}}
</tbody>
</table>
<script type="text/javascript">
function ToMoney(){
col = $('#bally').val();
$.post("/ajax/balance/changetomoney", {'col':col}).done(function(data) {
v = JSON.parse(data);
if(v.responce=='ok'){
Noty.Show('green','Обмен осуществлён по курсу!');
location.reload();
} else {
Noty.Show('red','Ошибка. Недостаточно баллов.','error');
}
});
}
function ToBalls(){
col = $('#dengi').val();
$.post("/ajax/balance/changetoballs", {'col':col}).done(function(data) {
v = JSON.parse(data);
if(v.responce=='ok'){
Noty.Show('green','Обмен осуществлён по курсу!');
location.reload();
} else {
Noty.Show('red','Ошибка. Недостаточно денег.','error');
}
});
}
</script>
?>