Linux server-604606.appsiete.com 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
Apache
: 162.240.172.200 | : 216.73.216.13
14 Domain
7.3.33
gujo45me
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
gujo45me /
.trash /
resources /
views /
baja /
[ HOME SHELL ]
Name
Size
Permission
Action
detalles.blade.php
6.68
KB
-rw-r--r--
emitir.blade.php
6.31
KB
-rw-r--r--
listar.blade.php
4.08
KB
-rw-r--r--
nuevo.blade.php
5.72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : emitir.blade.php
@extends('layout.main') @section('content') <div class="sixteen wide tablet sixteen wide computer column "> <div class="ui segment"> <h4 class="ui dividing header teal centered">SELECCIONE UN COMPROBANTE PARA DAR DE BAJA</h4> <div class="ui equal width grid"> <div class="row"> <div class="column export_files" style="text-align: right"> <select class="ui small input dropdown" name="tipo_comprobante"> <option value="">Seleccione</option> <option value="1">FACTURAS</option> <option value="3">NOTAS DE CREDITO</option> <option value="4">NOTAS DE DEBITO</option> </select> </div> </div> </div> <table class="ui celled striped table"> <thead> <tr> <th class="head_table">N°</th> <th class="head_table">Tipo</th> <th class="head_table">Comprobante</th> <th class="head_table">Fecha de Emision</th> <th class="head_table">Sucursal</th> <th class="head_table">Acciones</th> </tr> </thead> @if($tipo == 1 || $tipo == 2) <tbody> <?php /**/ $i = $data->firstItem() /**/ ?> @foreach ($data as $comprobante) <tr> <td>{{ $i }}</td> <td>{{ $comprobante->tipo_comprobante->nombre }}</td> <td>{{ $comprobante->nombre_comprobante }}</td> <td>{{ $comprobante->fecha_venta }}</td> <td>{{ $comprobante->local->nombre }}</td> <td> <?php /**/ $count = 0/**/ ?> @foreach($bajas as $baja) @if( $comprobante->id_venta == $baja->id_venta) <?php /**/ $count++ /**/ ?> <?php /**/ $id_baja = $baja->id_baja/**/ ?> @endif @endforeach @if($count > 0) <a class="ui mini vertical animated blue button" title="Ver informacion detallada" href="{{ url('baja/detalles/'.$id_baja ) }}"> <div class="hidden content">Emitido</div> <div class="visible content"><i class="search icon"></i></div> </a> @else <a class="ui mini vertical animated green button" title="Dar baja este registro" href="{{ url('baja/nuevo/'.$comprobante->id_venta.'/'.$comprobante->id_tipo_comprobante ) }}"> <div class="hidden content">Emitir</div> <div class="visible content"><i class="check icon"></i></div> </a> @endif </td> </tr> <?php /**/ $i++ /**/ ?> @endforeach </tbody> @endif @if( $tipo == 3 || $tipo == 4 ) <tbody> <?php /**/ $i = $data->firstItem() /**/ ?> @foreach ($data as $comprobante) @if($comprobante->venta->id_tipo_comprobante != 2) <tr> <td>{{ $i }}</td> <td>{{ $comprobante->tipo_comprobante->nombre }}</td> <td>{{ $comprobante->nombre_nota }}</td> <td>{{ $comprobante->fecha_emision }}</td> <td>{{ $comprobante->local->nombre }}</td> <td> <?php /**/ $count = 0/**/ ?> @foreach($bajas as $baja) @if( $comprobante->id_nota == $baja->id_nota) <?php /**/ $count++ /**/ ?> <?php /**/ $id_baja = $baja->id_baja/**/ ?> @endif @endforeach @if($count > 0) <a class="ui mini vertical animated blue button" title="Ver informacion detallada" href="{{ url('baja/detalles/'.$id_baja ) }}"> <div class="hidden content">Emitido</div> <div class="visible content"><i class="search icon"></i></div> </a> @else <a class="ui mini vertical animated green button" title="Dar baja este registro" href="{{ url('baja/nuevo/'.$comprobante->id_nota.'/'.$comprobante->id_tipo_comprobante ) }}"> <div class="hidden content">Emitir</div> <div class="visible content"><i class="check icon"></i></div> </a> @endif </td> </tr> @endif <?php /**/ $i++ /**/ ?> @endforeach </tbody> @endif <tfoot> <tr> <th colspan="7"> @include('layout.includes.pagination') </th> </tr> </tfoot> </table> </div> </div> @stop @section('scripts') <script src="{{ asset('js/baja/emitir.js') }}"></script> @stop
Close