test_print.go 1.1 KB

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