• Tidak ada hasil yang ditemukan

Perancangan Aplikasi Internet Commerce Jersey Sepak Bola

N/A
N/A
Protected

Academic year: 2017

Membagikan "Perancangan Aplikasi Internet Commerce Jersey Sepak Bola"

Copied!
41
0
0

Teks penuh

(1)

LAMPIRAN LISTING PROGRAM WEBSITE

1. Halaman Home (index.php)

<?php include 'includes/header.php' ?> <div id="main">

(2)

</ul> echo $cari; ?></i></b> tidak ditemukan</h3>

(3)

</ul> </div> <?php }

} ?> </div> </div>

<?php include 'includes/footer.php'; ?>

2. Halaman Cara Pesan (carapesan.php)

<?php include 'includes/header.php' ?> <div id="main">

<?php include 'includes/public/aside.php'; ?> <div id="section">

<div class="content"> <h3>Cara Pesan</h3> <ol>

<li>Ikuti Proses Belinya</li> <li>Login atau Daftar</li>

<li>Isi Formulir secara lengkap</li> <li>Transfer ke rekening BNI</li> <!--<li>Setelah di transfer upload foto bukti pembayaran nya</li>-->

</ol> </div> </div> </div>

<?php include 'includes/footer.php'; ?>

3. Halaman Peraturan (peraturan.php)

(4)

<div id="main">

<?php include 'includes/public/aside.php'; ?> <div id="section">

<div class = "content" id="peraturan"> <h3>Peraturan</h3>

<ol>

<li> Tidak ada istilah booking semua yang melakukan pembayaran lebih dulu barang akan diberikan (untuk menghindari penipuan)

</li>

<li> Retur pemesanan hanya dapat dilakukan jika Barang cacat parah</li>

<li>Barang dapat direturn maksimal 1×24 jam setelah barang diterima dan kondisi masih BNWT tanpa ada kerusakan dan Biaya retur ditanggung pihak JBO Shop (wajib sertakan nota)

</li>

<li>Return ada 2 pilihan antara tukar baru / kompensasi

</li>

<li>Jika pembeli tidak memberitahu home atau awaynya semua akan di kirim home.

</li>

<li> Proses waktu pengiriman

tanggung jawab KURIR PENGIRIMAN ( JNE/POS/dll ) , keterlambatan bukan tanggung jawab dari JB Shop </li>

(5)

ukuran kebesaran atau kekecilan, karena semua ukuran ada toleransi dan karena ini adalah jersey replika setiap jersey bisa berbeda-beda ukurannya, tidak terima return atau komplain jahitan kurang rapi, karena ini adalah produksi masal dan jersey tiruan, kalau mau yang rapi dan sempurna 100% beli yang original saja.</li>

<li>Sistem pembelian di website kita adalah : semua order kita tampung,pembeli melakukan pembayaran jika hari itu bisa kirim,maka kita kirim hari itu juga, sedangkan jika tidak terkirim karena barang kehabisan maka malam harinya akan di inf o, ini karena kita packing berdasarkan antrian

pemesanan, dan stock barang yang keluar masuk. </li>

<li>jika barang tidak terkirim kita akan menawarkan refund 100% atau menunggu ,atau ganti dengan jersey lain yang harganya sama. dan ikut proses besuk harinya

</li>

<li>.kita menerima orderan mulai pagi jam 08:00- 16:00 , minggu atau hari besar tutup, malam hari off ,hanya informasi resi saja, jadi mohon maaf yang menghubungi kami baik

sms,email,WA,bbm MALAM HARI TIDAK KITA RESPON. Semua pembayaran transfer di atas jam 2 akan di proses hari berikutnya.

</li>

<li>semua harga yang diberikan ke reseller tidak bisa di tawar lagi, karena itu harga terndah harga jual kami ke reseller, reseller

(6)

