<?php

include_once "../../login/check.php";
$folder = "../../";
$cod = $_POST['cod'];
include_once "../../class/pedidopendiente.php";
$pedidopendiente = new pedidopendiente();
$dat = $pedidopendiente->eliminarRegistro("codpedidopendiente=" . $cod);
<?php

include_once "../../login/check.php";
include_once "../../class/pedidotemporal.php";
$pedidotemporal = new pedidotemporal();
$dat = $pedidotemporal->mostrarTodoRegistro("", 1, "");
include_once "../../class/pedidopendiente.php";
$pedidopendiente = new pedidopendiente();
include_once "../../class/pedidopendientedetalle.php";
$pedidopendientedetalle = new pedidopendientedetalle();
extract($_POST);
$valores = array("nombrecliente" => "'{$nombrecliente}'", "cicliente" => "'{$cicliente}'", "celularcliente" => "'{$celularcliente}'", "fechaentregaestimada" => "'{$fechaentregaestimada}'");
$pedidopendiente->insertarRegistro($valores);
$codpedidopendiente = $pedidopendiente->ultimo();
foreach ($dat as $d) {
    $i++;
    $valores = array("codpedidopendiente" => "'{$codpedidopendiente}'", "codproducto" => "'" . $d['codproducto'] . "'", "cantidad" => "'" . $d['cantidad'] . "'");
    $pedidopendientedetalle->insertarRegistro($valores);
}
$pedidotemporal->vaciar();
/*

echo "<pre>";
print_r($_POST);
echo "</pre>";*/
$folder = "../../";
include_once $folder . "cabecerahtml.php";
include_once $folder . "cabecera.php";
?>
<div class="widgetbox box-inverse">
    <h4 class="widgettitle">Mensaje de Confirmación</h4>
<?php

include_once "../../class/pedidopendiente.php";
$pedidopendiente = new pedidopendiente();
extract($_POST);
$fechaentregaestimada = $fechaentregaestimada != "" ? $fechaentregaestimada : '%';
$dat = $pedidopendiente->mostrarTodoRegistro(" nombrecliente LIKE '{$nombrecliente}%' and cicliente LIKE '{$cicliente}%' and fechaentregaestimada LIKE '{$fechaentregaestimada}'", 1, "fecha,hora,nombrecliente,cicliente");
?>
<table class="table table-bordered table-striped table-hover">
<thead>
<tr><th width="50">Nº</th><th>Nombre Cliente</th><th>C.I. Cliente</th><th>Celular Cliente</th><th>Fecha Estimada de Entrega</th></tr>
</thead>
<?php 
foreach ($dat as $d) {
    $i++;
    ?>
<tr>
    <td class="der"><?php 
    echo $i;
    ?>
</td>
    <td><?php 
    echo $d['nombrecliente'];
    ?>
</td>
    <td><?php 
    echo $d['cicliente'];
    ?>
</td>
    <td><?php 
    echo $d['celularcliente'];
示例#4
0
</td>
    <td class="der <?php 
    echo $error;
    ?>
"><?php 
    echo $totalstock;
    ?>
</td>
</tr>
<?php 
}
?>
</table>
<?php 
include_once "../../class/pedidopendiente.php";
$pedidopendiente = new pedidopendiente();
$dpp = $pedidopendiente->mostrarTodoRegistro("codpedidopendiente=" . $_POST['codpedidopendiente'], 1, "");
$dpp = array_shift($dpp);
?>
<form id="formulario" method="post">
<input type="hidden" name="codpedidopendiente" value="<?php 
echo $_POST['codpedidopendiente'];
?>
">
<table class="tabla table-bordered">
    <thead>
        <tr>
            <th>Nombre Cliente</th>
            <th>C.I. Cliente</th>
            <th>Celular Cliente</th>
            <th>Fecha Estimada de Entrega</th>