File: /var/www/gurumedia_st_usr/data/www/gurumedia.store/frdsp/dp/page/frd-p-sr/frd-LiveOrdersSummery.php
<?php
require_once('frd1_whoami.php');
$FR_ptitle="Live Orders Summery";//PAGE TITLE
$p="$FR_RP";//PAGE NAME
$inn="";
require_once('frd-this-header.php');
require_once('frd1_header.php');
?>
<h2 class="PT"> Live Orders Summery </h2>
<!-- 1 SCRIPT START -->
<section>
<?php
?>
</section>
<!-- 1 SCRIPT END -->
<section>
<div class="container">
<div class="col-md-11">
<div class="row">
<h2 class="text-center boldd"> All Orders</h2>
<div class="text-center"> <h6 class="label label-danger pip_pip_1s">Live</h6> </div>
<div class="owl-carousel owl-theme fr_oc_orders frd-card-1">
<?php
$FRR_INVOICE_STAT = FRF_INVOICE_STAT();
foreach ($FRR_INVOICE_STAT as $FR_ITEM) {
extract($FR_ITEM);
$FRQ = $FR_CONN->query("SELECT COUNT(id) FROM frd_order_invo WHERE fr_stat = $s_code");
$FRSD = $FRQ->fetch();
$FR_T_INVOICE_C = $FRSD['COUNT(id)'];
echo "
<div class='item' role='button'>
<div class='text-center btn btn-default btn-block'>
<small> <i class='glyphicon glyphicon-pushpin'> </i> $s_title </small>
<h1>$FR_T_INVOICE_C</h1>
</div>
</div>
";
}
?>
<br>
</div>
</div>
<br><br><br>
<div class="row">
<h2 class="text-center boldd">ALL Shipped Parcel</h2>
<div class="text-center"> <h6 class="label label-danger pip_pip_1s">Live</h6> </div>
<div class="owl-carousel owl-theme fr_oc_ship_part frd-card-1">
<?php
$FRR = FR_QSEL("SELECT * FROM frd_shippart ORDER BY id ASC","ALL");
if($FRR['FRA']==1){
foreach($FRR['FRD'] as $FR_ITEM){
extract($FR_ITEM);
extract(FRF_SHIP_PART_CUR_ORDER_C($id));
echo "
<div class='item' role='button'>
<div class='text-center btn btn-default btn-block'>
<small> <i class='glyphicon glyphicon-pushpin'> </i> $frd_namee </small>
<h1>$FRc_SHIP_PART_CUR_ORDER_C</h1>
</div>
</div>
";
}
} else{
// PR($FRR);
echo "<div class='item alert alert-danger text-center'> No Data Found </div>";
}
?>
</div>
</div>
</div>
</div>
</section>
<script>
$(document).ready(function() {
///////////////////////////////////////////
//FRD OWL CAROSOL:-
///////////////////////////////////////////
$('.fr_oc_orders').owlCarousel({
loop: false,
margin: 20,
nav: false,
autoplay: false,
autoplayTimeout: 4000,
autoplayHoverPause: true,
smartSpeed: 1000,
dots: false,
responsive: {
0: {
items: 2
},
600: {
items: 6
},
1000: {
items: 8
}
}
});
//END>>
///////////////////////////////////////////
//FRD OWL CAROSOL:-
///////////////////////////////////////////
$('.fr_oc_ship_part').owlCarousel({
loop: true,
margin: 20,
nav: true,
autoplay: true,
autoplayTimeout: 3000,
autoplayHoverPause: true,
smartSpeed: 1000,
dots: false,
responsive: {
0: {
items: 2
},
600: {
items: 4
},
1000: {
items: 4
}
}
});
//END>>
});
</script>
<?php require_once('frd1_footer.php'); ?>