<li>semua yang sudah melakukan pembelian dari website ini ataupun dari facebook resmi web ini, di anggap telah menyetujui semua perturan di website ini yang tertera di atas, sehingga tidak ada alasan apapun untuk melakukan komplain jika di luar perturan di atas.</li>

</ol> </div> </div> </div>

<?php include 'includes/footer.php'; ?>

4. Halaman Bukti (bukti.php)

<?php include 'includes/header.php' ?> <div id="main">

<?php include 'includes/public/aside.php'; ?> <div id="section">

<?php

$query = mysqli_query($conn, "SELECT * FROM pembayaran");

while ($row = mysqli_fetch_array($query)) { ?>

<div class="barang"> <ul >

<li id="nama">Nama: <?php echo ucfirst($row['nama']); ?></li>

<li id="gambar">File: <img src="<?php echo $row['file']; ?>"></li>

(7)

<li id="rating">Kode beli: <?php echo $row['kode']; ?></li>

</ul> </div> <?php }

?> </div> </div>

<?php include 'includes/footer.php'; ?>

5. Halaman Hubungi Kami (hubungikami.php)

<?php include 'includes/header.php' ?> <div id="main">

<?php include 'includes/public/aside.php'; ?> <div id="section">

<div id="hubungi">

<h3>Hubungi Kami</h3> <ol>

<li> No HP : 085362635945</li> <li>PIN BB:5E292091</li>

</ol> </div> </div> </div>

<?php include 'includes/footer.php'; ?>

6. Halaman Login (login.php)

<?php

(8)

$username = $_POST['username']; $password = $_POST['password'];

$query = mysqli_query($conn, "SELECT * FROM users WHERE username='$username' AND password='$password'");

if (mysqli_num_rows($query)) {

$_SESSION['username'] = $username; echo 'Berhasil';

} else {

echo 'Error ... ' . mysqli_error($conn); }

?>

7. Halaman Daftar (daftar.php)

<?php

include 'koneksi.php';

$username = $_POST['username']; $email = $_POST['email'];

$password = $_POST['password'];

