203 lines
8.6 KiB
PHP
203 lines
8.6 KiB
PHP
<?php
|
|
$pembelian = $this->model_reseller->pembelian($this->session->id_reseller)->row_array();
|
|
$penjualan_perusahaan = $this->model_reseller->penjualan_perusahaan($this->session->id_reseller)->row_array();
|
|
$penjualan = $this->model_reseller->penjualan($this->session->id_reseller)->row_array();
|
|
$modal_perusahaan = $this->model_reseller->modal_perusahaan($this->session->id_reseller)->row_array();
|
|
$modal_pribadi = $this->model_reseller->modal_pribadi($this->session->id_reseller)->row_array();
|
|
$modal_pribadi2 = $this->model_reseller->modal_pribadi2()->row_array();
|
|
$set = $this->db->query("SELECT * FROM rb_setting where aktif='Y'")->row_array();
|
|
?>
|
|
<div class="row">
|
|
<a style='color:#000' href='#'>
|
|
<div class="col-md-3 col-sm-6 col-xs-12">
|
|
<div class="info-box">
|
|
<span class="info-box-icon bg-aqua"><i class="fa fa-folder-open"></i></span>
|
|
<div class="info-box-content">
|
|
<span class="info-box-text">Total Belanja</span>
|
|
<span class="info-box-number"><?php echo "Rp " . rupiah($pembelian['total']); ?></span>
|
|
</div><!-- /.info-box-content -->
|
|
</div><!-- /.info-box -->
|
|
</div><!-- /.col -->
|
|
</a>
|
|
|
|
<a style='color:#000' href='#'>
|
|
<div class="col-md-3 col-sm-6 col-xs-12">
|
|
<div class="info-box">
|
|
<span class="info-box-icon bg-green"><i class="fa fa-shopping-cart"></i></span>
|
|
<div class="info-box-content">
|
|
<span class="info-box-text">Total Penjualan</span>
|
|
<span class="info-box-number"><?php echo "Rp " . rupiah($penjualan_perusahaan['total']); ?></span>
|
|
</div><!-- /.info-box-content -->
|
|
</div><!-- /.info-box -->
|
|
</div><!-- /.col -->
|
|
</a>
|
|
|
|
<a style='color:#000' href='#'>
|
|
<div class="col-md-3 col-sm-6 col-xs-12">
|
|
<div class="info-box">
|
|
<span class="info-box-icon bg-yellow"><i class="glyphicon glyphicon-briefcase"></i></span>
|
|
<div class="info-box-content">
|
|
<span class="info-box-text">Modal Penjualan</span>
|
|
<span class="info-box-number"><?php echo "Rp " . rupiah($modal_perusahaan['total']); ?></span>
|
|
</div><!-- /.info-box-content -->
|
|
</div><!-- /.info-box -->
|
|
</div><!-- /.col -->
|
|
</a>
|
|
|
|
<a style='color:#000' href='#'>
|
|
<div class="col-md-3 col-sm-6 col-xs-12">
|
|
<div class="info-box">
|
|
<span class="info-box-icon bg-red"><i class="glyphicon glyphicon-star"></i></span>
|
|
<div class="info-box-content">
|
|
<span class="info-box-text">Produk Pribadi</span>
|
|
<span class="info-box-number"><?php echo "Rp " . rupiah($penjualan['total']); ?></span>
|
|
</div><!-- /.info-box-content -->
|
|
</div><!-- /.info-box -->
|
|
</div><!-- /.col -->
|
|
</a>
|
|
|
|
<a style='color:#000' href='#'>
|
|
<div class="col-md-3 col-sm-6 col-xs-12">
|
|
<div class="info-box">
|
|
<span class="info-box-icon bg-red"><i class="glyphicon glyphicon-star"></i></span>
|
|
<div class="info-box-content">
|
|
<span class="info-box-text">Modal Pribadi</span>
|
|
<span class="info-box-number"><?php echo "Rp " . rupiah($modal_pribadi2['total_harga_konsumen']); ?></span>
|
|
</div><!-- /.info-box-content -->
|
|
</div><!-- /.info-box -->
|
|
</div><!-- /.col -->
|
|
</a>
|
|
</div><!-- /.row -->
|
|
|
|
|
|
<section class="col-lg-6 connectedSortable">
|
|
|
|
<div class="box box-success">
|
|
<div class="box-header">
|
|
<i class="fa fa-th-list"></i>
|
|
<h3 class="box-title">10 Transaksi Pembelian Terbaru</h3>
|
|
<div class="box-tools pull-right">
|
|
<button class="btn btn-box-tool" data-widget="collapse" data-toggle="tooltip" title="Collapse"><i
|
|
class="fa fa-minus"></i></button>
|
|
<button class="btn btn-box-tool" data-widget="remove" data-toggle="tooltip" title="Remove"><i
|
|
class="fa fa-times"></i></button>
|
|
</div>
|
|
</div>
|
|
<div class="box-body">
|
|
<table class="table table-bordered table-striped table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th style='width:40px'>No</th>
|
|
<th>Kode Transaksi</th>
|
|
<th>Kurir</th>
|
|
<th>Status</th>
|
|
<th>Total + Ongkir</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$no = 1;
|
|
$record = $this->model_reseller->penjualan_list_pusat_top();
|
|
foreach ($record->result_array() as $row) {
|
|
if ($row['proses'] == '0') {
|
|
$proses = '<i class="text-danger">Pending</i>';
|
|
$status = 'Menunggu Konfirmasi';
|
|
$icon = 'star-empty';
|
|
$ubah = 1;
|
|
} elseif ($row['proses'] == '1') {
|
|
$proses = '<i class="text-success">Selesai</i>';
|
|
$status = 'Selesai';
|
|
$icon = 'star text-yellow';
|
|
$ubah = 0;
|
|
} elseif ($row['proses'] == '2') {
|
|
$proses = '<i class="text-success">Selesai</i>';
|
|
$status = 'Selesai';
|
|
$icon = 'star text-yellow';
|
|
$ubah = 0;
|
|
}
|
|
$total = $this->db->query("SELECT sum((a.harga_jual*a.jumlah)-a.diskon) as total FROM `rb_penjualan_detail` a where a.id_penjualan='$row[id_penjualan]'")->row_array();
|
|
echo "<tr><td>$no</td>
|
|
<td><a href='" . base_url() . $this->uri->segment(1) . "/detail_penjualan/$row[id_penjualan]'>$row[kode_transaksi]</a></td>
|
|
<td><span style='text-transform:uppercase'>$row[kurir]</span> - $row[service]</td>
|
|
<td>$proses</td>
|
|
<td style='color:red;'>Rp " . rupiah($total['total'] + $row['ongkir']) . "</td>
|
|
</tr>";
|
|
$no++;
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
<a class='btn btn-default btn-block' href='<?php echo base_url() . $this->uri->segment(1); ?>/pembelian'>Lihat
|
|
Semua</a>
|
|
</div>
|
|
</div>
|
|
|
|
</section><!-- /.Left col -->
|
|
|
|
<section class="col-lg-6 connectedSortable">
|
|
|
|
<div class="box box-success">
|
|
<div class="box-header">
|
|
<i class="fa fa-th-list"></i>
|
|
<h3 class="box-title">10 Transaksi Penjualan Terbaru</h3>
|
|
<div class="box-tools pull-right">
|
|
<button class="btn btn-box-tool" data-widget="collapse" data-toggle="tooltip" title="Collapse"><i
|
|
class="fa fa-minus"></i></button>
|
|
<button class="btn btn-box-tool" data-widget="remove" data-toggle="tooltip" title="Remove"><i
|
|
class="fa fa-times"></i></button>
|
|
</div>
|
|
</div>
|
|
<div class="box-body">
|
|
<table class="table table-bordered table-striped table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th style='width:40px'>No</th>
|
|
<th>Kode Transaksi</th>
|
|
<th>Kurir</th>
|
|
<th>Status</th>
|
|
<th>Total + Ongkir</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$no = 1;
|
|
$record = $this->model_reseller->penjualan_list_konsumen_top($this->session->id_reseller, 'reseller');
|
|
foreach ($record->result_array() as $row) {
|
|
if ($row['proses'] == '0') {
|
|
$proses = '<i class="text-danger">Pending</i>';
|
|
$status = 'Proses';
|
|
$icon = 'star-empty';
|
|
$ubah = 1;
|
|
} elseif ($row['proses'] == '1') {
|
|
$proses = '<i class="text-success">Proses</i>';
|
|
$status = 'Pending';
|
|
$icon = 'star text-yellow';
|
|
$ubah = 0;
|
|
} elseif ($row['proses'] == '2') {
|
|
$proses = '<i class="text-success">Konfirmasi</i>';
|
|
$status = 'Proses';
|
|
$icon = 'star text-yellow';
|
|
$ubah = 0;
|
|
} elseif ($row['proses'] == '3') {
|
|
$proses = '<i class="text-success">Selesai</i>';
|
|
$status = 'Selesai';
|
|
$icon = 'star text-yellow';
|
|
$ubah = 0;
|
|
}
|
|
$total = $this->db->query("SELECT sum((a.harga_jual*a.jumlah)-a.diskon) as total FROM `rb_penjualan_detail` a where a.id_penjualan='$row[id_penjualan]'")->row_array();
|
|
echo "<tr><td>$no</td>
|
|
<td><a href='" . base_url() . $this->uri->segment(1) . "/detail_penjualan/$row[id_penjualan]'>$row[kode_transaksi]</a></td>
|
|
<td><span style='text-transform:uppercase'>$row[kurir]</span> - $row[service]</td>
|
|
<td>$proses</td>
|
|
<td style='color:red;'>Rp " . rupiah($total['total'] + $row['ongkir']) . "</td>
|
|
</tr>";
|
|
$no++;
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
<a class='btn btn-default btn-block' href='<?php echo base_url() . $this->uri->segment(1); ?>/penjualan'>Lihat
|
|
Semua</a>
|
|
</div>
|
|
</div>
|
|
</section><!-- right col -->
|