penawaran / app-old1.py
darsoarafa's picture
Rename app.py to app-old1.py
41f30b9 verified
import gradio as gr
import random
import string
import datetime
from reportlab.lib.pagesizes import A4
from reportlab.lib import colors
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer, Table, TableStyle
from reportlab.lib.styles import ParagraphStyle, getSampleStyleSheet
from reportlab.lib.units import cm
# Daftar produk dan kategori
categories = {
"Kategori A": ["Produk A1", "Produk A2", "Produk A3", "Produk A4", "Produk A5", "Produk A6"],
"Kategori B": ["Produk B1", "Produk B2", "Produk B3", "Produk B4", "Produk B5", "Produk B6"],
"Kategori C": ["Produk C1", "Produk C2", "Produk C3", "Produk C4", "Produk C5", "Produk C6"],
"Kategori D": ["Produk D1", "Produk D2", "Produk D3", "Produk D4", "Produk D5", "Produk D6"]
}
# Fungsi untuk membuat dokumen PDF
def create_pdf(data, filename):
doc = SimpleDocTemplate(filename, pagesize=A4, rightMargin=2*cm, leftMargin=2*cm, topMargin=2*cm, bottomMargin=2*cm)
styles = getSampleStyleSheet()
elements = []
# Gaya teks
title_style = ParagraphStyle(name='Title', fontSize=16, alignment=1, spaceAfter=12)
normal_style = ParagraphStyle(name='Normal', fontSize=12, spaceAfter=8)
bold_style = ParagraphStyle(name='Bold', fontSize=12, fontName='Helvetica-Bold', spaceAfter=8)
# Header
elements.append(Paragraph("Quotation", title_style))
elements.append(Paragraph("PT.Arafa Asia", normal_style))
elements.append(Paragraph("Jl.Griya Cigadung Baru E2, Bandung 40191", normal_style))
elements.append(Spacer(1, 0.5*cm))
# Kepada Yth.
elements.append(Paragraph(f"Kepada Yth.", normal_style))
elements.append(Paragraph(f"{data['nama_prospek']}", bold_style))
elements.append(Paragraph(f"{data['alamat_prospek']}", normal_style))
#elements.append(Paragraph(f"Jenis Prospek: {data['jenis_prospek']}", normal_style))
elements.append(Spacer(1, 0.5*cm))
# Tanggal
elements.append(Paragraph(f"Tanggal: {data['tanggal']}", normal_style))
elements.append(Spacer(1, 0.5*cm))
# Tabel Produk
elements.append(Paragraph("Daftar Produk yang Ditawarkan:", bold_style))
# Data tabel
table_data = [["Nama Produk", "Jumlah", "Harga (Rp)", "Total (Rp)"]]
sub_total = 0
for p in data['produk']:
total = p['jumlah'] * p['harga']
sub_total += total
table_data.append([p['nama'], str(p['jumlah']), f"{p['harga']:,}", f"{total:,}"])
# Hitung diskon dan grand total
if 'diskon' in data and data['diskon']:
diskon_percent = float(data['diskon'])
diskon_amount = (diskon_percent / 100) * sub_total
grand_total = sub_total - diskon_amount
else:
diskon_percent = 0
diskon_amount = 0
grand_total = sub_total
# Tambahkan baris sub-total, diskon, dan grand total
table_data.append(["", "", "Sub-Total", f"{sub_total:,}"])
if diskon_percent > 0:
table_data.append(["", "", f"Diskon ({diskon_percent}%)", f"-{diskon_amount:,}"])
table_data.append(["", "", "Grand Total", f"{grand_total:,}"])
# Buat tabel
table = Table(table_data, colWidths=[6*cm, 2*cm, 3*cm, 3*cm])
table.setStyle(TableStyle([
('BACKGROUND', (0, 0), (-1, 0), colors.grey),
('TEXTCOLOR', (0, 0), (-1, 0), colors.whitesmoke),
('ALIGN', (0, 0), (-1, -1), 'CENTER'),
('FONTNAME', (0, 0), (-1, 0), 'Helvetica-Bold'),
('FONTSIZE', (0, 0), (-1, -1), 12),
('BOTTOMPADDING', (0, 0), (-1, 0), 12),
('BACKGROUND', (0, 1), (-1, -3), colors.beige),
('GRID', (0, 0), (-1, -1), 1, colors.black),
('SPAN', (0, -2), (1, -2)), # Span sub-total
('SPAN', (0, -1), (1, -1)), # Span grand total
('ALIGN', (2, -2), (3, -1), 'RIGHT'), # Align right for totals
]))
if diskon_percent > 0:
table.setStyle(TableStyle([
('SPAN', (0, -3), (1, -3)), # Span diskon
]))
elements.append(table)
elements.append(Spacer(1, 0.5*cm))
# Syarat dan Ketentuan
syarat_text = f"Syarat dan Ketentuan:<br/>{data['syarat']}" if 'syarat' in data else "Syarat dan Ketentuan: Tidak ada"
elements.append(Paragraph(syarat_text, normal_style))
elements.append(Spacer(1, 0.5*cm))
# Tanda Tangan
elements.append(Paragraph("Hormat kami,", normal_style))
elements.append(Paragraph("PT.Arafa Asia", normal_style))
# Build PDF
doc.build(elements)
return filename
# Fungsi untuk memproses input dan membuat penawaran
def buat_penawaran(nama_prospek, alamat_prospek, jenis_prospek, produk_dipilih, jumlah_produk, harga_produk, diskon, tanggal, syarat):
data = {
'nama_prospek': nama_prospek if nama_prospek else "Prospek Tanpa Nama",
'alamat_prospek': alamat_prospek if alamat_prospek else "Alamat Tidak Diketahui",
'jenis_prospek': jenis_prospek if jenis_prospek else "Individu",
'tanggal': tanggal if tanggal else datetime.date.today().strftime("%Y-%m-%d"),
'produk': []
}
# Proses produk
if produk_dipilih and jumlah_produk and harga_produk:
try:
jumlah_list = [int(x.strip()) for x in jumlah_produk.split(",") if x.strip()]
harga_list = [int(x.strip()) for x in harga_produk.split(",") if x.strip()]
for i, p in enumerate(produk_dipilih):
j = jumlah_list[i] if i < len(jumlah_list) else 1
h = harga_list[i] if i < len(harga_list) else 100000
data['produk'].append({'nama': p, 'jumlah': j, 'harga': h})
except ValueError:
data['produk'].append({'nama': "Produk Contoh", 'jumlah': 1, 'harga': 100000})
warning = "Peringatan: Format jumlah atau harga produk salah. Diganti dengan data contoh."
else:
data['produk'].append({'nama': "Produk Contoh", 'jumlah': 1, 'harga': 100000})
if diskon:
try:
data['diskon'] = float(diskon)
except ValueError:
data['diskon'] = 0
if syarat:
data['syarat'] = syarat
# Validasi data
missing_data = []
if not nama_prospek:
missing_data.append("Nama Prospek")
if not alamat_prospek:
missing_data.append("Alamat Prospek")
#if not jenis_prospek:
# missing_data.append("Jenis Prospek")
if not tanggal:
missing_data.append("Tanggal")
if not produk_dipilih or not jumlah_produk or not harga_produk:
missing_data.append("Produk, Jumlah, atau Harga")
warning = ""
if missing_data:
warning = "Peringatan: Data berikut kurang dan telah diisi dengan asumsi: " + ", ".join(missing_data) + ". Silakan lengkapi data jika perlu."
# Buat file PDF
filename = ''.join(random.choices(string.ascii_letters + string.digits, k=10)) + ".pdf"
pdf_file = create_pdf(data, filename)
return pdf_file, warning
# HTML untuk mengintegrasikan annyang
annyang_html = """
<div>
<button id="startSpeech">Mulai Pengenalan Suara</button>
<button id="stopSpeech" style="display:none;">Hentikan Pengenalan Suara</button>
<p id="speechStatus">Status: Menunggu perintah suara...</p>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/annyang/2.6.1/annyang.min.js"></script>
<script>
if (annyang) {
// Konfigurasi annyang untuk bahasa Indonesia
annyang.setLanguage('id-ID');
// Definisikan perintah suara
var commands = {
'nama *value': function(value) {
document.getElementById('nama_prospek').querySelector('textarea').value = value;
const inputEvent = new Event('input', { bubbles: true, cancelable: true });
document.getElementById('nama_prospek').querySelector('textarea').dispatchEvent(inputEvent);
document.getElementById('speechStatus').innerText = 'Nama prospek diisi: ' + value;
},
'alamat *value': function(value) {
document.getElementById('alamat_prospek').querySelector('textarea').value = value;
const inputEvent = new Event('input', { bubbles: true, cancelable: true });
document.getElementById('alamat_prospek').querySelector('textarea').dispatchEvent(inputEvent);
},
'jenis individu': function() {
document.getElementById('jenis_prospek').querySelector('input').value = 'Individu';
document.getElementById('speechStatus').innerText = 'Jenis prospek: Individu';
},
'jenis perusahaan': function() {
document.getElementById('jenis_prospek').querySelector('input').value = 'Perusahaan';
document.getElementById('speechStatus').innerText = 'Jenis prospek: Perusahaan';
},
'jenis kafe': function() {
document.getElementById('jenis_prospek').querySelector('input').value = 'Kafe';
document.getElementById('speechStatus').innerText = 'Jenis prospek: Kafe';
},
'tanggal *value': function(value) {
document.getElementById('tanggal').querySelector('textarea').value = value;
document.getElementById('tanggal').querySelector('textarea').innerHTML = value;
document.getElementById('tanggal').querySelector('textarea').innerText = value;
document.getElementById('speechStatus').innerText = 'Tanggal diisi: ' + value;
const inputEvent = new Event('input', { bubbles: true, cancelable: true });
document.getElementById('tanggal').querySelector('textarea').dispatchEvent(inputEvent);
},
'produk *value': function(value) {
var checkboxes = document.querySelectorAll('input[name="produk_dipilih"]');
checkboxes.forEach(function(cb) {
if (cb.value.toLowerCase().includes(value.toLowerCase())) {
cb.checked = true;
//const inputEvent = new Event('input', { bubbles: true, cancelable: true });
//cb.dispatchEvent(inputEvent);
}
});
document.getElementById('speechStatus').querySelector('textarea').innerText = 'Produk dipilih: ' + value;
},
'jumlah *value': function(value) {
document.getElementById('jumlah_produk').querySelector('textarea').value = value;
document.getElementById('speechStatus').innerText = 'Jumlah produk diisi: ' + value;
const inputEvent = new Event('input', { bubbles: true, cancelable: true });
document.getElementById('jumlah_produk').querySelector('textarea').dispatchEvent(inputEvent);
},
'harga *value': function(value) {
document.getElementById('harga_produk').querySelector('textarea').value = value;
document.getElementById('speechStatus').innerText = 'Harga produk diisi: ' + value;
const inputEvent = new Event('input', { bubbles: true, cancelable: true });
document.getElementById('harga_produk').querySelector('textarea').dispatchEvent(inputEvent);
},
'diskon *value': function(value) {
document.getElementById('diskon').querySelector('textarea').value = value;
document.getElementById('speechStatus').innerText = 'Diskon diisi: ' + value;
const inputEvent = new Event('input', { bubbles: true, cancelable: true });
document.getElementById('diskon').querySelector('textarea').dispatchEvent(inputEvent);
},
'syarat *value': function(value) {
document.getElementById('syarat').querySelector('textarea').value = value;
document.getElementById('speechStatus').innerText = 'Syarat dan ketentuan diisi: ' + value;
const inputEvent = new Event('input', { bubbles: true, cancelable: true });
document.getElementById('syarat').querySelector('textarea').dispatchEvent(inputEvent);
}
};
// Tambahkan perintah ke annyang
annyang.addCommands(commands);
// Event untuk tombol mulai
document.getElementById('startSpeech').addEventListener('click', function() {
annyang.start({ autoRestart: true, continuous: true });
document.getElementById('startSpeech').style.display = 'none';
document.getElementById('stopSpeech').style.display = 'inline';
document.getElementById('speechStatus').innerText = 'Status: Mendengarkan perintah suara...';
});
// Event untuk tombol hentikan
document.getElementById('stopSpeech').addEventListener('click', function() {
annyang.abort();
document.getElementById('startSpeech').style.display = 'inline';
document.getElementById('stopSpeech').style.display = 'none';
document.getElementById('speechStatus').innerText = 'Status: Pengenalan suara dihentikan.';
});
}
</script>
"""
# Interface Gradio
with gr.Blocks() as demo:
gr.Markdown("# Aplikasi Pembuatan Dokumen Penawaran")
# Komponen HTML untuk annyang
gr.HTML(annyang_html)
with gr.Row():
nama_prospek = gr.Textbox(label="Nama Prospek", elem_id="nama_prospek")
alamat_prospek = gr.Textbox(label="Alamat Prospek", elem_id="alamat_prospek")
jenis_prospek = gr.Dropdown(choices=["Individu", "Perusahaan", "Kafe"], label="Jenis Prospek", elem_id="jenis_prospek")
with gr.Row():
tanggal = gr.Textbox(label="Tanggal Penawaran (YYYY-MM-DD)", elem_id="tanggal")
with gr.Row():
produk_dipilih = gr.CheckboxGroup(choices=[p for cat in categories.values() for p in cat], label="Pilih Produk", elem_id="produk_dipilih")
jumlah_produk = gr.Textbox(label="Jumlah Produk (pisahkan dengan koma)", elem_id="jumlah_produk")
harga_produk = gr.Textbox(label="Harga per Produk (Rp, pisahkan dengan koma)", elem_id="harga_produk")
with gr.Row():
diskon = gr.Textbox(label="Diskon (%)", elem_id="diskon")
syarat = gr.Textbox(label="Syarat dan Ketentuan", elem_id="syarat")
submit_button = gr.Button("Buat Penawaran")
output_file = gr.File(label="Download Dokumen Penawaran (PDF)")
warning_text = gr.Textbox(label="Peringatan")
submit_button.click(
buat_penawaran,
inputs=[nama_prospek, alamat_prospek, jenis_prospek, produk_dipilih, jumlah_produk, harga_produk, diskon, tanggal, syarat],
outputs=[output_file, warning_text]
)
demo.launch()