$query = mysqli_query($conn, "INSERT INTO

users(username, email, password) VALUES('$username', '$email', '$password')");

if ($query) {

echo 'Data berhasil ditambah!'; } else {

echo 'Error... ' . mysqli_error($conn); }

?>

(9)

<?php include 'includes/header.php' ?> <div id="main">

<?php include 'includes/public/aside.php'; ?> <div id="section">

<?php

if (isset($_GET['search'])) { $cari = $_GET['search'];

$query = "SELECT * FROM jersey WHERE nama LIKE '%$cari%'";

$result = mysqli_query($conn, $query); while ($row =

mysqli_fetch_array($result)) { ?>

<div class="barang"> <ul >

<li id="nama"><?php echo ucfirst($row['nama']); ?></li>

<li id="gambar"><img src="<?php echo $row['gambar']; ?>"></li>

<li id="harga">Rp. <?php echo $row['harga']; ?>.000</li>

<li id="rating"><?php echo $row['rating']; ?></li>

<li id="kode"><?php echo $row['kode']; ?></li>

<li id="beli"><a href="beli.php?kode=<?php echo $row['kode']; ?>">Beli</a></li>

(10)

</ul> </div> <?php }

} else {

if (isset($_GET['kode'])) { $kode = $_GET['kode'];

$query = "SELECT * FROM jersey WHERE kode='$kode'";

}

$result = mysqli_query($conn, $query); $row = mysqli_fetch_array($result); ?>

<div class="barang"> <ul>

<li id="nama"><?php echo ucfirst($row['nama']); ?></li>

<li id="gambar"><img src="<?php echo $row['gambar']; ?>"></li>

</ul> </div> <?php }

?>

<div class="detail">

<div class="keterangan-detail"> <ul>

(11)

<li id="rating">Rating: <?php echo $row['rating']; ?></li>

<li id="kode">Kode: <?php echo $row['kode']; ?></li>

</ul> </div> </div> </div> </div>

<?php include 'includes/footer.php'; ?>

9. Halaman Beli (beli.php)

<?php include 'includes/header.php' ?> <?php

if (!isset($_SESSION['username'])) { ?>

<script>

alert("Anda harus login terlebih dahulu."); window.location.href = "index.php";

</script> <?php }

?>

<div id="main">

<?php include 'includes/public/aside.php'; ?> <div id="section">

<?php

if (isset($_GET['search'])) { $cari = $_GET['search'];

(12)

$result = mysqli_query($conn, $query); while ($row =

mysqli_fetch_array($result)) { ?>

<div class="barang"> <ul >

<li id="nama"><?php echo ucfirst($row['nama']); ?></li>

<li id="gambar"><img src="<?php echo $row['gambar']; ?>"></li>

<li id="harga">Rp. <?php echo $row['harga']; ?>.000</li>

<li id="rating"><?php echo $row['rating']; ?></li>

<li id="kode"><?php echo $row['kode']; ?></li>

<li id="beli"><a href="beli.php?kode=<?php echo $row['kode']; ?>">Beli</a></li>

<li id="detail"><a href="detail.php?kode=<?php echo $row['kode']; ?>">Detail</a></li>

</ul> </div> <?php }

} else {

if (isset($_GET['kode'])) { $kode = $_GET['kode'];

(13)

}

$result = mysqli_query($conn, $query); $row = mysqli_fetch_array($result); ?>

<div class="barang"> <ul>

<li id="nama"><?php echo ucfirst($row['nama']); ?></li>

<li id="gambar"><img src="<?php echo $row['gambar']; ?>"></li>

<li id="beli"><a

href="checkout.php?kode=<?php echo $row['kode']; ?>">Checkout</a></li>

</ul> </div> <?php }

?>

<div class="detail">

<div class="keterangan-detail"> <ul>

<li id="harga">Harga: Rp. <?php echo $row['harga']; ?>.000</li>

<li id="rating">Rating: <?php echo $row['rating']; ?></li>

<li id="kode">Kode: <?php echo $row['kode']; ?></li>

(14)

</div>

<?php include 'includes/footer.php'; ?>

10.Halaman Chekout (chekout.php)

<?php include 'includes/header.php' ?> <?php

if (isset($_POST['submit'])) { $kode = $_GET['kode']; $email = $_POST['email'];

$nama_lengkap = $_POST['nama-lengkap']; $no_hp = $_POST['no-hp'];

$pin_bb = $_POST['pin-bb']; $alamat = $_POST['alamat']; $provinsi = $_POST['provinsi']; $kota = $_POST['kota'];

$kecamatan = $_POST['kecamatan']; $kode_pos = $_POST['kode-pos'];

$metode_pembayaran = $_POST['metode'];

$query2 = mysqli_query($conn, "INSERT INTO checkout VALUES('$kode', '$email', '$nama_lengkap', '$no_hp', '$pin_bb', '$alamat', '$provinsi', '$kota',

'$kecamatan', '$kode_pos', '$metode_pembayaran')"); if ($query2) {

?>

<<script>

alert("Ok");

window.location.href =

(15)

</script> <?php }

} ?>

<div id="main">

<?php include 'includes/public/aside.php'; ?> <div id="section">

<div class="section-content">

<form action="" method="post"> <div class="checkout"> <div id="informasi">

<h1>1. Detail Informasi</h1> <p>Email</p>

<input type="text" name="email" required>

<p>Nama Lengkap</p> <p><input type="text" name="nama-lengkap" required></p>

<p>No. Handphone</p>

<p><input type="text" name="no-hp" required></p>

<p>Pin BB</p>

<p><input type="text" name="pin-bb" required></p>

<p>Alamat</p>

<p><input type="text" name="alamat" required></p>

<p>Provinsi</p>

(16)

<option value="sumatera utara">Sumatera Utara</option>

