ETS PBKK-B
Anggota Kelompok:
1. I kadek Ricky Suirta (05111840000146)
2. Bayu Surya Bawono (05111840000114)
3. Alie Husaini R. (05111840000097)
1. Sebutkan aplikasi POS yang biasa dipakai di masyarakat?
Aplikasi yang digunakan:
1. whee
2. iReap POS Lite
3. Olsera
4. Moka
5. Pawoon
2. Fitur apa saja yang ada di dalam aplikasi tersebut, buatlah screenshotnya dan jelaskan?
Dari beberapa aplikasi di atas, berikut merupakan fitur dari salaha satu aplikasinya yaitu : whee
1. Dashboard
Pada fitur dashboard, kita bisa melihat informasi penjualan usaha dari jumlah transsaksi, produk terjual, produk terlaris, total pendapatan peirode harian, bulanan, bahkan tahunan secara Real-Time.
2. Laporan / Riwayat Transaksi
3. Buat rancangan UI dan navigasi aplikasi POS mu sendiri?
Berikut tampilan rancangan awal:
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Text; | |
using System.Windows.Forms; | |
namespace POS | |
{ | |
public partial class login : Form | |
{ | |
public login() | |
{ | |
InitializeComponent(); | |
} | |
private void btnLogin_Click(object sender, EventArgs e) | |
{ | |
if(txtUsername.Text != "" && txtPassword.Text != "") | |
{ | |
DataTable dataTable = new DataTable(); | |
dataTable = DBAccess.FillDataTable("select * from account where username='" + txtUsername.Text.Trim() + | |
"' and password='" + txtPassword.Text.Trim() + "'", dataTable); | |
if (dataTable != null && dataTable.Rows.Count > 0) | |
{ | |
mainWindow mainWindow = new mainWindow(); | |
mainWindow.Show(); | |
txtUsername.Clear(); | |
txtPassword.Clear(); | |
} | |
else | |
{ | |
MessageBox.Show("Username atau password salah.", "POS", MessageBoxButtons.OK, MessageBoxIcon.Warning); | |
} | |
} | |
else | |
{ | |
MessageBox.Show("Masukkan username dan password.", "POS", MessageBoxButtons.OK, MessageBoxIcon.Warning); | |
} | |
} | |
private void btnExit_Click(object sender, EventArgs e) | |
{ | |
this.Close(); | |
} | |
} | |
} |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; | |
namespace POS | |
{ | |
static class Program | |
{ | |
/// <summary> | |
/// The main entry point for the application. | |
/// </summary> | |
[STAThread] | |
static void Main() | |
{ | |
Application.SetHighDpiMode(HighDpiMode.SystemAware); | |
Application.EnableVisualStyles(); | |
Application.SetCompatibleTextRenderingDefault(false); | |
Application.Run(new login()); | |
} | |
} | |
} |
5. Buat tutorial pembuatan aplikasi beserta demo penggunaannya di Youtube , kemudian dokumentasikan/ embedded di blog.
Comments
Post a Comment