����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 18.116.51.45 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 : /var/www/html/t/sae/appsae/core/app/view/ |
Upload File : |
<!-- Content Header (Page header) --> <section class="content-header"> <h1> <p><?php echo PersonData::getProvidersId($_GET["id"])->name;?></p> </h1> <ol class="breadcrumb"> <li><a href="./"><i class="fa fa-dashboard"></i> Dashboard</a></li> <li><a href="./?view=categories"><i class="fa fa-bars"></i> Regresas</a></li> <li class="active">Productos</li> </ol> </section> <!-- Main content --> <section class="content"> <?php $products = ProductData::getAllByProviderId($_GET["id"]); if(count($products)>0){ ?> <div class="box"> <div class="box-header"> <h3 class="box-title">Productos</h3> </div><!-- /.box-header --> <div class="box-body no-padding"> <table class="table table-bordered table-hover"> <thead> <th>Codigo</th> <th>Imagen</th> <th>Nombre</th> <th>Precio Entrada</th> <th>Precio Salida</th> <th>Categoria</th> <th>Minima</th> <th>Activo</th> <th></th> </thead> <?php foreach($products as $product):?> <tr> <td><?php echo $product->barcode; ?></td> <td> <?php if($product->image!=""):?> <img src="storage/products/<?php echo $product->image;?>" style="width:64px;"> <?php endif;?> </td> <td><?php echo $product->name; ?></td> <td>$ <?php echo number_format($product->price_in,2,'.',','); ?></td> <td>$ <?php echo number_format($product->price_out,2,'.',','); ?></td> <td><?php if($product->category_id!=null){echo $product->getCategory()->name;}else{ echo "<center>----</center>"; } ?></td> <td><?php echo $product->inventary_min; ?></td> <td><?php if($product->is_active): ?><i class="fa fa-check"></i><?php endif;?></td> <td style="width:70px;"> <a href="index.php?view=editproduct&id=<?php echo $product->id; ?>" class="btn btn-xs btn-warning"><i class="glyphicon glyphicon-pencil"></i></a> <a href="index.php?view=delproduct&id=<?php echo $product->id; ?>" class="btn btn-xs btn-danger"><i class="fa fa-trash"></i></a> </td> </tr> <?php endforeach;?> </table> </div><!-- /.box-body --> </div><!-- /.box --> <?php }else{ ?> <div class="jumbotron"> <h2>No hay productos</h2> <p>No se han agregado productos a la base de datos, puedes agregar uno dando click en el boton <b>"Agregar Producto"</p>. <a href="./?view=categories" class="btn btn-default"><i class="fa fa-arrow-left"></i> Regresar</a> </p> </div> <?php } ?> <br><br><br><br><br><br><br><br><br><br> </section>