KOKINIO - MANAGER
Edit File: e609d36c5890f51e72abc09c3b1cc715
<!DOCTYPE html> <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> <!--[if IE 9]> <html class="no-js lt-ie10"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <title>Metropolitana movil</title> <meta name="description" content="ProUI is a Responsive Bootstrap Admin Template created by pixelcave and published on Themeforest."> <meta name="author" content="pixelcave"> <meta name="robots" content="noindex, nofollow"> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1.0"> <!-- Icons --> <!-- The following icons can be replaced with your own, they are used by desktop and mobile browsers --> <link rel="shortcut icon" href="img/favicon.ico"> <link rel="apple-touch-icon" href="img/icon57.png" sizes="57x57"> <link rel="apple-touch-icon" href="img/icon72.png" sizes="72x72"> <link rel="apple-touch-icon" href="img/icon76.png" sizes="76x76"> <link rel="apple-touch-icon" href="img/icon114.png" sizes="114x114"> <link rel="apple-touch-icon" href="img/icon120.png" sizes="120x120"> <link rel="apple-touch-icon" href="img/icon144.png" sizes="144x144"> <link rel="apple-touch-icon" href="img/icon152.png" sizes="152x152"> <!-- END Icons --> <!-- Stylesheets --> <!-- Bootstrap is included in its original form, unaltered --> <link rel="stylesheet" href="<?php echo URL::to('/').'/css/bootstrap.min.css'; ?>"> <!-- Related styles of various icon packs and plugins --> <link rel="stylesheet" href="<?php echo URL::to('/'); ?>/css/plugins.css"> <!-- The main stylesheet of this template. All Bootstrap overwrites are defined in here --> <link rel="stylesheet" href="<?php echo URL::to('/'); ?>/css/main.css"> <!-- Include a specific file here from css/themes/ folder to alter the default theme of the template --> <!-- The themes stylesheet of this template (for using specific theme color in individual elements - must included last) --> <link rel="stylesheet" href="<?php echo URL::to('/'); ?>/css/themes.css"> <link rel="stylesheet" href="<?php echo URL::to('/'); ?>/css/themes/night.css"> <!-- Include Date Range Picker --> <link rel="stylesheet" type="text/css" href="<?php echo URL::to('/'); ?>/plugins/daterangepicker/daterangepicker-bs3.css" /> <!-- END Stylesheets --> <!-- JQUERY GOOGLE --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script> <script type="text/javascript"> main_path = '<?php echo URL::to('/'); ?>'; </script> <!-- Modernizr (browser feature detection library) & Respond.js (Enable responsive CSS code on browsers that don't support it, eg IE8) --> <script src="<?php echo URL::to('/').'/js/vendor/modernizr-2.7.1-respond-1.4.2.min.js'; ?>"></script> </head> <body> <div id="page-content"> <div class="content-header"> <ul class="nav-horizontal text-center"> <li > <a href="<?php echo URL::To('/').'/movil/index'; ?>"><i class="gi gi-shop_window"></i> Inicio</a> </li> <li class="active"> <a href="<?php echo URL::To('/').'/movil/route'; ?>"><i class="gi gi-shop_window"></i> Orden</a> </li> </ul> </div> <?php if($orden->getData()->status === true): ?> <div class="block"> <div class="block-title"> <h2>Bienvenido: <strong><?php echo ($_COOKIE['user'] == null ) ? URL::To('/') : $_COOKIE['user']; ?></strong></h2> <div class="block-options pull-right"> <a href="<?php echo URL::To('/').'/movil/logout'; ?>" class="btn btn-alt btn-sm btn-default" data-toggle="tooltip" title="" data-original-title="Salir"><i class="fa fa-sign-out"></i></a> </div> </div> <form action="page_forms_general.php" method="post" class="form-horizontal form-bordered" onsubmit="return false;"> <input type="hidden" name="_token" id="csrf-token" value="<?php echo e(csrf_token()); ?>" /> <div class="form-group"> <div class="col-md-12 text-left"> <label class="control-label text-left" for="example-hf-email">Vehículo: <strong><?php echo $user[0]->placas; ?></strong></label> </div> </div> <div class="form-group"> <div class="col-md-12 text-center"> <label class="control-label" for="example-hf-orden">Orden No.:</label> </div> <div class="col-md-12"> <input type="text" id="orden-input" name="example-hf-email" class="form-control" placeholder="---" required="required" value="<?php echo ($orden_no == '') ? '' : ++$orden_no; ?>"> </div> </div> <div class="form-group"> <div class="col-md-12 text-center"> <label class="control-label" for="example-hf-password">Selecciona el Cliente:</label> </div> <div class="col-md-10"> <select id="cliente-select" class="form-control" required="required"> <!-- <option value="0">Selecciona</option> <?php foreach($clientes as $key => $cliente): ?> <option value="<?php echo e($cliente->id); ?>" ><?php echo e($cliente->nombre_comercial); ?></option> <?php endforeach; ?>--> </select> </div> <div class="col-md-1 col-xs-6 text-center"> <a class="btn btn-sm btn-primary" onclick="Route.clientesNear(this)"> Cerca</a> </div> <div class="col-md-1 col-xs-6 text-center"> <a class="btn btn-sm btn-primary" onclick="Route.clientes_all(this)"> Todas</a> </div> </div> <div class="form-group form-actions"> <div id="orden-btn-div" class="col-md-12 text-center"> <button type="submit" id="orden-btn" class="btn btn-lg btn-success" data-userid="<?php echo $user[0]->id; ?>" data-camionid="<?php echo $user[0]->camion_id; ?>" data-fecha="<?php echo $fecha_; ?>" onclick="Route.getInicio(this)"><i class="fa fa-play"></i> Inicio Orden</button> </div> </div> </form> </div> <?php endif; ?> <?php if($orden->getData()->status === false): ?> <div class="block"> <div class="block-title"> <h2>Bienvenido: <strong><?php echo ($_COOKIE['user'] == null ) ? URL::To('/') : $_COOKIE['user']; ?></strong></h2> <div class="block-options pull-right"> <a href="<?php echo URL::To('/').'/movil/logout'; ?>" class="btn btn-alt btn-sm btn-default" data-toggle="tooltip" title="" data-original-title="Salir"><i class="fa fa-sign-out"></i></a> </div> </div> <form action="page_forms_general.php" method="post" class="form-horizontal form-bordered" onsubmit="return false;"> <input type="hidden" name="_token" id="csrf-token" value="<?php echo e(csrf_token()); ?>" /> <div class="form-group"> <div class="col-md-12 text-left"> <label class="control-label text-left" for="example-hf-email">No. Orden: <strong><?php echo $orden->getData()->data[0]->orden_no; ?></strong></label> </div> <div class="col-md-12 text-left"> <label class="control-label text-left" for="example-hf-email">Vehículo: <strong><?php echo $user[0]->placas; ?></strong></label> </div> <div class="col-md-12 text-left"> <label class="control-label text-left" for="example-hf-email">Cliente: <?php echo $orden->getData()->data[0]->nombre_comercial; ?></label> </div> <div class="col-md-12 text-left"> <label class="control-label text-left" for="example-hf-email">Hora: <strong><?php echo date('h:i:s a', strtotime($orden->getData()->data[0]->hora_inicio)); ?></strong></label> </div> <div class="col-md-12 text-left"> <label class="control-label text-left" for="example-hf-email">Unidad del Cliente: <strong><?php echo $orden->getData()->data[0]->unidad; ?></strong></label> </div> </div> <div class="form-group"> <div class="col-md-12 text-center"> <label class="control-label" for="example-hf-orden">Cantidad:</label> </div> <div class="col-md-12"> <input type="number" id="cantidad-input" class="form-control" placeholder="3.5" step="0.01" required="required"> </div> </div> <div class="form-group"> <div class="col-md-12 text-center"> <label class="control-label" for="example-hf-password">Reciclable:</label> </div> <div class="col-md-12 text-center"> <input type="checkbox" name="" id="reciclable-check" /> </div> </div> <div id="reciclable-div" class="form-group hide"> <div class="col-md-12 text-center"> <label class="control-label" for="example-hf-password">Tipo Reciclable:</label> </div> <div class="col-md-12"> <select id="reciclable-select" class="form-control" required="required"> <option value="0">Selecciona</option> <?php foreach($reciclables as $key => $reciclable): ?> <option value="<?php echo $reciclable->id; ?>"><?php echo $reciclable->reciclable; ?></option> <?php endforeach; ?> </select> </div> <div class="col-md-12 text-center"> <label class="control-label" for="example-hf-password">Cantidad Reciclable kg.:</label> </div> <div class="col-md-12"> <input type="number" id="cantidad-reciclable-input" name="example-hf-email" class="form-control" placeholder="---" step="0.01" > </div> </div> <div class="form-group"> <div class="col-md-12 text-center"> <label class="control-label" for="example-hf-password">Kilometraje:</label> </div> <div class="col-md-12"> <input class="form-control" type="number" id="km-input" placeholder="<?php echo $km; ?>" /> </div> </div> <div class="form-group"> <div class="col-md-12 text-center"> <label class="control-label" for="example-hf-password">Observaciones:</label> </div> <div class="col-md-12"> <textarea class="form-control" id="observaciones-input" placeholder="Ingresa tus observaciones" ></textarea> </div> </div> <div class="form-group form-actions"> <div id="orden2-btn-div" class="col-md-12 text-center"> <button type="submit" id="orden2-btn" class="btn btn-lg btn-danger" data-km="<?php echo $km; ?>" data-id="<?php echo $orden->getData()->data[0]->id; ?>" onclick="Route.getTermino(this)"><i class="fa fa-stop"></i> Termino Orden</button> </div> </div> </form> </div> <?php endif; ?> </div> <?php echo $__env->yieldContent('content'); ?> <!-- Footer --> <!-- END Footer --> </div> <!-- END Main Container --> </div> <!-- END Page Container --> <!-- Scroll to top link, initialized in js/app.js - scrollToTop() --> <a href="#" id="to-top"><i class="fa fa-angle-double-up"></i></a> <!-- Remember to include excanvas for IE8 chart support --> <!--[if IE 8]><script src="<?php echo URL::to('/').'/js/helpers/excanvas.min.js'; ?>"></script><![endif]--> <?php echo Html::script("/js/app.js"); ?> <?php echo Html::script("/js/movil/route.js"); ?> <!-- Include Jquery library from Google's CDN but if something goes wrong get Jquery from local file (Remove 'http:' if you have SSL) --> <script>!window.jQuery && document.write(decodeURI('%3Cscript src="js/vendor/jquery-1.11.1.min.js"%3E%3C/script%3E'));</script> <!-- Bootstrap.js, Jquery plugins and Custom JS code --> <script src="<?php echo URL::to('/').'/js/vendor/bootstrap.min.js'; ?>"></script> <script src="<?php echo URL::to('/').'/js/plugins.js'; ?> "></script> <!-- Google Maps API + Gmaps Plugin, must be loaded in the page you would like to use maps (Remove 'http:' if you have SSL) --> <!-- Load and execute javascript code used only in this page --> <script src="<?php echo URL::to('/').'/js/pages/index.js'; ?>"></script> </body> </html>