Skip to content

Commit e9b0f4b

Browse files
committed
added readme and update sql
1 parent 9015511 commit e9b0f4b

File tree

2 files changed

+87
-6
lines changed

2 files changed

+87
-6
lines changed

databaseinventory.sql

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,7 @@ CREATE TABLE `client` (
5656
-- Dumping data for table `client`
5757
--
5858

59-
INSERT INTO `client` (`client_id`, `nama_client`, `nama_korespondensi`, `alamat_perusahaan`, `username`, `password`) VALUES
60-
(1, 'OWL', 'admin', '...', '', ''),
61-
59+
INSERT INTO `client` (`client_id`, `nama_client`, `nama_korespondensi`, `alamat_perusahaan`, `username`, `password`) VALUES ('1', 'OWL', 'riki', '...', 'admin', 'admin');
6260
-- --------------------------------------------------------
6361

6462
--
@@ -225,9 +223,7 @@ CREATE TABLE `user_account` (
225223
-- Dumping data for table `user_account`
226224
--
227225

228-
INSERT INTO `user_account` (`account_id`, `nama_lengkap`, `username`, `password`, `role`, `tanda_tangan`) VALUES
229-
(1, 'admin', 'admin', 'admin', 'admin', ''),
230-
COMMIT;
226+
INSERT INTO `user_account` (`account_id`, `nama_lengkap`, `username`, `password`, `role`, `tanda_tangan`) VALUES ('1', 'admin', 'admin', 'admin', 'admin', NULL);
231227

232228
--
233229
-- Indexes for table `bahan_produksi`

readme.md

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<h1 align="center"> OWL Inventory </h1> <br>
2+
<p align="center">
3+
<a href="#">
4+
<img alt="owl inventory" title="owl inventory" src="https://i.imgur.com/aOrTUkR.png" width="360">
5+
</a>
6+
</p>
7+
8+
<p align="center">
9+
Integrated Inventory Management IoT Devices.
10+
</p>
11+
12+
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
13+
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
14+
15+
## Table of Contents
16+
17+
- [Introduction](#introduction)
18+
- [Features](#features)
19+
- [Setup](#setup)
20+
- [Team](#team)
21+
- [Acknowledgments](#acknowledgments)
22+
23+
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
24+
25+
## Introduction
26+
27+
This repository contains the source code and documentation for an Inventory Management System designed to streamline the production and monitoring processes of IoT devices. The system is capable of handling various stages of production, starting from tracking raw materials to monitoring deployed devices at client locations using MQTT protocol. I worked on this project during my internship at PT. Origin Wiracipta Lestari in the Research and Development division for a duration of 2 months.
28+
29+
![PHP](https://img.shields.io/badge/Built_with-PHP-blue?logo=php)
30+
![HTML](https://img.shields.io/badge/Built_with-HTML-orange?logo=html5)
31+
![CSS](https://img.shields.io/badge/Built_with-CSS-blueviolet?logo=css3)
32+
![JavaScript](https://img.shields.io/badge/Built_with-JavaScript-yellow?logo=javascript)
33+
![jQuery](https://img.shields.io/badge/Built_with-jQuery-blue?logo=jquery)
34+
35+
## Features
36+
37+
A few of the things you can do with this system:
38+
39+
- Recording the necessary materials for manufacturing IoT devices
40+
- Producing IoT devices and generating Serial Number barcodes, MAC Addresses for each IoT device
41+
- Recording the prices of materials and production costs for IoT devices
42+
- Tracking the inventory of materials and the stock of IoT devices on hand
43+
- Input collaborating clients
44+
- Input devices that require maintenance based on client requests
45+
- Creating PDF reports for IoT device maintenance events
46+
- Monitoring IoT devices located at client sites
47+
- Viewing historical records of all transactions conducted
48+
- User account management system, with two roles: admin and user
49+
- And much more...
50+
51+
<p align="center">
52+
<img src = "https://i.imgur.com/JtY4m8H.jpeg" width=1080>
53+
</p>
54+
55+
## Setup
56+
57+
1. Clone this project into the C:\xampp\htdocs directory if you are using XAMPP, or into the C:\laragon\www directory if you are using Laragon.
58+
59+
```
60+
git clone https://github.com/munovrizall/owl_inventory.git
61+
```
62+
63+
2. Open phpMyAdmin and import the databaseinventory.sql file located in owl_inventory/databaseinventory.sql.
64+
65+
3. Start XAMPP or Laragon, and open url localhost/owl_inventory in your browser
66+
67+
4. Login with username "admin" and password "admin"
68+
69+
5. You are ready to go!
70+
71+
## Team
72+
73+
<table>
74+
<tbody>
75+
<tr>
76+
<td align="center" valign="top" width="33%"><a href="https://github.com/munovrizall"><img src="https://avatars.githubusercontent.com/u/85984439?v=4" width="100px;" alt="Mohammad Novrizal Sugiarto"/><br /><sub><b>Mohammad Novrizal Sugiarto</b></sub></a><br /></td>
77+
<td align="center" valign="top" width="33%"><a href="https://github.com/ryanffirdaus"><img src="https://avatars.githubusercontent.com/u/136410140?v=4" width="100px;" alt="Ryan Faatih Firdaus"/><br /><sub><b>Ryan Faatih Firdaus</b></sub></a><br /></td>
78+
<td align="center" valign="top" width="33%"><a href="https://github.com/rikimr"><img src="https://avatars.githubusercontent.com/u/96761115?v=4" width="100px;" alt="Riki Muhamad Rifai"/><br /><sub><b>Riki Muhamad Rifai</b></sub></a><br /></td>
79+
</tr>
80+
</tbody>
81+
</table>
82+
83+
## Acknowledgments
84+
85+
Thanks to [OWL](http://web.owl-plantation.com:8080/index.php) for giving me the opportunity to intern in this company.

0 commit comments

Comments
 (0)