-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagregarPartidaSalida.php
executable file
·149 lines (129 loc) · 4.92 KB
/
agregarPartidaSalida.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?php require_once('Connections/tecnocomm.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "registrar")) {
$insertSQL = sprintf("INSERT INTO salidamaterial (idsalida, idarticulo, cantidad, responsable, fecha, hora) VALUES (%s, %s, %s, %s, now(), now())",
GetSQLValueString($_POST['idsalida'], "int"),
GetSQLValueString($_POST['idarticulo'], "int"),
GetSQLValueString($_POST['textfield'], "double"),
GetSQLValueString($_POST['responsable'], "int"));
mysql_select_db($database_tecnocomm, $tecnocomm);
$Result1 = mysql_query($insertSQL, $tecnocomm) or die(mysql_error());
$insertGoTo = "close.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
$colname_RsPartida = "-1";
if (isset($_GET['id'])) {
$colname_RsPartida = $_GET['id'];
}
mysql_select_db($database_tecnocomm, $tecnocomm);
$query_RsPartida = sprintf("SELECT * FROM subcotizacionarticulo WHERE idsubcotizacionarticulo = %s", GetSQLValueString($colname_RsPartida, "int"));
$RsPartida = mysql_query($query_RsPartida, $tecnocomm) or die(mysql_error());
$row_RsPartida = mysql_fetch_assoc($RsPartida);
$totalRows_RsPartida = mysql_num_rows($RsPartida);
mysql_select_db($database_tecnocomm, $tecnocomm);
$query_RsResp = "SELECT * FROM usuarios ORDER BY nombrereal ASC";
$RsResp = mysql_query($query_RsResp, $tecnocomm) or die(mysql_error());
$row_RsResp = mysql_fetch_assoc($RsResp);
$totalRows_RsResp = mysql_num_rows($RsResp);
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>AGREGAR ARTICULO A COTIZACION</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script language="javascript">
function confirmar(elementName,elementValueOld,elementValueNew){
if(!confirm("Usted A Elegido Hacer El Siguiente Cambio, \nConfirme Por Favor, \n Valor Orginial: "+elementValueOld+" \nValor Nuevo: "+elementValueNew)){
document.getElementById(elementName).value = elementValueOld;
}else{
document.getElementById(elementName).value = elementValueNew;
}
}
</script>
<style type="text/css">
<!--
.Estilo1 {color: #FF0000}
-->
</style>
</head>
<body class="wrapper">
<form name="registrar" method="POST" action="<?php echo $editFormAction; ?>" >
<table width="500" border="0" align="center" >
<tr>
<td width="15"> </td>
<td colspan="2" align="center" background="images/titulo.gif" class="titulos">DATOS DE PARTIDA</td>
<td width="17"> </td>
</tr>
<tr>
<td> </td>
<td></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>Partida:</td>
<td><?php echo $row_RsPartida['descri']; ?></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td width="70">Cantidad:</td>
<td width="380"><label>
<input type="text" name="textfield" id="textfield" />
</label></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td align="right"><label>
<input type="submit" name="button" id="button" value="Aceptar" />
</label></td>
<td> </td>
</tr>
</table>
<input type="hidden" name="idarticulo" value="<?php echo $row_RsPartida['idsubcotizacionarticulo']; ?>"/>
<input type="hidden" name="idsalida" value="<?php echo $_GET['idsalida']; ?>"/>
<input type="hidden" name="MM_insert" value="registrar" />
</form>
</body>
</html>
<?php
mysql_free_result($RsPartida);
mysql_free_result($RsResp);
?>