-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaturas.php
67 lines (59 loc) · 2.75 KB
/
faturas.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
require 'banco.php';
include '/includes/header.php';
$alunos = $Banco->query("SELECT * FROM alunos;");
$hoje = date("Y-m-d");
if(is_array($alunos)) foreach($alunos as $aluno){
$total = 0;
$matriculas = $Banco->query("SELECT * FROM matriculas WHERE CODALUNO = {$aluno['CODALUNO']};");
if(is_array($matriculas)) foreach($matriculas as $matricula){
$turma = $Banco->query("SELECT * FROM turmas WHERE CODTURMA = {$matricula['CODTURMA']};");
if(isset($turma[0]['CODMODALIDADE'])) $modalidade = $Banco->query("SELECT * FROM modalidades WHERE CODMODALIDADE = {$turma[0]['CODMODALIDADE']};");
$total += $modalidade[0]['MENSALIDADE_BASE'];
}
//Gera o vencimento para mais um mes
$vencimento = date("Y-m-d", mktime(date("H"), date("i"), date("s"), date("n", strtotime("+ 1 months")), 1, date("Y")));
$fatura = $Banco->query("SELECT * FROM faturas WHERE CODALUNO = {$aluno['CODALUNO']} AND DATA_VENC = '{$vencimento}';");
if(isset($fatura[0])) {
if($total != $fatura[0]['VALOR']){
$Banco->query("UPDATE faturas SET VALOR = {$total} WHERE CODFATURA = {$fatura[0]['CODFATURA']};");
}
} else {
$Banco->query("INSERT INTO faturas (CODALUNO, DATA_VENC, VALOR, REFERENCIA) VALUES ({$aluno['CODALUNO']}, '{$vencimento}', {$total}, '{$hoje}')", 'write');
}
}
//Verificar vencimentos
$faturas_vencidas = $Banco->query("SELECT * FROM faturas WHERE DATA_VENC < '{$hoje}' AND DATA_PGTO IS NULL AND MULTA IS NULL");
if(is_array($faturas_vencidas)) foreach($faturas_vencidas as $fatura){
$multa = $fatura['VALOR'] * 0.10;
$Banco->query("UPDATE faturas SET MULTA = {$multa} WHERE CODFATURA = {$fatura['CODFATURA']};");
}
$faturas = $Banco->query("SELECT * FROM faturas;");
?>
<h2>Faturas</h2>
<table>
<tr>
<th>Status</th>
<th>Vencimento</th>
<th>Aluno</th>
<th>Valor</th>
<th>Multa</th>
<th>Total</th>
<th>Opções</th>
</tr>
<?php if(is_array($faturas)) foreach($faturas as $fatura): ?>
<?php $aluno = $Banco->query("SELECT * FROM alunos WHERE CODALUNO = {$fatura['CODALUNO']}"); ?>
<tr>
<td><?php echo (empty($fatura['DATA_PGTO']) ? (empty($fatura['MULTA']) ? 'Aguardando Pagamento' : 'Fatura Vencida') : 'Pagamento OK.'); ?></td>
<td><?php $v = explode('-', $fatura['DATA_VENC']); echo $v[2].'/'.$v[1].'/'.$v[0]; ?></td>
<td><?php echo $aluno[0]['NOME']; ?></td>
<td>R$ <?php echo number_format($fatura['VALOR'], 2, ',', '.'); ?></td>
<td><?php echo (!empty($fatura['MULTA']) ? 'R$ '.number_format($fatura['MULTA'], 2, ',', '.') : '--'); ?></td>
<td>R$ <?php echo number_format($fatura['VALOR'] + $fatura['MULTA'], 2, ',', '.'); ?></td>
<td><a href="pagar.php?codigo=<?php echo $fatura['CODFATURA']; ?>">Tornar pago</a></td>
</tr>
<?php endforeach; ?>
</table>
<?php
include '/includes/footer.php';
?>