403Webshell
Server IP : 85.158.181.41  /  Your IP : 216.73.217.12
Web Server : Apache
System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64
User : moncbefd ( 1024)
PHP Version : 7.3.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/moncbefd/www.moneta.at/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/moncbefd/www.moneta.at/admin//hermes_list.php
<?php
/* --------------------------------------------------------------
   hermes_list.php 2017-03-28
   Gambio GmbH
   http://www.gambio.de
   Copyright (c) 2017 Gambio GmbH
   Released under the GNU General Public License

   IMPORTANT! THIS FILE IS DEPRECATED AND WILL BE REPLACED IN THE FUTURE.
   MODIFY IT ONLY FOR FIXES. DO NOT APPEND IT WITH NEW FEATURES, USE THE
   NEW GX-ENGINE LIBRARIES INSTEAD.
   --------------------------------------------------------------
*/

ob_start();
require('includes/application_top.php');
require DIR_FS_CATALOG .'/admin/includes/classes/messages.php';
require DIR_FS_CATALOG .'/includes/classes/hermes.php';

defined('GM_HTTP_SERVER') OR define('GM_HTTP_SERVER', HTTP_SERVER);
define('PAGE_URL', GM_HTTP_SERVER.DIR_WS_ADMIN.basename(__FILE__));

$hermes = new Hermes();
$messages = new Messages('hermes_messages');

if(isset($_REQUEST['loadlist'])) {
	ob_clean();
	if($hermes->getService() !== 'ProPS') {
		echo '<p>'.$hermes->get_text('feature_exclusive_to_props').'</p>';
		xtc_db_close();
		exit;
	}
	$start = microtime(true);
	$propsorders = $hermes->getPropsOrders();
	if(is_array($propsorders) && isset($propsorders['code']) && isset($propsorders['message'])) {
		echo '<p class="message">'. $propsorders['code'] .' '. $propsorders['message'] .'</p>';
		ob_flush();
		xtc_db_close();
		exit;
	}
	echo '<br><form action="" method="post" id="batchlabels_top" class="batchlabels" target="pdf_frame">';
	echo '<button class="button" id="sel_all_top">##select_all</button>';
	echo '<button class="button" id="sel_none_top">##select_none</button>';
	echo '<button class="button" id="sel_unprinted_top">##select_unprinted</button><br>';
	echo '<input class="button btn_wide" type="submit" value="##get_labels_for_selected_orders">';
	echo '<button class="button" id="refresh_top" style="float:right">##refresh</button>';
	echo '</form>';
	?>
	<table class="propsorders" id="propsorders">
		<tr>
			<th>&nbsp;</th>
			<th>##orderno</th>
			<th>##barcode</th>
			<th title="##date_order_created">##date_created</th>
			<th>##parcel_class</th>
			<th>##status</th>
			<th>##receiver</th>
			<th>&nbsp;</th>
		</tr>
	<?php
	foreach($propsorders as $po) {
		try {
			$ho = new HermesOrder($po->orderNo);
			$ho_ordersid = $ho->orders_id;
		}
		catch(Exception $e) {
			// order not found
			$ho_ordersid = false;
		}
		echo '<tr>';
		echo '<td><input type="checkbox" name="selected['.$po->orderNo .']" value="'.$po->orderNo .'" class="orderselect"></td>';
		echo '<td class="orderno">';
		if($ho_ordersid !== false) {
			echo '<a href="'. xtc_href_link('hermes_order.php', 'orderno='.$po->orderNo.'&orders_id='.$ho_ordersid) .'">'. $po->orderNo .'</a>';
		}
		else {
			echo $po->orderNo;
		}
		echo '</td>';
		echo '<td class="shippingid" title="##click_for_shipment_status"><span class="sid">'. $po->shippingId .'</span><div class="sstatus"></div></td>';
		echo '<td>'. $po->creationDate .'</td>';
		echo '<td>'. $po->parcelClass .'</td>';
		echo '<td class="status">'. $po->status .' '. $po->status_text .'</td>';
		echo '<td>'. $po->lastname .', '. $po->firstname ."<br>". $po->postcode .' '. $po->city .' ('. $po->countryCode .')</td>';
		if($ho_ordersid !== false) {
			echo '<td>';
			echo '<form action="'.xtc_href_link('hermes_order.php').'" method="post" class="orderlabel" target="pdf_frame">';
			echo '<input type="hidden" name="orderno" value="'.$po->orderNo.'">';
			echo '<input type="submit" name="orderprintlabel" value="##retrieve_label">';
			echo '<div class="printpos">
							<input type="radio" name="printpos" value="1" title="##position 1" checked="checked">
							<input type="radio" name="printpos" value="2" title="##position 2"><br>
							<input type="radio" name="printpos" value="3" title="##position 3">
							<input type="radio" name="printpos" value="4" title="##position 4">
						</div>';
			echo '</form>';
			echo '</td>';
		}
		else {
			echo '<td></td>';
		}
		echo '</tr>';
	}
	echo "</table>";
	echo '<br><form action="" method="post" id="batchlabels_bottom" class="batchlabels" target="pdf_frame">';
	echo '<button class="button" id="sel_all">##select_all</button>';
	echo '<button class="button" id="sel_none">##select_none</button>';
	echo '<button class="button" id="sel_unprinted">##select_unprinted</button><br>';
	echo '<input class="button btn_wide" type="submit" value="##get_labels_for_selected_orders">';
	echo '<button class="button" id="refresh" style="float:right">##refresh</button>';
	echo '</form>';
	echo $hermes->replaceTextPlaceholders(ob_get_clean());
	xtc_db_close();
	exit;
}

