-
Notifications
You must be signed in to change notification settings - Fork 0
/
bolmod.php
64 lines (63 loc) · 1.95 KB
/
bolmod.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
<?php
include('funciones.php');
include('datos.php');
autorizacion(5);
if (!$_GET['accion']){
$accion="editar";
}
else {
$accion = $_GET['accion'];
}
switch ($accion) {
case 'editar':
editar();
break;
case 'guardar':
guardar();
break;
}
function editar(){
$deposito_id = $_GET['deposito_id'];
$caja_id = $_GET['caja_id'];
$cliente_id = $_GET['cliente_id'];
$boleta_id = $_GET['boleta_id'];
$cola = "deposito_id=$deposito_id&caja_id=$caja_id&cliente_id=$cliente_id&boleta_id=$boleta_id";
/* ----------------------------------------- */
$sql_bie = "SELECT * FROM bie_cam";
$res_bie = mysql_query($sql_bie);
encabezado("Pago de Módulo Completo");
formulario("bolmod.php?accion=guardar&$cola");
encabezado_tabla(array("Campo","Valor"));
input_text("Detalle:","detalle","");
input_numero("Monto:","monto","");
fin_tabla();
botones();
fin_formulario();
boton("Volver","bolcon.php?accion=listado&$cola");
}
function guardar(){
$deposito_id = $_GET['deposito_id'];
$caja_id = $_GET['caja_id'];
$cliente_id = $_GET['cliente_id'];
$boleta_id = $_GET['boleta_id'];
// @annotation Definir el rol del campo producto_id
$producto_id = 1;
$cantidad = 1;
$detalle = $_POST['detalle'];
$unitario= $fil_bie['monto'];
$total = $unitario * $cantidad;
$rubro =413000-1;
$rubro = $rubro + $deposito_id;
$cola = "deposito_id=$deposito_id&caja_id=$caja_id&cliente_id=$cliente_id&boleta_id=$boleta_id";
/* ----------------------------------------- */
// @annotation Guardar como linea en la boleta
/* guarda linea en mov bol cont
* id bol_con_id producto_id cantidad detalle unitario total rubro */
$sql_bol = "INSERT INTO bol_det SET bol_cont_id='$boleta_id',
producto_id='$producto_id', cantidad='$cantidad',
detalle ='$detalle', unitario='$unitario',
total='$total', rubro='$rubro'";
$result = mysql_query($sql_bol);
redirigir("bolcon.php?accion=listado&$cola");
}
?>