����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.144.25.226 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/root/var/www/html/app6/core/app/layouts/ |
Upload File : |
<!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>PhantomERP</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="shortcut icon" type="image/png" href="assets/images/icon/logos12.ico"> <link rel="stylesheet" href="assets/css/bootstrap.min.css"> <link rel="stylesheet" href="assets/css/font-awesome.min.css"> <link rel="stylesheet" href="assets/css/themify-icons.css"> <link rel="stylesheet" href="assets/css/metisMenu.css"> <link rel="stylesheet" href="assets/css/owl.carousel.min.css"> <link rel="stylesheet" href="assets/css/slicknav.min.css"> <!-- others css --> <link rel="stylesheet" href="assets/css/typography.css"> <link rel="stylesheet" href="assets/css/default-css.css"> <link rel="stylesheet" href="assets/css/styles.css"> <link rel="stylesheet" href="assets/css/responsive.css"> <!-- modernizr css --> <script src="assets/js/vendor/modernizr-2.8.3.min.js"></script> <!-- amchart css --> <link rel="stylesheet" href="https://www.amcharts.com/lib/3/plugins/export/export.css" type="text/css" media="all" /> <!-- Start datatable css --> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.css"> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.18/css/dataTables.bootstrap4.min.css"> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/responsive/2.2.3/css/responsive.bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/responsive/2.2.3/css/responsive.jqueryui.min.css"> </head> <body class="body-bg"> <!--[if lt IE 8]> <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]--> <!-- preloader area start --> <div id="preloader"> <div class="loader"></div> </div> <!-- preloader area end --> <!-- main wrapper start --> <div class="horizontal-main-wrapper"> <?php if(isset($_SESSION["user_id"])): ?> <!-- main header area start --> <div class="mainheader-area"> <div class="container"> <div class="row align-items-center"> <div class="col-md-3"> <div class="logo" style="width:50px;border-radius: 50%;"> </div> </div> <?php $msgs = MessageData::getUnreadedByUserId($_SESSION["user_id"]); ?> <!-- profile info & task notification --> <div class="col-md-9 clearfix text-right"> <div class="d-md-inline-block d-block mr-md-4"> <ul class="notification-area"> <li id="full-view"><i class="ti-fullscreen"></i></li> <li id="full-view-exit"><i class="ti-zoom-out"></i></li> <li class="dropdown"> <i class="ti-bell dropdown-toggle" data-toggle="dropdown"> <span class="label label-success"><?php echo count($msgs);?></span> </i> <div class="dropdown-menu bell-notify-box notify-box"> <span class="notify-title">Tu tienes <?php echo count($msgs);?> notificaciones <a href="./?view=messages&opt=all">Ver Todas</a></span> <div class="nofity-list"> <?php foreach($msgs as $i):?> <a href="./?view=messages&opt=open&code=<?php echo $i->code;?>" class="notify-item"> <div class="notify-thumb"><i class="ti-key btn-danger"></i></div> <h4> <div class="notify-text"> <?php if($i->user_from!=$_SESSION["user_id"]):?> <?php $u = $i->getFrom(); echo $u->name." ".$u->lastname;?> <?php elseif($i->user_to!=$_SESSION["user_id"]):?> <?php $u = $i->getTo(); echo $u->name." ".$u->lastname;?> <?php endif; ?> <small><i class="fa fa-clock-o"></i> Hace tiempo</small> </div> </h4> <p><?php echo $i->message; ?></p> </a> <?php endforeach; ?> </div> </div> </li> <li class="settings-btn"> <i class="ti-settings"></i> </li> </ul> </div> <div class="clearfix d-md-inline-block d-block"> <div class="user-profile m-0"> <img class="avatar user-thumb" src="assets/images/icon/logos12.ico" alt="avatar"> <h4 class="user-name dropdown-toggle" data-toggle="dropdown"> <!-- The user image in the navbar--> <!-- hidden-xs hides the username on small devices so only the image appears. --> <span class=""><?php if(isset($_SESSION["user_id"]) ){ echo UserData::getById($_SESSION["user_id"])->name; if(Core::$user->kind==1){ echo " (Administrador)"; } else if(Core::$user->kind==2){ echo " (Almacenista)"; } else if(Core::$user->kind==3){ echo " (Vendedor)"; } }else if (isset($_SESSION["client_id"])){ echo PersonData::getById($_SESSION["client_id"])->name." (Cliente)" ;}?> <b class="caret"></b> </span> <i class="fa fa-angle-down"></i> </h4> <div class="dropdown-menu"> <a class="dropdown-item" href="#">Mensajes</a> <a class="dropdown-item" href="#">Configuraciones</a> <a href="./logout.php" class="dropdown-item">Salir</a> </div> </div> </div> </div> </div> </div> </div> <!-- main header area end --> <?php if(Core::$user->kind==1):?> <div class="header-area header-bottom"> <div class="container"> <div class="row align-items-center"> <div class="col-lg-9 d-none d-lg-block"> <div class="horizontal-menu"> <nav> <ul id="nav_menu"> <li><a href="./?view=alerts"><i class="ti-map-alt"></i> <span>Inicio</span></a></li> <li> <a href="javascript:void(0)"><i class="ti-dashboard"></i><span>Ventas</span></a> <ul class="submenu"> <li><a href="./?view=sells">Ultimas</a></li> <li><a href="./?view=sellscredit">A credito</a></li> <li><a href="./?view=sellsFac">Facturadas</a></li> </ul> </li> <li> <a href="javascript:void(0)"><i class="ti-database"></i><span>Opciones</span></a> <ul class="submenu"> <li><a href="./?view=res">Compras</a></li> <li><a href="./?view=sells_9&stock=1">Inventario</a></li> <li><a href="./?view=devolutions">Devoluciones</a></li> <li><a href="./?view=settings">configuracion</a></li> </ul> </li> </ul> </nav> </div> </div> <!-- nav and search button --> <div class="col-lg-3 clearfix"> <div class="search-box"> <form action="#"> <input type="text" name="search" placeholder="Buscar producto..." required> <i class="ti-search"></i> </form> </div> </div> <!-- mobile_menu --> <div class="col-12 d-block d-lg-none"> <div id="mobile_menu"></div> </div> </div> </div> </div> <?php endif;?> <?php endif;?> <!-- header area end --> <?php if(isset($_SESSION["user_id"]) || isset($_SESSION["client_id"])):?> <!-- main content --> <div class="main-content-inner"> <div class="container"> <div class="row"> <!-- seo fact area start --> <?php View::load("index");?> <!-- testimonial area end --> </div> </div> </div> <!-- main content area end --> <?php else:?> <?php Action::execute("login",array()); ?> <?php endif;?> <!-- footer area start--> <footer> <div class="footer-area"> <p>© Copyright 2023. All right reserved. Desing by <a href="https://dentalavill.com/">Sistemas Yusa</a>.</p> </div> </footer> <!-- footer area end--> </div> <!-- main wrapper start --> <!-- offset area start --> <div class="offset-area"> <div class="offset-close"><i class="ti-close"></i></div> <ul class="nav offset-menu-tab"> <li><a class="active" data-toggle="tab" href="#activity">Accesos</a></li> <li><a data-toggle="tab" href="#settings">Configuracion</a></li> </ul> <div class="offset-content tab-content"> <div id="activity" class="tab-pane fade in show active"> <div class="recent-activity"> <a href="./?view=iframe" title="ventas del dia"> <div class="timeline-task"> <div class="icon bg3"> <i class="ti-desktop"></i> </div> <div class="tm-title"> <h4>Nueva Venta </h4> </div> <p>Nueva venta normal, factura, credito </p> </div> </a> <br> <?php if(Core::$user->kind==1):?> <br> <a href="./?view=UserResp" title="Dar de Alta productos"> <div class="timeline-task"> <div class="icon bg3"> <i class="ti-desktop"></i> </div> <div class="tm-title"> <h4>Nuevo Producto</h4> </div> <p>Registra da de alta a los nuevos productos. </p> </div> </a> <br> <a href="./?view=dev" title="devoluciones"> <div class="timeline-task"> <div class="icon bg3"> <i class="ti-desktop"></i> </div> <div class="tm-title"> <h4>nueva devolucion</h4> </div> <p>Registra las devoluciones del dia a dia. </p> </div> </a> <br> <a href="./?view=balance" title="balance del dia"> <div class="timeline-task"> <div class="icon bg3"> <i class="ti-desktop"></i> </div> <div class="tm-title"> <h4>Balance General</h4> </div> <p>Gastos, compras y ventas en un mismo lugar </p> </div> </a> <br> <a href="./?view=spends" title="Gastos Al Dia"> <div class="timeline-task"> <div class="icon bg3"> <i class="ti-desktop"></i> </div> <div class="tm-title"> <h4>Reporte de Gastos</h4> </div> <p>Registra los Gastos del dia. </p> </div> </a> <?php endif;?> <!-- acceso rapido iconos --> <!-- acceso rapido iconos--> </div> </div> <div id="settings" class="tab-pane fade"> <div class="offset-settings"> <h4>Configruaciones</h4> <div class="settings-list"> <div class="s-settings"> <div class="s-sw-title"> <h5>Notifications</h5> <div class="s-swtich"> <input type="checkbox" id="switch1" /> <label for="switch1">Toggle</label> </div> </div> <p>Keep it 'On' When you want to get all the notification.</p> </div> <div class="s-settings"> <div class="s-sw-title"> <h5>Show recent activity</h5> <div class="s-swtich"> <input type="checkbox" id="switch2" /> <label for="switch2">Toggle</label> </div> </div> <p>The for attribute is necessary to bind our custom checkbox with the input.</p> </div> <div class="s-settings"> <div class="s-sw-title"> <h5>Show your emails</h5> <div class="s-swtich"> <input type="checkbox" id="switch3" /> <label for="switch3">Toggle</label> </div> </div> <p>Show email so that easily find you.</p> </div> <div class="s-settings"> <div class="s-sw-title"> <h5>Show Task statistics</h5> <div class="s-swtich"> <input type="checkbox" id="switch4" /> <label for="switch4">Toggle</label> </div> </div> <p>The for attribute is necessary to bind our custom checkbox with the input.</p> </div> <div class="s-settings"> <div class="s-sw-title"> <h5>Notifications</h5> <div class="s-swtich"> <input type="checkbox" id="switch5" /> <label for="switch5">Toggle</label> </div> </div> <p>Use checkboxes when looking for yes or no answers.</p> </div> </div> </div> </div> </div> </div> <!-- offset area end --> <!-- jquery latest version --> <script src="assets/js/vendor/jquery-2.2.4.min.js"></script> <!-- bootstrap 4 js --> <script src="assets/js/bootstrap.min.js"></script> <script src="assets/js/owl.carousel.min.js"></script> <script src="assets/js/metisMenu.min.js"></script> <script src="assets/js/jquery.slimscroll.min.js"></script> <script src="assets/js/jquery.slicknav.min.js"></script> <!-- start chart js --> <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.min.js"></script> <!-- start highcharts js --> <script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/modules/exporting.js"></script> <script src="https://code.highcharts.com/modules/export-data.js"></script> <!-- start amcharts --> <script src="https://www.amcharts.com/lib/3/amcharts.js"></script> <script src="https://www.amcharts.com/lib/3/ammap.js"></script> <script src="https://www.amcharts.com/lib/3/maps/js/worldLow.js"></script> <script src="https://www.amcharts.com/lib/3/serial.js"></script> <script src="https://www.amcharts.com/lib/3/plugins/export/export.min.js"></script> <script src="https://www.amcharts.com/lib/3/themes/light.js"></script> <!-- all line chart activation --> <script src="assets/js/line-chart.js"></script> <!-- all pie chart --> <script src="assets/js/pie-chart.js"></script> <!-- all bar chart --> <script src="assets/js/bar-chart.js"></script> <!-- all map chart --> <script src="assets/js/maps.js"></script> <!-- others plugins --> <script src="assets/js/plugins.js"></script> <script src="assets/js/scripts.js"></script> </body> </html>