diff options
Diffstat (limited to 'server/router/items.go')
-rw-r--r-- | server/router/items.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/router/items.go b/server/router/items.go index 684d1d8..540fdf3 100644 --- a/server/router/items.go +++ b/server/router/items.go @@ -25,7 +25,6 @@ func getAllItems(ctx *gin.Context) { func registerItem(ctx *gin.Context) { // extract data not string price, _ := strconv.ParseFloat(ctx.Query("price"), 64) - hsn, _ := strconv.Atoi(ctx.Query("hsn")) gst, _ := strconv.ParseFloat(ctx.Query("gst"), 64) cat := "cat coming soon" brand := "brand coming soon" @@ -34,7 +33,7 @@ func registerItem(ctx *gin.Context) { Model: ctx.Query("model"), Description: ctx.Query("desc"), UnitPrice: price, - HSN: hsn, + HSN: ctx.Query("hsn"), TotalGST: gst, Category: cat, Brand: brand, |