<option value="sumatera barat">Sumatera Barat</option>

<option value="sumatera selatan">Sumatera Selatan</option>

<option value="riau">Riau</option>

<option value="bangka belitung">Bangka Belitung</option>

<option value="jawa barat">Jawa Barat</option>

<option value="jawa timur">Jawa Timur</option>

<option value="jawa tengah">Jawa Tengah</option>

<option value="dki jakarta">DKI Jakarta</option>

<option

value="kalimantan timur">Kalimantan Timur</option> <option

value="kalimantan barat">Kalimantan Barat</option>

<option value="sulawesi barat">Sulawesi Barat</option>

</select> </p>

<p>Kota</p>

<p><input type="text" name="kota" required></p>

<p>Kecamatan</p>

<p><input type="text" name="kecamatan" required></p>

<p>Kode pos</p>

(17)

</div>

<div id="metode">

<h1>2. Metode pembayaran</h1> <input type="radio"

name="metode" value="transfer bank" required>Transfer Bank

</div>

<div id="barang">

<h1>3. Konfirmasi pesanan</h1> <?php

if (isset($_GET['kode'])) { $kode = $_GET['kode']; }

$query = "SELECT * FROM jersey WHERE kode='$kode'";

$result = mysqli_query($conn, $query);

while ($row = mysqli_fetch_array($result)) {

?>

<div class="barang"> <ul >

<li id="nama"><?php echo ucfirst($row['nama']); ?></li>

<li

id="gambar"><img src="<?php echo $row['gambar']; ?>"></li>

<li id="harga">Rp. <?php echo $row['harga']; ?>.000</li>

<li

(18)

<li id="kode"><?php echo $row['kode']; ?></li>

</ul> </div> <?php }

?> </div> </div>

<div class="link">

<input type="submit" name="submit" value="Konfirmasi pembayaran">

</div> </form> </div>

</div> </div>

<?php include 'includes/footer.php'; ?>

11.Halaman Pembayaran (pembayaran.php)

<?php include 'includes/header.php' ?> <?php

if (isset($_POST['submit'])) { if (isset($_GET['kode'])) { $kode = $_GET['kode']; }

(19)

$jenis_bank = $_POST['bank'];

$bank = $no_rek . " " . $jenis_bank; $target_dir = "uploads/";

$target_file = $target_dir . basename($_FILES['file']['name']); $uploadOk = 1;

$imageFileType = pathinfo($target_file, PATHINFO_EXTENSION);

$check = getimagesize($_FILES['file']['tmp_name']); if ($check !== false) {

$uploadOk = 1; } else {

$uploadOk = 0; }

if (file_exists($target_file)) { $uploadOk = 0;

echo "File tidak boleh sama."; }

if ($_FILES['file']['size'] > 50000000000) { $uploadOk = 0;

}

if ($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg" && $imageFileType != "gif") {

$uploadOk = 0; }

(20)

echo "Terjadi Kesalahan"; } else {

if

(move_uploaded_file($_FILES['file']['tmp_name'], $target_file)) {

$gambar = $target_file;

$query = mysqli_query($conn, "INSERT INTO pembayaran VALUES('$nama', '$bank', '$gambar',

'$kode')");

if ($query) { ?>

<script>

alert("File telah diupload"); window.location.href =

"selesai.php?<?php echo $kode; ?>"; </script>

<?php } else {

echo "Error..." . mysqli_error($conn); }

} }

$query = mysqli_query($conn, "INSERT INTO pembayaran VALUES");

} ?>

<div id="main">

(21)

<form action="" method="post" enctype="multipart/form-data">

<table> <tr>

<td>No. Rekening</td><td><input type="text" name="no-rek"></td>

</tr> <tr>

<td>Nama</td><td><input type="text" name="nama"></td>

</tr> <tr>

<td>Jenis Bank</td> <td>

<select name="bank"> <option

value="bni">BNI</option>

