<?php

include 'header.php';
require_once "./_includes/funcoes.php";
if ($_SERVER['REQUEST_METHOD'] == "POST") {
    $elemento = mysql_real_escape_string($_POST['nif']);
    if (verifica_comerciante($elemento) != true) {
        ?>
<script>alert("Por favor insira um NIF de comerciante!!")</script>
<?php 
    } else {
        bloqueio_comerciantes($elemento);
    }
}
?>

<br />
<br />
<br />
<br />
<br />
<br />
<div class="col-xs-5">
<legend> Bloqueio de Comerciantes</legend>
      <form action="bloqueio_comerciantes.php" method="post">
        NIF de Comerciante:<input type="text" class="form-control input-sm"  name = "nif"  required autofocus>
        <button name = "submit" type="submit" value="1">Bloquear</button>
      </form>

	  <?php 
include 'footer.php';
function inserir_fatura($ele1, $ele2, $ele3, $ele4, $ele5, $ele6, $ele7)
{
    $ligacao = ligar_base_dados();
    $parts = explode('/', $ele4);
    $parts[0] = 25;
    if ($parts[1] >= 12) {
        $parts[1] = 1;
        $parts[2]++;
    } else {
        $parts[1]++;
    }
    $dataemissao = $ele4;
    $limite = implode('/', $parts);
    $hoje = date("d/m/y");
    if (verifica_comerciante($ele6)) {
        $beneficio = 0;
    } else {
        $beneficio = $ele7 * get_beneficio();
        $beneficiototal = beneficio_consumidor($ele6) + $beneficio;
        $res = mysql_query("update utilizadores set total_beneficio={$beneficiototal} where nif={$ele6}", $ligacao);
    }
    $resultado = mysql_query("insert into faturas(`N_FATURA`,`Utilizadores_NIF(EMISSOR)`,`NIF_RECEPTOR`,\n `DATA_FATURA`,`DATA_REGISTO`,`DATA_LIMITE`,`Beneficio`,`Tipo_Fatura_ID_Tipo_Fatura`,`inserido_por`, `totalfatura`, `Coimas_ID_COIMA`) \n values('{$ele1}',{$ele2}, {$ele3}, '{$ele4}', '{$hoje}', '{$limite}', {$beneficio},{$ele5},{$ele6},{$ele7},4)", $ligacao);
}
    echo $nome;
    ?>
 type="text" readonly="readonly" class="form-control input-sm" maxlength="100px" placeholder="Nome Consumidor" name="nomeconsumidor">
  <?php 
} else {
    ?>
  <input type="text" class="form-control input-sm" maxlength="100px" placeholder="Nome Consumidor" name="nomeconsumidor">
  <?php 
}
?>
</div>
<br>
<div class="input-group">
  <span class="input-group-addon">NIF Comerciante</span>
  <?php 
if (verifica_comerciante($_SESSION['username'])) {
    ?>
  <input value = <?php 
    echo $_SESSION['username'];
    ?>
 readonly="readonly" type="text" class="form-control input-sm" maxlength="9px" placeholder="NIF Comerciante" name="nifcomerciante">
   <?php 
} else {
    ?>
  <input type="text" class="form-control input-sm" maxlength="9px" placeholder="NIF Comerciante" name="nifcomerciante">
  <?php 
}
?>
</div>
<br />
<div class="input-group">
<div class="col-xs-7">
	<legend> Total de Faturacao por NIF</legend>
	<form action="total_por_nif.php" method="post">
		NIF Comerciante:<input type="text" class="form-control input-sm" name="nif" />
	<input type="submit">Submit</button>
	</form>
</div>
	
<?php 
if ($_SERVER['REQUEST_METHOD'] == "POST") {
    require_once "./_includes/funcoes.php";
    ligar_base_dados();
    $var = htmlentities($_POST['nif']);
    $resultado1 = soma_iva_por_nif($var);
    $resultado2 = soma_faturas_por_nif($var);
    if (verifica_comerciante($var) != true) {
        ?>
<script>alert("Por favor insira um NIF de comerciante!!")</script>
<?php 
    } else {
        ?>
<table style="empty-cells:hide;" border="1" class="table" cellpadding="1" cellspacing="1">
    
<tr>
        <th>Total de faturacao</th><td><?php 
        echo $resultado2;
        ?>
€</td>
    </tr>
	<br/>
	<tr>