deploy awal
This commit is contained in:
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
|
||||
class Barang extends CI_Controller
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
chek_role();
|
||||
$this->load->model('Model_barang');
|
||||
$this->load->model('Model_kategori');
|
||||
// $this->load->model('Model_suplier');
|
||||
}
|
||||
function index()
|
||||
{
|
||||
$data['record'] = $this->Model_barang->tampil_data()->result();
|
||||
$this->template->load('Template/template', 'Barang/lihat_data', $data);
|
||||
$this->load->view('Template/datatables');
|
||||
|
||||
}
|
||||
function post()
|
||||
{
|
||||
if (isset($_POST["submit"])) {
|
||||
$config['upload_path'] = './uploads/';
|
||||
$config['allowed_types'] = 'gif|jpg|png|jpeg';
|
||||
$config['max_size'] = 1024;
|
||||
$config['max_width'] = 6000;
|
||||
$config['max_height'] = 6000;
|
||||
$config['overwrite'] = TRUE;
|
||||
$config['remove_spaces'] = TRUE;
|
||||
$config['encrypt_name'] = TRUE;
|
||||
$this->upload->initialize($config);
|
||||
if (!$this->upload->do_upload('foto')) {
|
||||
$this->session->set_flashdata('message', $this->upload->display_errors());
|
||||
redirect($_SERVER['HTTP_REFERER']);
|
||||
return false;
|
||||
} else {
|
||||
// proses barang
|
||||
$id = $this->input->post('id');
|
||||
$nama = $this->input->post('nama_barang');
|
||||
$suplier = $this->input->post('suplier');
|
||||
$kategori = $this->input->post('kategori');
|
||||
$harga_dot = $this->input->post('harga');
|
||||
$harga = (int) str_replace('.', '', $harga_dot);
|
||||
$harga_beli_with_dot = $this->input->post('harga_beli');
|
||||
|
||||
// Menghapus tanda titik dari nilai
|
||||
$harga_beli = (int) str_replace('.', '', $harga_beli_with_dot);
|
||||
$ukuran = $this->input->post('ukuran');
|
||||
$foto = $this->upload->data('file_name');
|
||||
$data = array(
|
||||
'nama_barang' => $nama,
|
||||
'id_suplier' => $suplier,
|
||||
'id_kategori' => $kategori,
|
||||
'ukuran' => $ukuran,
|
||||
'harga' => $harga,
|
||||
'harga_beli' => $harga_beli,
|
||||
'foto' => $foto,
|
||||
);
|
||||
$this->Model_barang->post($data, $id);
|
||||
$this->session->set_flashdata('message', 'Data Barang berhasil ditambahkan!');
|
||||
redirect('barang');
|
||||
}
|
||||
} else {
|
||||
$id = $this->uri->segment(3);
|
||||
$data['error'] = $this->upload->display_errors();
|
||||
$this->load->model("Model_kategori");
|
||||
$data['kategori'] = $this->Model_kategori->tampilkan_data();
|
||||
$data['suplier'] = $this->Model_kategori->tampilkan_data2();
|
||||
$data['record'] = $this->Model_barang->get_one($id)->row_array();
|
||||
$data['ukuran'] = $this->Model_barang->tampilkan_ukuran()->result();
|
||||
$this->template->load("Template/template", "Barang/form_input", $data);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function edit()
|
||||
{
|
||||
if (isset($_POST['submit'])) {
|
||||
$config['upload_path'] = './uploads/';
|
||||
$config['allowed_types'] = 'gif|jpg|png|jpeg';
|
||||
$config['max_size'] = 1024;
|
||||
$config['max_width'] = 6000;
|
||||
$config['max_height'] = 6000;
|
||||
$config['overwrite'] = TRUE;
|
||||
$config['remove_spaces'] = TRUE;
|
||||
$config['encrypt_name'] = TRUE;
|
||||
$this->upload->initialize($config);
|
||||
if (!$this->upload->do_upload('foto')) {
|
||||
$this->session->set_flashdata('message', $this->upload->display_errors());
|
||||
redirect($_SERVER['HTTP_REFERER']);
|
||||
return false;
|
||||
} else {
|
||||
$id = $this->input->post('id');
|
||||
$foto = $this->Model_barang->get_one($id)->row_array()['foto'];
|
||||
$path = $this->upload->data('file_path');
|
||||
$uploads = $path . $foto;
|
||||
if (unlink($uploads)) {
|
||||
echo 'deleted successfully';
|
||||
} else {
|
||||
echo 'errors occured';
|
||||
}
|
||||
$nama = $this->input->post('nama_barang');
|
||||
$kategori = $this->input->post('kategori');
|
||||
$harga_dot = $this->input->post('harga');
|
||||
$harga = (int) str_replace('.', '', $harga_dot);
|
||||
$harga_beli_with_dot = $this->input->post('harga_beli');
|
||||
|
||||
// Menghapus tanda titik dari nilai
|
||||
$harga_beli = (int) str_replace('.', '', $harga_beli_with_dot);
|
||||
$ukuran = $this->input->post('ukuran');
|
||||
$foto = $this->upload->data('file_name');
|
||||
$data = array(
|
||||
'nama_barang' => $nama,
|
||||
'id_kategori' => $kategori,
|
||||
'ukuran' => $ukuran,
|
||||
'harga' => $harga,
|
||||
'harga_beli' => $harga_beli,
|
||||
'foto' => $foto,
|
||||
);
|
||||
$this->Model_barang->edit($data, $id);
|
||||
$this->session->set_flashdata('message', 'Data Barang berhasil dirubah!');
|
||||
redirect('barang');
|
||||
}
|
||||
} else {
|
||||
$id = $this->uri->segment(3);
|
||||
$this->load->model('Model_kategori');
|
||||
$data['kategori'] = $this->Model_kategori->tampilkan_data();
|
||||
$data['record'] = $this->Model_barang->get_one($id)->row_array();
|
||||
$data['ukuran'] = $this->Model_barang->tampilkan_ukuran()->result();
|
||||
$this->template->load('Template/template', 'Barang/form_edit', $data);
|
||||
}
|
||||
}
|
||||
function hapus()
|
||||
{
|
||||
$id = $this->uri->segment(3);
|
||||
$this->Model_barang->hapus($id);
|
||||
$this->session->set_flashdata('message', 'Data Barang berhasil dihapus!');
|
||||
redirect('barang');
|
||||
}
|
||||
|
||||
function detail_modal($id)
|
||||
{
|
||||
$id = $this->input->get('id');
|
||||
$data['detail'] = $this->Model_barang->get_detail_modal($id);
|
||||
$this->load->view('Barang/modal_detail', $data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user