<option value="bri">BRI</option>

<option value="mandiri">Mandiri</option> </select> </td>

</tr> <tr> <td>

<input type="file" name="file" required>

(22)

<input type="submit" name="submit" value="Lanjut">

</td> </tr> </table> </form>

</div> </div>

<?php include 'includes/footer.php'; ?>

12.Halaman Logout (logout.php)

<?php

include 'koneksi.php'; /*

* To change this license header, choose License Headers in Project Properties.

* To change this template file, choose Tools | Templates

* and open the template in the editor. */

session_destroy();

header("Location: index.php"); ?>

13.Halaman Selesai (selesai.php)

<?php include 'includes/header.php' ?> <div id="main">

<?php include 'includes/public/aside.php'; ?> <div id="section">

<?php

echo "Terimakasih telah melakukan transaksi.";

(23)

</div> </div>

<?php include 'includes/footer.php'; ?>

14.Halaman Koneksi (koneksi.php)

<?php

$host = "localhost"; $user = "root";

$password = ""; $database = "ta";

$conn = mysqli_connect($host, $user, $password, $database);

?>

15.Halaman Header (header.php)

<?php

include 'koneksi.php'; ?>

<html> <head>

<title>www.jerseyonline.com | Penjualan Jersey Bola</title>

<link rel="stylesheet" href="css/style.css"> <script src="js/jquery-2.2.3.js"></script>

<!-- Insert to your webpage before the </head> -->

<script src="js_slider/jquery.js"></script> <script

(24)

<link rel="stylesheet" type="text/css" href="js_slider/amazingslider-1.css">

<script src="js_slider/initslider-1.js"></script>

<!-- End of head section HTML codes --> <script>

$(document).ready(function () { $(".pendaftaran").on("click", function () {

$("#pendaftaran").css("display", "block");

$("#overlay").css("display", "block");

});

$("#linkdaftar").css("background", "#ccc");

$("#linkdaftar").css("color", "black");

$("#linkdaftar").css("border", "1px solid white");

$("#linklogin").on("click", function () {

$("#login").css("display", "block");

$("#daftar").css("display", "none");

$("#linklogin").css("background", "#ccc");

$("#linklogin").css("color", "black");

$(this).css("border", "1px solid white");

(25)

$("#linkdaftar").css("color", "white");

});

$("#linkdaftar").on("click", function () {

$("#login").css("display", "none");

$("#daftar").css("display", "block");

$(this).css("background", "#ccc");

$(this).css("color", "black"); $(this).css("border", "1px solid white");

$("#linklogin").css("background", "#171717"); $("#linklogin").css("color", "white");

});

$("#overlay").on("click", function () {

$("#pendaftaran").css("display", "none");

$("#overlay").css("display", "none");

});

$("#subdaftar").on("click", function () {

username = $("#dusername").val();

email = $("#demail").val(); password =

$("#dpassword").val();

(26)

method: "post", url: "daftar.php",

data: {username: username, email: email, password: password},

success: function (data) { console.log(data);

setInterval(function () {

$("#load img").attr("src", "images/load/load.gif");

setTimeout(function () {

window.location.href =

"http://localhost/ta/index.php";

}, 2000); }, 2000); }

}); });

$("#sublogin").on("click", function () {

username = $("#lusername").val();

password = $("#lpassword").val();

$.ajax({

method: "post", url: "login.php",

data: {username: username, password: password},

(27)

setInterval(function () {

$("#load img").attr("src", "images/load/load.gif");

setTimeout(function () {

window.location.href =

"http://localhost/ta/index.php";

}, 2000); }, 2000); }

}); }); }); </script> </head>

<body>

<div id="container"> <div id="overlay"> </div>

<?php include 'includes/public/nav.php'; ?>

<?php include

'includes/public/head.php'; ?>

16.Halaman Footer (footer.php)

(28)

<p>&copy; Copyright <?php echo date("Y"); ?> jerseyonline.com | All right reserved</p>

