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
|
/*
* 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 Invoice struct {
ID int
Items []Item
Transport string
}
/*
func GetAllItems() []Item {
var allItems []Item
rows, _ := myDatabase.Query(
`SELECT Model, Desc, UnitPrice, HSN, TotalGST, Category, Brand FROM Items`,
)
var (
model, desc, cat, brand string
unitPrice, GST float64
HSN string
)
for rows.Next() {
rows.Scan(&model, &desc, &unitPrice, &HSN, &GST, &cat, &brand)
allItems = append(allItems, Item{model, desc, unitPrice, 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, UnitPrice, HSN, TotalGST, 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.Description, item.UnitPrice, item.HSN,
item.TotalGST, item.Category, item.Brand,
)
return true
}
*/
|