123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- package api
- import (
- "box-cost/db/model"
- "box-cost/db/repo"
- "box-cost/log"
- "errors"
- "fmt"
- "time"
- "github.com/gin-gonic/gin"
- "go.mongodb.org/mongo-driver/bson"
- "go.mongodb.org/mongo-driver/bson/primitive"
- )
- // 供应商管理
- func Supplier(r *GinRouter) {
- // 创建供应商
- r.POST("/supplier/create", CreateSupplier)
- // 获取供应商详情
- r.GET("/supplier/detail/:id", GetSupplier)
- // 获取供应商列表
- r.GET("/supplier/list", GetSuppliers)
- // 更新供应商
- r.POST("/supplier/update", UpdateSupplier)
- // 删除供应商
- r.POST("/supplier/delete/:id", DelSupplier)
- // 获取供应商列表
- r.GET("/plan/supplier/list", GetPlanSuppliers)
- }
- // 创建供应商
- func CreateSupplier(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- var supplier model.Supplier
- err := c.ShouldBindJSON(&supplier)
- if err != nil {
- fmt.Println(err)
- return nil, errors.New("参数错误!")
- }
- ctx := apictx.CreateRepoCtx()
- if supplier.Name == "" {
- return nil, errors.New("供应商名为空")
- }
- if supplier.Address == "" {
- return nil, errors.New("供应商地址为空")
- }
- if supplier.Phone == "" {
- return nil, errors.New("供应商联系电话为空")
- }
- supplier.CreateTime = time.Now()
- supplier.UpdateTime = time.Now()
- result, err := repo.RepoAddDoc(ctx, repo.CollectionSupplier, &supplier)
- return result, err
- }
- // 获取供应商信息
- func GetSupplier(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- supplierId := c.Param("id")
- id, err := primitive.ObjectIDFromHex(supplierId)
- if err != nil {
- return nil, errors.New("非法id")
- }
- var supplier model.Supplier
- option := &repo.DocSearchOptions{
- CollectName: repo.CollectionSupplier,
- Query: repo.Map{"_id": id},
- }
- found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), option, &supplier)
- if !found || err != nil {
- log.Info(err)
- return nil, errors.New("数据未找到")
- }
- return supplier, nil
- }
- // 获取供应商列表
- func GetSuppliers(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- page, size, query := UtilQueryPageSize(c)
- if _name, ok := query["name"]; ok {
- delete(query, "name")
- query["name"] = bson.M{"$regex": _name.(string)}
- }
- if cate, ok := query["category"]; ok {
- delete(query, "category")
- query["categorys"] = bson.M{"$in": []string{cate.(string)}}
- }
- option := &repo.PageSearchOptions{
- CollectName: repo.CollectionSupplier,
- Query: query,
- Page: page,
- Size: size,
- Sort: bson.M{"createTime": -1},
- }
- return repo.RepoPageSearch(apictx.CreateRepoCtx(), option)
- }
- func GetPlanSuppliers(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- page, size, query := UtilQueryPageSize(c)
- emtyPage := &repo.PageResult{
- Total: 0,
- Size: size,
- Page: page,
- List: []map[string]interface{}{},
- }
- listOut := []map[string]interface{}{}
- flag := false
- if query["matId"] != nil || query["craftId"] != nil || query["productId"] != nil {
- flag = true
- }
- filtter := repo.Map{}
- if _name, ok := query["name"]; ok {
- filtter["name"] = bson.M{"$regex": _name.(string)}
- }
- if cate, ok := query["category"]; ok {
- filtter["categorys"] = bson.M{"$in": []string{cate.(string)}}
- }
- if !flag {
- option := &repo.PageSearchOptions{
- CollectName: repo.CollectionSupplier,
- // Query: repo.Map{"categorys": bson.M{"$in": []string{cate.(string)}}},
- Query: filtter,
- Page: page,
- Size: size,
- Sort: bson.M{"createTime": -1},
- }
- return repo.RepoPageSearch(apictx.CreateRepoCtx(), option)
- }
- //category =>根据内容查询 供应对应内容的供应商
- if query["matId"] != nil {
- matId := query["matId"].(string)
- if len(matId) < 1 {
- return nil, fmt.Errorf("matId(string)为空")
- }
- id, _ := primitive.ObjectIDFromHex(matId)
- ok, list := repo.RepoSeachDocsMap(apictx.CreateRepoCtx(), &repo.DocsSearchOptions{
- CollectName: repo.CollectionSupplierMatprice,
- Query: repo.Map{"productId": id},
- Project: []string{"supplierId"},
- })
- if !ok {
- return emtyPage, nil
- }
- listOut = list
- }
- if query["craftId"] != nil {
- // cratf := &model.Craft{}
- // ok, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
- // Query: repo.Map{"_id": query["craftId"].(string)},
- // CollectName: repo.CollectionCraft,
- // }, cratf)
- // if !ok {
- // return nil, fmt.Errorf("没有对应的工艺信息")
- // }
- // //查询工艺分类
- // pipleLine := []bson.M{
- // {
- // "$lookup": bson.M{
- // "from": repo.CollectionCraft,
- // "localField": "productId",
- // "foreignField": "_id",
- // "as": "craft_docs",
- // },
- // },
- // {
- // "$match": bson.M{
- // "craft_docs.0.category": cratf.Category,
- // },
- // },
- // {
- // "$project": bson.M{
- // "craft_docs": 0,
- // "createTime": 0,
- // "price": 0,
- // "productId": 0,
- // "updateTime": 0,
- // },
- // },
- // }
- // ctx := apictx.CreateRepoCtx()
- // colls := ctx.Client.GetCollection(repo.CollectionSupplierCraftprice)
- // findoptions := &options.AggregateOptions{}
- // cur, err := colls.Aggregate(ctx.Ctx, pipleLine, findoptions)
- // if err != nil {
- // return nil, err
- // }
- // defer cur.Close(ctx.Ctx)
- // err = cur.All(ctx.Ctx, &listOut)
- // if err != nil {
- // return nil, err
- // }
- // if len(listOut) < 1 {
- // return emtyPage, nil
- // }
- // return listOut, nil
- cratfId := query["cratfId"].(string)
- if len(cratfId) < 1 {
- return nil, fmt.Errorf("cratfId(string)为空")
- }
- id, _ := primitive.ObjectIDFromHex(cratfId)
- ok, list := repo.RepoSeachDocsMap(apictx.CreateRepoCtx(), &repo.DocsSearchOptions{
- CollectName: repo.CollectionSupplierCraftprice,
- Query: repo.Map{"cratfId": id},
- Project: []string{"supplierId"},
- })
- if !ok {
- return emtyPage, nil
- }
- listOut = list
- }
- if query["productId"] != nil {
- productId := query["productId"].(string)
- if len(productId) < 1 {
- return nil, fmt.Errorf("productId(string)为空")
- }
- id, _ := primitive.ObjectIDFromHex(productId)
- ok, list := repo.RepoSeachDocsMap(apictx.CreateRepoCtx(), &repo.DocsSearchOptions{
- CollectName: repo.CollectionSupplierProductprice,
- Query: repo.Map{"productId": id},
- Project: []string{"supplierId"},
- })
- if !ok {
- return emtyPage, nil
- }
- listOut = list
- }
- //获取供应商列表
- suppliers := []primitive.ObjectID{}
- suppliersMap := map[string]bool{}
- for _, item := range listOut {
- if item["supplierId"] != nil {
- id, ok := item["supplierId"].(primitive.ObjectID)
- if !ok {
- continue
- }
- if !suppliersMap[id.Hex()] {
- suppliers = append(suppliers, id)
- suppliersMap[id.Hex()] = true
- }
- }
- }
- if len(suppliers) < 1 {
- return emtyPage, nil
- }
- filtter["_id"] = bson.M{"$in": suppliers}
- option := &repo.PageSearchOptions{
- CollectName: repo.CollectionSupplier,
- Query: filtter,
- // Query: repo.Map{"_id": bson.M{"$in": suppliers}},
- Page: page,
- Size: size,
- Sort: bson.M{"createTime": -1},
- }
- return repo.RepoPageSearch(apictx.CreateRepoCtx(), option)
- }
- // 更新供应商
- func UpdateSupplier(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- var supplier model.Supplier
- err := c.ShouldBindJSON(&supplier)
- if err != nil {
- return nil, errors.New("参数错误")
- }
- if supplier.Id.Hex() == "" {
- return nil, errors.New("id的为空")
- }
- supplier.UpdateTime = time.Now()
- return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionSupplier, supplier.Id.Hex(), &supplier)
- }
- // 删除供应商
- func DelSupplier(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- supplierId := c.Param("id")
- if supplierId == "" {
- return nil, errors.New("id为空")
- }
- return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionSupplier, supplierId)
- }
|