-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdatabase.py
197 lines (169 loc) · 6.35 KB
/
database.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
import sqlite3
import openpyxl
class LMS:
def __init__(self, db):
self.conn = sqlite3.connect(db)
self.cur = self.conn.cursor()
def add_new_book(self, data):
"""
Add a new book into the books table
:param self:
:param data: list with book details
:return: book id
"""
sql = '''INSERT INTO books(book_id,book_name,book_author,book_edition,book_price,date_of_purchase,status)
VALUES(?,?,?,?,?,?,?)'''
self.cur.execute(sql, data)
self.conn.commit()
return self.cur.lastrowid
def add_new_student(self, xl_file):
wb = openpyxl.load_workbook(xl_file)
sheet = wb['Sheet1']
for row in sheet.rows:
dt = [cell.value for cell in row]
sql = '''INSERT INTO student (id,name,class)
VALUES(?,?,?) '''
self.cur.execute(sql, dt)
self.conn.commit()
return self.cur.lastrowid
def delete_book(self, book_id):
"""
Delete a book by book id
:param self:
:param book_id: id of book
:return error or deleted
"""
try:
sql = 'DELETE FROM books WHERE book_id=?'
self.cur.execute(sql, (book_id,))
self.conn.commit()
return "deleted"
except:
return "error"
def view_book_list(self):
"""
Query all book rows in the books table
:param self:
:return: all book list
"""
self.cur.execute("SELECT * FROM books WHERE status = ? or status = ?",('available','issued'))
return self.cur.fetchall()
def miscellaneous_books(self):
self.cur.execute("SELECT * FROM books WHERE status = 'miscellaneous'")
return self.cur.fetchall()
def view_issued_book(self,id):
self.cur.execute("SELECT * FROM issued_book WHERE book_id = ? and is_miscellaneous = ?", (id,0))
return self.cur.fetchone()
def view_student(self,id):
self.cur.execute("SELECT * FROM student WHERE id = ?", (id,))
return self.cur.fetchone()
def all_book_id(self):
"""
Query all book id in the books table
:param self:
:return: all available book id list
"""
self.cur.execute("SELECT book_id FROM books WHERE status = ? or status = ?", ('available','issued'))
return self.cur.fetchall()
def all_student_id(self):
"""
Query all student id in the student table
:param self:
:return: all available student id list
"""
self.cur.execute("SELECT id FROM student")
return self.cur.fetchall()
def issue_book(self,data):
"""
Issue a new book into the issued_book table
:param self:
:param data: list with issue book details
:return: book id
"""
sql = '''INSERT INTO issued_book (book_id,issued_to,issued_on,expired_on)
VALUES(?,?,?,?) '''
self.cur.execute(sql, data)
self.conn.commit()
return self.cur.lastrowid
def delete_issued_book(self):
try:
sql = 'DELETE FROM issued_book'
self.cur.execute(sql)
self.conn.commit()
return "deleted"
except:
return "error"
def all_issued_book_id(self):
"""
Query all issued book id in the issued book table
:param self:
:return: all issued book id list
"""
self.cur.execute("SELECT book_id FROM issued_book WHERE is_miscellaneous = ?",(0,))
return self.cur.fetchall()
def return_book(self,book_id):
"""
Return the book which issued by id
:param self:
:param book_id: id of book
:return error or returned
"""
try:
sql = 'DELETE FROM issued_book WHERE book_id=?'
self.cur.execute(sql, (book_id,))
self.conn.commit()
return "returned"
except:
return "error"
def update_book_status(self,book_id,status):
"""
update book status of a book
:param conn:
:param book_id: id of book
:param status: status of book
:return:
"""
sql = '''UPDATE books SET status = ? WHERE book_id = ?'''
self.cur.execute(sql,(status,book_id,))
self.conn.commit()
def select_book_status(self,book_id):
"""
Query book status by book_id
:param self:
:param book_id:
:return: book status
"""
self.cur.execute("SELECT status FROM books WHERE book_id=?", (book_id,))
return self.cur.fetchone()
def select_issued_book_det(self,book_id):
self.cur.execute("SELECT * FROM issued_book WHERE book_id=?", (book_id,))
return self.cur.fetchone()
def select_book_detail(self,book_id):
self.cur.execute("SELECT * FROM books WHERE book_id=?", (book_id,))
return self.cur.fetchone()
def all_available_book(self):
sql="SELECT book_id, book_name, book_author, book_edition, book_price FROM books WHERE status = 'available'"
return (sql,self.conn)
def all_issued_book(self):
sql="SELECT book_id, book_name, book_author, book_edition, book_price FROM books WHERE status = 'issued'"
return (sql,self.conn)
def all_books(self):
sql="SELECT book_id, book_name, book_author, book_edition, book_price FROM books WHERE status = 'available' or status = 'issued'"
return (sql,self.conn)
def fine_detail(self):
sql="SELECT * FROM fine_details"
return (sql,self.conn)
def move_to_miscellaneous(self,id):
sql = '''UPDATE issued_book SET is_miscellaneous = ? WHERE book_id = ?'''
self.cur.execute(sql,(1,id,))
self.conn.commit()
def update_book_details(self,data):
sql = '''UPDATE books SET book_id = ?,book_name = ?,book_author = ?,book_edition = ?,book_price = ?,date_of_purchase = ? WHERE book_id = ?'''
self.cur.execute(sql,data)
self.conn.commit()
def save_fine_detail(self,data):
sql = '''INSERT INTO fine_details(book_id,student_id,issued_on,returned_date,total_fine,no_of_day)
VALUES(?,?,?,?,?,?)'''
self.cur.execute(sql, data)
self.conn.commit()
return self.cur.lastrowid