-
Notifications
You must be signed in to change notification settings - Fork 0
/
insert_inovices.php
66 lines (58 loc) · 2.25 KB
/
insert_inovices.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
<?php
session_start();
if($_SESSION["autentificado"]!= "SI"){
header("Location: index.php?errorusuario=si");
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<?php
include("conexion.php");
$numero_factura=$_POST['numero_factura'];
$matricula=$_POST['matricula'];
$mano_de_obra=$_POST['mano_de_obra'];
$precio_hora=$_POST['precio_hora'];
$fecha_emision=$_POST['fecha_emision'];
$fecha_pago=$_POST['fecha_pago'];
$iva=$_POST['iva'];
$referencia=$_POST['referencia'];
$unidades=$_POST['unidades'];
$sql=("SELECT * from repuestos where Referencia=$referencia");
$result = $conn->query($sql);
$rows= $result->fetchAll();
foreach($rows as $row)
{
$referencia=$row['Referencia'];
$importe=$row['Importe'];
$ganancia=$row['Ganancia'];
}
$base_imponible=$unidades*($importe*$ganancia/100);
$base_imponible=$base_imponible+($mano_de_obra*$precio_hora);
$total=$base_imponible+($base_imponible*$iva/100);
$sql=("insert into detalle_factura(Numero_Factura, Referencia, Unidades) values ('$numero_factura', '$referencia', '$unidades')");
$result=$conn->query($sql);
if(!$result) {
echo "<br>Error al introducir el detalle en la Base de Datos<br>";
}
else{
echo "<br>El detalle se ha introducido con exito en la base de Datos<br>";
}
$sql=("insert into facturas(Numero_Factura, Matricula, Mano_Obra, Precio_Hora, Fecha_Emision, Fecha_Pago, Base_Imponible, IVA, Total) values ('$numero_factura', '$matricula', '$mano_de_obra', '$precio_hora', '$fecha_emision', '$fecha_pago', '$base_imponible', '$iva', '$total')");
$result=$conn->query($sql);
if(!$result) {
echo "<br>Error al introducir la factura en la Base de Datos";
}
else{
echo "<br>La factura se ha introducido con exito en la base de Datos";
}
?>
</body>
</html>