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
|
/*
* OpenBills - Self hosted browser app to generate and keep track of simple invoices
* Version - 0
* Licensed under the MIT license - https://opensource.org/licenses/MIT
* Copyright (c) 2021 Vidhu Kant Sharma
*/
// handles all Items related database functions
package database
import (
_ "github.com/mattn/go-sqlite3"
)
type Item struct {
Model string
Desc string `json:"Description"`
Price float64
HSN int
GST float64
Cat string `json:"Category"`
Brand string
}
func GetAllItems() []Item {
var allItems []Item
rows, _ := myDatabase.Query(
`SELECT Model, Desc, Price, Hsn, Gst, Category, Brand FROM Items`,
)
var (
model, desc, cat, brand string
price, GST float64
HSN int
)
for rows.Next() {
rows.Scan(&model, &desc, &price, &HSN, &GST, &cat, &brand)
allItems = append(allItems, Item{model, desc, price, HSN, GST, cat, brand})
}
return allItems
}
func RegisterItem(item Item) bool {
itemNames, _ := myDatabase.Query("SELECT model FROM Items")
register_item, _ := myDatabase.Prepare(
`INSERT INTO Items
(Model, Desc, Price, Hsn, Gst, Category, Brand)
VALUES (?, ?, ?, ?, ?, ?, ?)`,
)
// check if item already exists
// probably this should be handled by front end
// so we can check this without need of using api
for itemNames.Next() {
var rModel string
itemNames.Scan(&rModel)
if rModel == item.Model {
return false
}
}
register_item.Exec(
item.Model, item.Desc,
item.Price, item.HSN,
item.GST, item.Cat,
item.Brand,
)
return true
}
|