</footer> </div> </body> </html>

17.Style.css

* {

padding: 0; margin: 0; }

body {

background: #f3f3f3; }

#container { width: 100%;

position: relative; z-index: 1;

}

#load img {

width: 50px; height: 50px; }

#overlay {

width: 100%; height: 100%;

(29)

position: absolute; z-index: 3;

}

#pendaftaran {

position: absolute; width: 500px;

height: 600px;

border: 1px solid #ccc; z-index: 1;

background: #f5f5f5; left: 50%;

margin-left: -250px; top: 50px;

display: none; z-index: 4; }

#pendaftaran #login { display: none; padding: 15px; }

#pendaftaran table { width: 80%;

margin: auto;

font: 1em cursive; background: white; }

#pendaftaran input:focus { outline: none;

}

(30)

width: 100%; }

#pendaftaran input[type=text], #pendaftaran input[type=submit], #pendaftaran

input[type=password] { padding: 10px; }

#pendaftaran #daftar { padding: 15px; }

#pendaftaran ul { list-style: none; display: flex;

box-sizing: border-box; }

#pendaftaran ul li { float: left; width: 100%;

text-align: center;

border-left: 1px solid #ccc; }

#pendaftaran ul li a { display: block;

background: #171717; text-decoration: none; width: 100%;

color: white; padding: 15px;

(31)

}

.clear {

clear: both; }

#nav {

width: 100%;

background: #ff0066; }

#ul1 {

list-style: none; width: 1024px; margin: auto; }

#ul1 li {

float: left; }

#ul1 li a {

text-decoration: none; display: block;

padding: 15px;

text-align: center; color: white;

font-family: gabriola; font-size: 1.2em;

(32)

}

#ul1 li a:hover{

background: brown; }

#header {

width: 100%;

background: white; height: 150px;

box-sizing: border-box; border: 1px solid #ccc; position: relative; }

#header #logo {

position: absolute; left: 120px;

top: 50px; width: 215px; }

#header #cari{

position: absolute; width: 300px;

margin-left: -125px; left: 50%;

top: 50px; }

#header #cari #text { padding: 10px;

border: 2px solid #ff0066; outline: none;

(33)

box-sizing: border-box; }

#header #cari #submit{ padding: 10px; width: 20%;

background: #ff0066; padding: 10px;

box-sizing: border-box; margin-left: -5px;

text-decoration: none; color: white;

font: .8em cursive;

border-bottom: 1px solid #ff0066; }

#header #user{

position: absolute; right: 30%;

top: 50px; }

#header #user ul{ list-style: none; }

#header #user ul li{ float: left; }

(34)

padding: 10px 0 10px 0; color: black;

}

#main {

width: 1024px; margin: auto;

border: 1px solid #ccc; background: blue;

}

#aside {

width: 20%;

min-height: 500px;

border: 2px solid #ff0066; float: left;

box-sizing: border-box; background: white;

}

#aside h3 {

background:#ff0066; padding: 15px;

color: white; }

#aside ul {

list-style: none; }

#aside ul li {

padding-left: 5px; }

(35)

display: block; color: black;

font: 1.2em Calibri; text-decoration: none; padding: 10px;

}

#aside ul li:hover{

background: #ff0066; }

#amazingslider-wrapper-1 { margin-bottom: 30px; }

#section {

width: 80%;

min-height: 500px; background: white;

box-sizing: border-box; float: right;

}

#section > div p {

font: 1em 'Segoe UI'; }

#section .content { padding: 15px; }

#section #hubungi { padding: 15px; }

(36)

}

#section #hubungi ol { margin: 15px;

padding: 5px;

font: 1.2em fantasy; }

#section #peraturan {

font-family: "Segoe UI"; }

#section #peraturan li { padding: 5px;

}

#section .content ol { margin: 15px;

}

#section .barang { float: left; width: 175px; margin: 10px;

