aboutsummaryrefslogtreecommitdiff
path: root/invoice/service.go
diff options
context:
space:
mode:
Diffstat (limited to 'invoice/service.go')
-rw-r--r--invoice/service.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/invoice/service.go b/invoice/service.go
index 9408a0d..91e2707 100644
--- a/invoice/service.go
+++ b/invoice/service.go
@@ -66,8 +66,8 @@ func getInvoice(invoice *Invoice, id uint) error {
return nil
}
-func getInvoices(invoices *[]Invoice, userId uint) error {
- res := db.Where("user_id = ?", userId).Find(&invoices)
+func getInvoices(invoices *[]Invoice, userId uint, isDraft bool) error {
+ res := db.Where("user_id = ? and is_draft = ?", userId, isDraft).Find(&invoices)
// TODO: handle potential errors
if res.Error != nil {