test_print.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package api
  2. import (
  3. "github.com/gin-gonic/gin"
  4. )
  5. func Printr(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  6. // // _sort := "a"
  7. // statusMap := make(map[int]struct{})
  8. // // statusMap[-1] = struct{}{}
  9. // statusMap[1] = struct{}{}
  10. // statusMap[2] = struct{}{}
  11. // status := 0
  12. // if len(statusMap) == 1 {
  13. // if _, ok := statusMap[-1]; ok {
  14. // status = -1
  15. // }
  16. // if _, ok := statusMap[1]; ok {
  17. // status = 1
  18. // }
  19. // if _, ok := statusMap[2]; ok {
  20. // status = 2
  21. // }
  22. // }
  23. // if len(statusMap) == 2 {
  24. // if _, ok := statusMap[-1]; ok {
  25. // status = -1
  26. // } else if _, ok := statusMap[1]; ok {
  27. // status = 1
  28. // }
  29. // }
  30. // if len(statusMap) == 3 {
  31. // status = -1
  32. // }
  33. // fmt.Println(status)
  34. // var statusOrder model.Order
  35. // statusOrder.Status = status
  36. // return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, "636b5b4a0bab456f8a558962", &statusOrder)
  37. // // return repo.RepoUpdateSetDocProps(apictx.CreateRepoCtx(), repo.CollectionOrder, "636b5b4a0bab456f8a558962", repo.Map{"status": status})
  38. // // sort, _ := strconv.Atoi("-1")
  39. // // return status, nil
  40. return len("61c3d4a0d6649a1d7353e2d9"), nil
  41. }