border: 1px solid #ccc; }

#section .notfound { padding: 15px; margin: 15px; }

#section .notfound h3 { font: 1.5em 'Segoe UI'; }

(37)

border : 1px solid orange; }

#section .barang ul{ list-style: none; }

#section .barang ul li { text-align: center; }

#section .barang ul #nama{ padding: 2.5px;

font: 1em 'Segoe UI'; font-weight: bold; }

#section .barang ul #gambar{ padding: 2.5px;

}

#section .barang ul #harga{ font: 1.2em gill sans mt; font-weight: bold;

padding: 2.5px; }

#section .barang ul #rating{ padding: 2.5px;

}

#section .barang ul #kode{ padding: 2.5px;

(38)

#section .barang ul li img{ width: 130px;

height: 150px; }

#section .barang ul li a{ text-decoration: none; color: white;

background: #ff0066; display :block;

padding: 10px; }

#section .barang ul #detail{ width: 50%;

float : right; }

#section .barang ul #beli{ width: 50%;

float: left;

border-right: 1px solid #f5f5f5; box-sizing: border-box;

}

.detail {

width: 80%; display: block; float: right;

margin-left: 50px;

box-sizing: border-box; }

(39)

list-style: none; }

#section h1 {

font: 1.5em 'Agency Fb'; margin-bottom: 50px; }

#section .link { width: 30px; margin: auto; }

.section-content { padding: 15px; }

.section-content form { }

.section-content input { padding: 5px;

font: 1em 'Segoe UI' }

.section-content input[type=submit] { background: #171717;

color: white;

transition: all ease .5s; }

.section-content input[type=submit]:hover { background: white;

(40)

}

#footer {

width: 100%; height: 100px;

background: cadetblue; color: white;

clear: both; }

#footer p {

text-align: center; padding: 15px 0;

font: 1em 'Agency Fb'; }

/*

checkout */

.checkout {

display: flex;

background: #f5f5f5; }

.checkout > div { width: 100%; margin: 5px;

border: 1px solid #ccc; min-height: 400px;

(41)

box-shadow: 3px 3px 5px #ccc, -3px -3px 5px #ccc;

Referensi

Dokumen terkait

PANITIA PENGADAAN PEKERJAAN KO PENGADAAN BARANG SELAKU KELO PEKERJAAN JALAN DAN JEMBATAN PROVI PADA BALAI PELAKSANA TEKNIS BINA MARGA. DANA APBD TAHUN

at Penawaran Saudara melalui LPSE Provin i Balai Pelaksana Teknis Bina Marga Wilayah aka dengan ini kami mengundang Saudara u si di Kantor Balai Pelaksana Teknis Bina

MUHAMMAD FAUZI TIDAK MEMENUHI SYARAT M.KHAIRUL ANWAR TIDAK MEMENUHI SYARAT WAHYUDI MUHAMAD SYAFPUTRA MEMENUHI SYARAT ALHADI NOVRIZA PUTRA TIDAK MEMENUHI SYARAT. FAUZAN AFANDI

Kegiatan Pendampingan Kegiatan DAK Infrastruktur Irigasi Pekerjaan Paket 23 Rehabilitasi Sarana Irigasi DI Soko Ds Soko, Ringinputih Kec Karangdowo.

[r]

Hasil penelitian yang diperoleh: (1) tindak tutur direktif dalam tayangan “Negeri ½ Demokrasi” sebanyak 35 tindak tutur atau sebesar 36,84% dari 95 jumlah seluruh

Organisasi di mana otoritas pimpinan puncak didelegasikan kpd unit2 organisasi ke paling bawah dalam bidang pekerjaan tertentu dan masing2 pimpinan unit mempunyai

Puji dan syukur penulis ucapkan kepada Tuhan Yang Maha Esa atas Berkat dan Rahmat-Nya sehingga penulis dapat menyelesaikan Tugas Akhir yang berjudul: “ Studi