<?php require_once '../nucleo/acople.php'; $objacople = new acople(); require_once '../nucleo/tipo_acople.php'; $objtipo_acople = new tipo_acople(); if (isset($_POST['op'])) { switch ($_POST['op']) { case 'add': $objacople->setVar('id', $_POST['id']); $objacople->setVar('id_tipo_acople', $_POST['id_tipo_acople']); $objacople->setVar('placa', $_POST['placa']); echo json_encode($objacople->insertDB()); break; case 'mod': $objacople->setVar('id', $_POST['id']); $objacople->setVar('id_tipo_acople', $_POST['id_tipo_acople']); $objacople->setVar('placa', $_POST['placa']); echo json_encode($objacople->updateDB()); break; case 'del': $objacople->setVar('id', $_POST['id']); echo json_encode($objacople->deleteDB()); break; case 'get': $res = $objacople->searchDB($_POST['id'], 'id', 1); if (is_array($res)) { $res[0]['id_tipo_acople'] = $objtipo_acople->searchDB($res[0]['id_tipo_acople'], 'id', 1); $res[0]['id_tipo_acople'] = $res[0]['id_tipo_acople'][0]; echo json_encode($res[0]); } else {
<?php require_once '../nucleo/acoples_configuracion.php'; $objacoples_configuracion = new acoples_configuracion(); require_once '../nucleo/configuracion_vehiculo.php'; $objconfiguracion_vehiculo = new configuracion_vehiculo(); require_once '../nucleo/acople.php'; $objacople = new acople(); if (isset($_POST['op'])) { switch ($_POST['op']) { case 'add': $objacoples_configuracion->setVar('id', $_POST['id']); $objacoples_configuracion->setVar('id_configuracion_vehiculo', $_POST['id_configuracion_vehiculo']); $objacoples_configuracion->setVar('id_acople', $_POST['id_acople']); echo json_encode($objacoples_configuracion->insertDB()); break; case 'mod': $objacoples_configuracion->setVar('id', $_POST['id']); $objacoples_configuracion->setVar('id_configuracion_vehiculo', $_POST['id_configuracion_vehiculo']); $objacoples_configuracion->setVar('id_acople', $_POST['id_acople']); echo json_encode($objacoples_configuracion->updateDB()); break; case 'del': $objacoples_configuracion->setVar('id', $_POST['id']); echo json_encode($objacoples_configuracion->deleteDB()); break; case 'get': $res = $objacoples_configuracion->searchDB($_POST['id'], 'id', 1); if (is_array($res)) { $res[0]['id_configuracion_vehiculo'] = $objconfiguracion_vehiculo->searchDB($res[0]['id_configuracion_vehiculo'], 'id', 1); $res[0]['id_configuracion_vehiculo'] = $res[0]['id_configuracion_vehiculo'][0];
<td><?php echo $o['id']; ?> </td> <td><?php $objconfiguracion_vehiculo = new configuracion_vehiculo(); $objconfiguracion_vehiculo->setVar('id', $o['id_configuracion_vehiculo']); $objconfiguracion_vehiculo->getDB(); $objunidad = new unidad(); $objunidad->setId($objconfiguracion_vehiculo->getIdUnidad()); $objunidad->getDB(); echo $objunidad->getPlaca(); ?> </td> <td><?php $objacople = new acople(); $objacople->setVar('id', $o['id_acople']); $objacople->getDB(); echo $objacople->getVar($gl_acoples_configuracion_id_acople); ?> </td> <td> <a href='#' onclick='sel(<?php echo $o['id']; ?> )'>MOD</a> - <a href='#' onclick='del(<?php echo $o['id']; ?> )'>DEL</a> </td>
$objtrayecto->getDB(); echo $objtrayecto->getVar($gl_registro_id_trayecto); ?> </td> <td><?php echo $o['fecha']; ?> </td> <td> <?php $objconfiguracion_vehiculo = new configuracion_vehiculo(); $objconfiguracion_vehiculo->setVar('id', $o['id_configuracion_vehiculo']); $objconfiguracion_vehiculo->getDB(); $r1 = $objconfiguracion_vehiculo->consulta_arreglo("Select u.placa, tu.nombre from unidad u, tipo_unidad tu where u.id = '" . $objconfiguracion_vehiculo->getIdUnidad() . "' AND u.id_tipo_unidad = tu.id"); echo $r1["placa"] . "(" . $r1["nombre"] . ") "; $objacople = new acople(); $acos = $objacople->consulta_matriz("Select a.placa,ta.nombre from acoples_configuracion ac, acople a, tipo_acople ta where ac.id_configuracion_vehiculo = '" . $o['id_configuracion_vehiculo'] . "' AND ac.id_acople = a.id AND a.id_tipo_acople = ta.id"); if (is_array($acos)) { foreach ($acos as $ac) { echo "" . $ac["placa"] . "(" . $ac["nombre"] . "), "; } } ?> </td> </tr> <?php if ($i === 0) { $idpr = $o["id"]; $i = 1; } }
<div class='control-group'> <label>Tipo Acople</label> <label class='form-control' id='txt_id_tipo_acople'>...</label> <p class='help-block'><a href='#modal_id_tipo_acople' data-toggle='modal'>Seleccionar</a></p> <input type='hidden' name='id_tipo_acople' id='id_tipo_acople' value=''/> </div> <div class='control-group'> <p></p> <button type='button' class='btn btn-primary' onclick='save()'>Guardar</button> <button type='reset' class='btn'>Limpiar</button> </div> </form> <hr/> <?php include_once 'nucleo/acople.php'; $obj = new acople(); $objs = $obj->listDB(); include_once 'nucleo/tipo_acople.php'; ?> <div class='contenedor-tabla'> <table id='tb' class='display' cellspacing='0' width='100%'> <thead> <tr> <th>Id</th><th>Tipo Acople</th><th>Placa</th> <th>OPC</th> </tr> </thead> <tbody> <?php if (is_array($objs)) { foreach ($objs as $o) {