-
Notifications
You must be signed in to change notification settings - Fork 2
/
billing.py
367 lines (283 loc) · 18.8 KB
/
billing.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
from tkinter import*
from tkinter import ttk,messagebox
from PIL import Image, ImageTk
import sqlite3
class BillClass:
def __init__ (self,root):
self.root=root
self.root.geometry=("1350*700+0+0")
self.root.title("Shopping Managment System | Developed by Team 3")
self.root.config(bg='white')
self.cart_list=[]
#===Title===#
self.icon_title=PhotoImage(file="images/logo1.png")
title=Label(self.root,text="Shopping Managment System",image=self.icon_title,compound=LEFT,font=('times new roman',40,"bold"),bg="#010c48",fg='white').place(x=0,y=0,relwidth=1,height=70)
#===btnLogout===#
btn_logout=Button(self.root,text="Logout",font=("times new roman",15,'bold'),bg="yellow",cursor='hand2').place(x=1350,y=10,height=30,width=150)
#===clock===#
self.lbl_clock=Label(self.root,text="Welcome to Shopping Managment System\t\t Date: DD-MM-YYYY\t\t Time: HH:MM:SS",font=('times new roman',15),bg="#4d636d",fg='white')
self.lbl_clock.place(x=0,y=70,relwidth=1,height=30)
#=====Search Frame======#
ProductFrame1=Frame(self.root,bd=4,relief=RIDGE,bg='white')
ProductFrame1.place(x=6,y=110,width=410,height=550)
pTitle=Label(ProductFrame1,text="All Products",font=("goudy old style",20,"bold"),bg='#262626',fg="white").pack(side=TOP,fill=X)
#=====Product search frame=====
self.var_search=StringVar()
ProductFrame2=Frame(ProductFrame1,bd=4,relief=RIDGE,bg='white')
ProductFrame2.place(x=2,y=42,width=398,height=90)
lbl_search=Label(ProductFrame2,text="Search Product | By Name ",font=("times new roman",15,'bold'),bg='white',fg='green').place(x=2,y=5)
lbl_search=Label(ProductFrame2,text='Product Name',font=("times new roman",15,'bold'),bg='white').place(x=5,y=45)
txt_search=Entry(ProductFrame2,textvariable=self.var_search,font=("times new roman",15),bg='lightyellow').place(x=128,y=47,width=150,height=22)
btn_search=Button(ProductFrame2,text='Search',command=self.search,font=("goudy old style",15),bg="#2196f3",fg='white',cursor="hand2").place(x=285,y=45,width=100,height=25)
btn_show_all=Button(ProductFrame2,text='Show All',command=self.show,font=("goudy old style",15),bg="#083531",fg='white',cursor="hand2").place(x=285,y=10,width=100,height=25)
ProductFrame3=Frame(ProductFrame1,bd=3,relief=RIDGE)
ProductFrame3.place(x=2,y=140,width=398,height=375)
scrolly=Scrollbar(ProductFrame3,orient=VERTICAL)
scrollx=Scrollbar(ProductFrame3,orient=HORIZONTAL)
self.productTable=ttk.Treeview(ProductFrame3,columns=("pid","name","price","qty",'status'),yscrollcommand=scrolly.set,xscrollcommand=scrollx.set)
scrollx.pack(side=BOTTOM,fill=X)
scrolly.pack(side=RIGHT,fill=Y)
self.productTable.heading("pid",text="PID")
self.productTable.heading("name", text="Name")
self.productTable.heading("price", text="Price")
self.productTable.heading("qty", text="QTY")
self.productTable.heading("status", text="Status")
self.productTable["show"]="headings"
self.productTable.column("pid",width=40)
self.productTable.column("name",width=100)
self.productTable.column("price",width=100)
self.productTable.column("qty",width=40)
self.productTable.column("status",width=90)
self.productTable.pack(fill=BOTH,expand=1)
self.productTable.bind('<ButtonRelease-1>',self.get_data)
lbl_not=Label(ProductFrame3,text="Note:'Enter 0 Quantity to remove product from the Cart' ",font=("goudy old style",12),anchor='w',bg="white",fg='red').pack(side=BOTTOM,fill=X)
#=======================================Customer Frame===================================================================================#
self.var_cname=StringVar()
self.var_contact=StringVar()
CustomerFrame=Frame(self.root,bd=4,relief=RIDGE,bg='white')
CustomerFrame.place(x=420,y=110,width=530,height=70)
cTitle=Label(CustomerFrame,text="Customer Details",font=("goudy old style",15),bg='lightgray').pack(side=TOP,fill=X)
lbl_name=Label(CustomerFrame,text='Name',font=("times new roman",15),bg='white').place(x=5,y=35)
txt_name=Entry(CustomerFrame,textvariable=self.var_cname,font=("times new roman",13),bg='lightyellow').place(x=80,y=35,width=180)
lbl_contact=Label(CustomerFrame,text='Contact no.',font=("times new roman",15),bg='white').place(x=270,y=35)
txt_contact=Entry(CustomerFrame,textvariable=self.var_contact,font=("times new roman",13),bg='lightyellow').place(x=380,y=35,width=140)
#==================Cal Cart Frame=================#
Cal_Cart_Frame=Frame(self.root,bd=2,relief=RIDGE,bg='white')
Cal_Cart_Frame.place(x=420,y=190,width=530,height=360)
#==================Calculator Frame=================#
self.var_cal_input=StringVar()
Cal_Frame=Frame(Cal_Cart_Frame,bd=9,relief=RIDGE,bg='white')
Cal_Frame.place(x=5,y=10,width=268,height=340)
self.txt_cal_input=Entry(Cal_Frame,textvariable=self.var_cal_input,font=("arial",15,'bold'),width=21,bd=10,relief=GROOVE,state="readonly",justify=RIGHT)
self.txt_cal_input.grid(row=0,columnspan=4)
btn_7=Button(Cal_Frame,text='7',font=("arial",15,'bold'),command=lambda:self.get_input(7),bd=5,width=4,pady=10,cursor='hand2').grid(row=1,column=0)
btn_8=Button(Cal_Frame,text='8',font=("arial",15,'bold'),command=lambda:self.get_input(8),bd=5,width=4,pady=10,cursor='hand2').grid(row=1,column=1)
btn_9=Button(Cal_Frame,text='9',font=("arial",15,'bold'),command=lambda:self.get_input(9),bd=5,width=4,pady=10,cursor='hand2').grid(row=1,column=2)
btn_sum=Button(Cal_Frame,text='+',font=("arial",15,'bold'),command=lambda:self.get_input('+'),bd=5,width=4,pady=10,cursor='hand2').grid(row=1,column=3)
btn_4=Button(Cal_Frame,text='4',font=("arial",15,'bold'),command=lambda:self.get_input(4),bd=5,width=4,pady=10,cursor='hand2').grid(row=2,column=0)
btn_5=Button(Cal_Frame,text='5',font=("arial",15,'bold'),command=lambda:self.get_input(5),bd=5,width=4,pady=10,cursor='hand2').grid(row=2,column=1)
btn_6=Button(Cal_Frame,text='6',font=("arial",15,'bold'),command=lambda:self.get_input(6),bd=5,width=4,pady=10,cursor='hand2').grid(row=2,column=2)
btn_substract=Button(Cal_Frame,text='-',font=("arial",15,'bold'),command=lambda:self.get_input('-'),bd=5,width=4,pady=10,cursor='hand2').grid(row=2,column=3)
btn_1=Button(Cal_Frame,text='1',font=("arial",15,'bold'),command=lambda:self.get_input(1),bd=5,width=4,pady=10,cursor='hand2').grid(row=3,column=0)
btn_2=Button(Cal_Frame,text='2',font=("arial",15,'bold'),command=lambda:self.get_input(2),bd=5,width=4,pady=10,cursor='hand2').grid(row=3,column=1)
btn_3=Button(Cal_Frame,text='3',font=("arial",15,'bold'),command=lambda:self.get_input(3),bd=5,width=4,pady=10,cursor='hand2').grid(row=3,column=2)
btn_mul=Button(Cal_Frame,text='*',font=("arial",15,'bold'),command=lambda:self.get_input("*"),bd=5,width=4,pady=10,cursor='hand2').grid(row=3,column=3)
btn_0=Button(Cal_Frame,text='0',font=("arial",15,'bold'),command=lambda:self.get_input(0),bd=5,width=4,pady=15,cursor='hand2').grid(row=4,column=0)
btn_c=Button(Cal_Frame,text='c',font=("arial",15,'bold'),command=self.clear_cal,bd=5,width=4,pady=15,cursor='hand2').grid(row=4,column=1)
btn_eq=Button(Cal_Frame,text='=',font=("arial",15,'bold'),command=self.perform_cal,bd=5,width=4,pady=15,cursor='hand2').grid(row=4,column=2)
btn_div=Button(Cal_Frame,text='/',font=("arial",15,'bold'),command=lambda:self.get_input("/"),bd=5,width=4,pady=15,cursor='hand2').grid(row=4,column=3)
#======Cart Frame========
cart_Frame=Frame(Cal_Cart_Frame,bd=3,relief=RIDGE)
cart_Frame.place(x=280,y=8,width=245,height=342)
self.cartTitle=Label(cart_Frame,text="Cart\t Total Product :[0]",font=("goudy old style",15),bg='lightgray')
self.cartTitle.pack(side=TOP,fill=X)
scrolly=Scrollbar(cart_Frame,orient=VERTICAL)
scrollx=Scrollbar(cart_Frame,orient =HORIZONTAL)
self.Cart_Table=ttk.Treeview(cart_Frame,columns=("pid","name","price","qty",'status'),yscrollcommand=scrolly.set,xscrollcommand=scrollx.set)
scrollx.pack(side=BOTTOM,fill=X)
scrolly.pack(side=RIGHT,fill=Y)
self.Cart_Table.heading("pid",text="PID")
self.Cart_Table.heading("name", text="Name")
self.Cart_Table.heading("price", text="Price")
self.Cart_Table.heading("qty", text="QTY")
self.Cart_Table.heading("status", text="Status")
self.Cart_Table["show"]="headings"
self.Cart_Table.column("pid",width=40)
self.Cart_Table.column("name",width=100)
self.Cart_Table.column("price",width=90)
self.Cart_Table.column("qty",width=40)
self.Cart_Table.column("status",width=90)
self.Cart_Table.pack(fill=BOTH,expand=1)
#self.Cart_Table.bind('<ButtonRelease-1>',self.get_data)
#======Add Cart Widgets Frame====================#
self.var_pid=StringVar()
self.var_pname=StringVar()
self.var_price=StringVar()
self.var_qty=StringVar()
self.var_stock=StringVar()
Add_CartWidgetsFrame=Frame(self.root,bd=2,relief=RIDGE,bg='white')
Add_CartWidgetsFrame.place(x=420,y=550,width=530,height=110)
lbl_p_name=Label(Add_CartWidgetsFrame,text='Product Name',font=("times new roman",15),bg='white').place(x=5,y=5)
txt_p_name=Entry(Add_CartWidgetsFrame,textvariable=self.var_pname,font=("times new roman",15),bg='lightyellow',state="readonly").place(x=5,y=35,width=190,height=22)
lbl_p_price=Label(Add_CartWidgetsFrame,text='Price Per Qty',font=("times new roman",15),bg='white').place(x=230,y=5)
txt_p_price=Entry(Add_CartWidgetsFrame,textvariable=self.var_price,font=("times new roman",15),bg='lightyellow',state="readonly").place(x=230,y=35,width=150,height=22)
lbl_p_qty=Label(Add_CartWidgetsFrame,text='Quantity',font=("times new roman",15),bg='white').place(x=390,y=5)
txt_p_qty=Entry(Add_CartWidgetsFrame,textvariable=self.var_qty,font=("times new roman",15),bg='lightyellow').place(x=390,y=35,width=120,height=22)
self.lbl_inStock=Label(Add_CartWidgetsFrame,text='In Stock',font=("times new roman",15),bg='white')
self.lbl_inStock.place(x=5,y=70)
btn_clear_cart=Button(Add_CartWidgetsFrame,text="Clear",font=("times new roman",15,"bold"),bg="lightgray",cursor="hand2").place(x=180,y=70,width=150,height=30)
btn_add_cart=Button(Add_CartWidgetsFrame,text="Add | Update Cart",command=self.add_update_cart,font=("times new roman",15,"bold"),bg="orange",cursor="hand2").place(x=340,y=70,width=180,height=30)
# btn_clear_cart=Button(Add_CartWidgetsFrame,text="Clear",font=("times new roman",15,"bold"),bg="lightgray",cursor="hand2").place(x=180,y=70,width=150,height=30)
#=====================billing area============#
billFrame=Frame(self.root,bd=2,relief=RIDGE,bg="white")
billFrame.place(x=953,y=110,width=320,height=410)
BTitle=Label(billFrame,text="Customer Bill Area",font=("goudy old style",20,"bold"),bg='#262626',fg="white").pack(side=TOP,fill=X)
scrolly=Scrollbar(billFrame,orient=VERTICAL)
scrolly.pack(side=RIGHT,fill=Y)
self.txt_bill_area=Text(billFrame,yscrollcommand=scrolly.set)
self.txt_bill_area.pack(fill=BOTH,expand=1)
scrolly.config(command=self.txt_bill_area.yview)
#====================billing buttons================#
billMenuFrame=Frame(self.root,bd=2,relief=RIDGE,bg='white')
billMenuFrame.place(x=953,y=520,width=320,height=140)
self.lbl_amnt=Label(billMenuFrame,text="Bill Amount\n[0]",font=("goudy old style",15,'bold'),bg="#3f51b5",fg='white')
self.lbl_amnt.place(x=2,y=5,width=110,height=70)
self.lbl_discount=Label(billMenuFrame,text="Discount\n[5%]",font=("goudy old style",15,'bold'),bg="#8bc34a",fg='white')
self.lbl_discount.place(x=115,y=5,width=93,height=70)
self.lbl_net_pay=Label(billMenuFrame,text="Net Pay\n[0]",font=("goudy old style",15,'bold'),bg="#607d8b",fg='white')
self.lbl_net_pay.place(x=210,y=5,width=110,height=70)
btn_print=Button(billMenuFrame,text="Print",font=("goudy old style",15,'bold'),bg="lightgreen",fg='white')
btn_print.place(x=2,y=80,width=110,height=50)
btn_discount=Button(billMenuFrame,text="Clear All",font=("goudy old style",15,'bold'),bg="gray",fg='white')
btn_discount.place(x=115,y=80,width=93,height=50)
btn_net_pay=Button(billMenuFrame,text="Generte Bill",font=("goudy old style",15,'bold'),bg="#009688",fg='white')
btn_net_pay.place(x=210,y=80,width=110,height=50)
#===footer===#
lbl_footer=Label(self.root,text="Shopping Managment System | Developed by Team 3\nFor Any Technical Issue Contact : 7351199562",font=('times new roman',12),bg="#4d636d",fg='white').pack(side=BOTTOM,fill=X)
self.show()
#=============================All Functions======================#
def get_input(self,num):
xnum=self.var_cal_input.get()+str(num)
self.var_cal_input.set(xnum)
def clear_cal(self):
self.var_cal_input.set('')
def perform_cal(self):
result=self.var_cal_input.get()
self.var_cal_input.set(eval(result))
def show(self):
con=sqlite3.connect(database=r"ims.db")
cur=con.cursor()
try:
# self.productTable=ttk.Treeview(ProductFrame3,columns=("pid","name","price","qty",'status'),yscrollcommand=scrolly.set,xscrollcommand=scrollx.set)
cur.execute("select pid,name,price,qty,status from product where status='Active'")
rows=cur.fetchall()
self.product_Table.delete(*self.product_Table.get_children())
for row in rows:
self.product_Table.insert('',END,values=row)
except Exception as ex:
messagebox.showerror("Error",f'error due to:{str(ex)}',parent=self.root)
def search(self):
con=sqlite3.connect(database=r"ims.db")
cur=con.cursor()
try:
if self.var_search.get()=='':
messagebox.showerror("Error","Search input should be required",parent=self.root)
else:
cur.execute("select pid,name,price,qty,status from product where name LIKE '%"+self.var_search.get()+"%'and status='Active")
rows=cur.fetchall()
if len(rows)!=0:
self.product_Table.delete(*self.product_Table.get_children())
for row in rows:
self.product_Table.insert('',END,values=row)
else:
messagebox.showerror("Error","No record found!!!",parent=self.root)
except Exception as ex:
messagebox.showerror("Error",f'error due to:{str(ex)}',parent=self.root)
def get_data(self,ev):
f=self.product_Table.focus()
content=(self.product_Table.item(f))
row=content['values']
self.var_pid=set(row[0])
self.var_pname=set(row[1])
self.var_price=set(row[2])
self.lbl_inStock.config(text=f"In Stock [{str(row[3])}]")
def add_update_cart(self):
if self.var_pid.get()=='':
messagebox.showerror('Error',"Please select product from the list",parent=self.root)
elif self.var_qty.get()=='':
messagebox.showerror('Error',"Quantity is Required",parent=self.root)
else:
price_cal =float(int(self.var_qty.get())*float(self.var_price.get()))
cart_data=[self.var_pid.get(),self.var_pname.get(),price_cal,self.var_qty.get()]
#=====update cart=====
present='no'
index_=-1
for row in self.cart_list:
if self.var_pid.get()==row[0]:
present='yes'
break
index_+=1
if present=='yes':
op=messagebox.askyesno('Confirm,"Product already present\nDo you want to Update| Remove from the cart list',parents=self.root)
if op==True:
if self.var_qty.get()=="0":
self.cart_list.pop(index_)
else:
self.cart_list[index_][2]=price_cal
self.cart_list[index_][3]=self.var_qty.get()
else:
self.cart_list.append(cart_data)
self.show_cart()
self.bill_updates
def bill_updates(self):
bill_amnt=0
net_pay=0
for row in self.cart_list:
bill_amnt=bill_amnt+float(row[2])
net_pay=bill_amnt-((bill_amnt*5)/100)
self.lbl_amnt.config(text=f'Bill Amnt.\n{str(bill_amnt)}')
self.lbl_net_pay.config(text=f'Net Pay\n{str(net_pay)}')
self.cartTitle.config(text=f"Cart \t Total Product: [{str(len(self.cart_list))}]")
def show_cart(self):
try:
self.Cart_Table.delete(*self.Cart_Table.get_children())
for row in self.cart_list:
self.Cart_Table.insert('',END,values=row)
except Exception as ex:
messagebox.showerror("Error",f'error due to:{str(ex)}',parent=self.root)
if __name__=='__main__':
root=Tk()
obj=BillClass(root)
root.mainloop()
def bill_top(self):
invoice=int(time.strftime("%H%M%S"))+int(time.strftime("%d%m%Y"))
bill_top_temp=f'''
\t\tXYZ-Inventory
\t Phone No. 98725***** , Delhi-125001
{str("="*47)}
Customer Name: {self.var_cname.get()}
Ph no. :{self.var_contact.get()}
Bill No. {str(invoice)}\t\t\tDate: {str(time.strftime("%d/%m/%Y"))}
{str("="*47)}
Product Name\t\t\tQTY\tPrice
{str("="*47)}
'''
self.txt_bill_area.delete('1.0',END)
self.txt_bill_area.insert('1.0',bill_top_temp)
def bill_bottom(self):
bill_bottom_temp=f'''
{str("="*47)}
Bill Amount\t\t\t\tRs.{self.bill_amnt}
Discount\t\t\t\tRs.{self.discount}
Net Pay\t\t\t\tRs.{self.net_pay}
{str("="*47)}\n
'''
self.txt_bill_area.insert(END,bill_bottom_temp)
def bill_middle(self):
for row in self.cart_list:
pid,name,price,qty,stock
name=row[1]
qty=row[3]
price=float(row[2])*int(row[3])
price=str(price)
self.txt_bill_area.insert(END,"\n "+name+"\t\t\t"+qty+"\tRs."+price)