|
@@ -7,6 +7,7 @@ import (
|
|
|
"iot_manager_service/app/middleware"
|
|
|
"iot_manager_service/util/common"
|
|
|
"net/http"
|
|
|
+ "sort"
|
|
|
"strconv"
|
|
|
)
|
|
|
|
|
@@ -110,3 +111,109 @@ func (c *utilCtl) GetTenantCode(ctx *gin.Context) {
|
|
|
code.CityCode = ctx.Query("type") + code.CityCode
|
|
|
ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, code))
|
|
|
}
|
|
|
+
|
|
|
+type vendorList struct {
|
|
|
+ Records []vendorListNew `json:"records"`
|
|
|
+ Total int `json:"total"`
|
|
|
+ Size int `json:"size"`
|
|
|
+ Current int `json:"current"`
|
|
|
+ Orders []interface{} `json:"orders"`
|
|
|
+ OptimizeCountSQL bool `json:"optimizeCountSql"`
|
|
|
+ HitCount bool `json:"hitCount"`
|
|
|
+ SearchCount bool `json:"searchCount"`
|
|
|
+ Pages int `json:"pages"`
|
|
|
+}
|
|
|
+type vendorListNew struct {
|
|
|
+ ID int `json:"id"`
|
|
|
+ Vender string `json:"vender"`
|
|
|
+ Brand string `json:"brand"`
|
|
|
+ Model string `json:"model"`
|
|
|
+ Pid int
|
|
|
+ DeviceType int `json:"deviceType"`
|
|
|
+}
|
|
|
+
|
|
|
+func (c *utilCtl) GetVenderList(ctx *gin.Context) {
|
|
|
+ var result vendorList
|
|
|
+ deviceType := ctx.Query("deviceType")
|
|
|
+ if deviceType == "" {
|
|
|
+ deviceType = "-1"
|
|
|
+ }
|
|
|
+ venderValue := ctx.Query("venderValue")
|
|
|
+ current := ctx.Query("current")
|
|
|
+ size := ctx.Query("size")
|
|
|
+ offset, _ := strconv.Atoi(current)
|
|
|
+ limit, _ := strconv.Atoi(size)
|
|
|
+ if offset == 0 {
|
|
|
+ offset = 1
|
|
|
+ limit = 10
|
|
|
+ }
|
|
|
+ value, _ := ctx.Get(middleware.Authorization)
|
|
|
+ claims := value.(*middleware.Claims)
|
|
|
+ deviceTypeInt, _ := strconv.Atoi(deviceType)
|
|
|
+ vendors, _, err := service.UtilService.GetDeviceVendorList(claims.TenantId, venderValue, deviceTypeInt, offset, limit)
|
|
|
+ vendorsMap := make(map[int]vendorListNew)
|
|
|
+ vendorListNews1 := make(map[int]vendorListNew)
|
|
|
+ vendorListNews2 := make(map[int]vendorListNew)
|
|
|
+ vendorListNews3 := make(map[int]vendorListNew)
|
|
|
+ for _, vendor := range vendors {
|
|
|
+ vendorsMap[vendor.ID] = vendorListNew{
|
|
|
+ ID: vendor.ID,
|
|
|
+ Vender: vendor.VendorValue,
|
|
|
+ DeviceType: vendor.DeviceType,
|
|
|
+ Pid: vendor.ParentId,
|
|
|
+ }
|
|
|
+ if vendor.VendorType == 3 {
|
|
|
+ vendorListNews3[vendor.ID] = vendorsMap[vendor.ID]
|
|
|
+ }
|
|
|
+ if vendor.VendorType == 2 {
|
|
|
+ vendorListNews2[vendor.ID] = vendorsMap[vendor.ID]
|
|
|
+ }
|
|
|
+ if vendor.VendorType == 1 {
|
|
|
+ vendorListNews1[vendor.ID] = vendorsMap[vendor.ID]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ var vendorListNews []vendorListNew
|
|
|
+ for _, listNew := range vendorListNews3 {
|
|
|
+ vendorListNews = append(vendorListNews, vendorListNew{
|
|
|
+ ID: listNew.ID,
|
|
|
+ Vender: vendorListNews1[vendorListNews2[listNew.Pid].Pid].Vender,
|
|
|
+ Brand: vendorListNews2[listNew.Pid].Vender,
|
|
|
+ Model: listNew.Vender,
|
|
|
+ DeviceType: listNew.DeviceType,
|
|
|
+ Pid: listNew.Pid,
|
|
|
+ })
|
|
|
+ }
|
|
|
+ sort.Slice(vendorListNews, func(i, j int) bool {
|
|
|
+ return vendorListNews[i].ID > vendorListNews[j].ID
|
|
|
+ })
|
|
|
+
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ result.Records = vendorListNews
|
|
|
+ result.Total = len(vendorListNews)
|
|
|
+ ctx.JSON(http.StatusOK, common.SuccessResponse("", result))
|
|
|
+}
|
|
|
+
|
|
|
+func (c *utilCtl) GetVenderDetail(ctx *gin.Context) {
|
|
|
+ //idStr := ctx.Query("id")
|
|
|
+ //var vendorListNew vendorListNew
|
|
|
+ //id, _ := strconv.Atoi(idStr)
|
|
|
+ ctx.JSON(http.StatusOK, common.SuccessResponse("", nil))
|
|
|
+}
|
|
|
+
|
|
|
+func (c *utilCtl) GetVenderRemove(ctx *gin.Context) {
|
|
|
+ idStr := ctx.Query("id")
|
|
|
+ id, _ := strconv.Atoi(idStr)
|
|
|
+ err := service.UtilService.GetRemoveVendor(id)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, common.SuccessResponse("", nil))
|
|
|
+}
|
|
|
+
|
|
|
+func (c *utilCtl) GetVenderSubmit(ctx *gin.Context) {
|
|
|
+ ctx.JSON(http.StatusOK, common.SuccessResponse("", nil))
|
|
|
+}
|