if(isset($_REQUEST['shipmentstatus'])) {
	ob_clean();
	$shipping_id = $_REQUEST['shipmentstatus'];
	try {
		$sstatus = $hermes->getShipmentStatus($shipping_id);
		echo $sstatus['text'] .'<br>' . $sstatus['datetime'];
	}
	catch(Exception $e) {
		echo $hermes->get_text('status_could_not_be_determined');
	}
	ob_flush();
	xtc_db_close();
	exit;
}

if(!empty($_POST['selected'])) {
	$labelsreturn = $hermes->getLabelsPdf($_POST['selected']);
	if($labelsreturn !== false && !empty($labelsreturn['pdfdata'])) {
		foreach($labelsreturn['orderres']->OrderResponse as $or) {
			$eitems = (array)($or->exceptionItems);
			if(!empty($eitems)) {
				$messages->addMessage(sprintf($hermes->get_text('label_for_orderno_could_not_be_created'), $or->orderNo));
			}
		}
		header('Content-Type: application/pdf');
		header('Content-Disposition: attachment;filename=hermes_batch_'.time().'.pdf');
		echo $labelsreturn['pdfdata'];
	}
	else
	{
		echo "<script>alert('ERROR'); window.top.location.reload(true);</script>";
	}
	xtc_db_close();
	exit;
}

if(!empty($_REQUEST['messages'])) {
	foreach($messages->getMessages() as $msg) {
		echo '<p class="message">'.$msg.'</p>';
	}
	$messages->reset();
	xtc_db_close();
	exit;
}


if($hermes->getService() === 'ProPS' && $hermes->isConfigured() === false)  {
	$messages->addMessage($hermes->get_text('credentials_unconfigured'));
}

/* messages */
$session_messages = $messages->getMessages();
$messages->reset();


