From ce832a0bddc02a21d9c382f46b81dd6c114f35f9 Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Sat, 26 Jun 2021 03:18:55 +0530 Subject: Storing HSN as string now --- server/router/items.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'server/router/items.go') 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, -- cgit v1.2.3