12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package api
- import (
- "3dshow/db/model"
- "3dshow/db/repo"
- "fmt"
- "github.com/gin-gonic/gin"
- )
- func Printr(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- // _sort := "a"
- statusMap := make(map[int]struct{})
- // statusMap[-1] = struct{}{}
- statusMap[1] = struct{}{}
- statusMap[2] = struct{}{}
- status := 0
- if len(statusMap) == 1 {
- if _, ok := statusMap[-1]; ok {
- status = -1
- }
- if _, ok := statusMap[1]; ok {
- status = 1
- }
- if _, ok := statusMap[2]; ok {
- status = 2
- }
- }
- if len(statusMap) == 2 {
- if _, ok := statusMap[-1]; ok {
- status = -1
- } else if _, ok := statusMap[1]; ok {
- status = 1
- }
- }
- if len(statusMap) == 3 {
- status = -1
- }
- fmt.Println(status)
- var statusOrder model.Order
- statusOrder.Status = status
- return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionOrder, "636b5b4a0bab456f8a558962", &statusOrder)
- // return repo.RepoUpdateSetDocProps(apictx.CreateRepoCtx(), repo.CollectionOrder, "636b5b4a0bab456f8a558962", repo.Map{"status": status})
- // sort, _ := strconv.Atoi("-1")
- // return status, nil
- }
|