?>
<!doctype html>
<html <?php echo HTML_PARAMS; ?>>
	<head>
		<meta http-equiv="x-ua-compatible" content="IE=edge">
		<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $_SESSION['language_charset']; ?>">
		<title><?php echo TITLE; ?></title>
		<link rel="stylesheet" type="text/css" href="html/assets/styles/legacy/stylesheet.css">
		<style>
		.hermesorder { font-family: sans-serif; font-size: 0.8em; }
		.hermesorder h1 { padding: 0; }
		.hermesorder a:link { font-size: inherit; text-decoration: underline; }
		.propsorders { background: #eeeeee; width: 100%; margin: auto; border-collapse: collapse; margin: 1em 0; }
		.propsorders td { }
		.propsorders td, .propsorders th { padding: .1ex .5ex; }
		.propsorders td.shippingid { cursor: pointer; width: 8em; }
		.propsorders th { background: #ccc; }
		.propsorders tr:hover { background: #ffffee !important; }
		.propsorders tr:nth-child(even) { background: #ddd; }
		.availability { float: right; width: 25em; border: 1px solid #555; background: #eee; padding: 1ex 1em; }
		.printpos { display: inline-block; margin-bottom: -4px; }
		.printpos input { vertical-align: middle; margin: 0; }
		.orderlabel * { vertical-align: middle; }
		p.message { background: #ffa; border: 1px solid #faa; padding: 1ex 1em; }
		button, input[type="submit"] { font-size: 1.0em; }
		.hermesorder button.button {
			background-color: #3E5E87;
			border: 2px solid #FFFFFF;
			color: #FFFFFF;
			cursor: pointer;
			display: inline-block;
			font-family: Arial,sans-serif;
			font-size: 0.9em;
			font-weight: bold;
			margin: 4px 2px 0;
			outline: 1px solid #3E5E87;
			padding: 3px 2px;
			text-align: center;
			text-decoration: none;
			text-transform: uppercase;
		}
		.hermesorder input.btn_wide {
			display: inline-block; width: auto; font-size: 0.9em;
		}
		</style>
	</head>
	<body>
		<!-- header //-->
		<?php require(DIR_WS_INCLUDES . 'header.php'); ?>
		<!-- header_eof //-->

		<!-- body //-->
		<table border="0" width="100%" cellspacing="2" cellpadding="2">
			<tr>
				<td class="columnLeft2" width="<?php echo BOX_WIDTH; ?>" valign="top">
					<!-- left_navigation //-->
					<?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>
					<!-- left_navigation_eof //-->
				</td>

				<td class="boxCenter hermesorder" width="100%" valign="top">
				<!-- body_text //-->
					<div class="availability">
						##checking_availability
					</div>

					<h2>##recorded_orders</h2>

					<div id="messages">
					<?php foreach($session_messages as $msg): ?>
						<p class="message"><?php echo $msg ?></p>
					<?php endforeach ?>
					</div>

					<?php if($hermes->getService() === 'PriPS' || $hermes->isConfigured() === true): ?>
						<p>##note_90days_max500</p>

						<div id="propsorders">
							##loading
						</div>
					<?php endif ?>

					<iframe name="pdf_frame" style="display: none;"></iframe>
				</td>
				<!-- body_text_eof //-->

			</tr>
		</table>
		<!-- body_eof //-->

		<!-- footer //-->
		<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
		<!-- footer_eof //-->
		<script>
			$(function() {
				$('a.newwindow').click(function(e) {
					e.preventDefault();
					window.open($(this).attr('href'));
				});
				$('.confirm').click(function(e) {
					return window.confirm('##really_delete');
				});

				var afterlistload = function() {
					$('form.batchlabels').on('submit', function(e) {
						var the_form = $(this);
						$('#propsorders input.orderselect:checked').each(function() {
							var orderno = $(this).val();
							the_form.prepend($('<input type="hidden" name="selected[]" value="'+orderno+'">'));
							setTimeout(function() { $('#propsorders').load('hermes_list.php', { 'loadlist': 1 }); }, 10);
						});
					});
				}

				$('.availability').load('hermes_order.php', { 'ajax': 'checkavailability' }, function() {
						if($('span.available').length > 0) {
							$('#propsorders').load('hermes_list.php', { 'loadlist': 1 }, afterlistload);
						}
						else {
							$('#propsorders').html('##cannot_retrieve_data');
						}
					});

				$(document).on('click', 'td.shippingid', function(e) {
					var sid = $('span.sid', this).text();
					var orderno = $('.orderno', $(this).parent()).text();
					if(sid != '') {
						$('div.sstatus', this).text('##loading_tracking_data');
						$('div.sstatus', this).load('hermes_list.php', { 'shipmentstatus': sid } );
					}
				});

				$(document).on('change', '#propsorders input.orderselect', function(e) {
					if($('#propsorders input.orderselect:checked').length > 40) {
						alert('##max_40_orders');
						$(this).prop("checked", false);
					}
				});


				$(document).on('click', '#sel_all, #sel_all_top', function(e) {
					e.preventDefault();
					$('.propsorders input[type="checkbox"]').prop("checked", true);
				});

				$(document).on('click', '#sel_none, #sel_none_top', function(e) {
					e.preventDefault();
					$('.propsorders input[type="checkbox"]').prop("checked", false);
				});

				$(document).on('click', '#sel_unprinted, #sel_unprinted_top', function(e) {
					e.preventDefault();
					var count = 0;
					$('.propsorders tr').each(function() {
						var status = $('td.status', this).text();
						var status_no = status.replace(/(-?\d+).*/, '$1');
						switch(status_no) {
							case '2':
							case '4':
								$('input[type="checkbox"]', this).prop("checked", true);
								break;
						}
					});
				});

				$(document).on('click', '#refresh, #refresh_top', function(e) {
					e.preventDefault();
					$('#propsorders').html('##refreshing');
					$('#propsorders').load('hermes_list.php', { 'loadlist': 1 });
				});
			});
		</script>
	</body>
</html>
<?php
echo $hermes->replaceTextPlaceholders(ob_get_clean());
require(DIR_WS_INCLUDES . 'application_bottom.php');

Youez - 2016 - github.com/yon3zu
LinuXploit