zhangqian
2023-10-13 b90a31431164b4b0756e4ef76f08b08953b8b04d
api/v1/serviceContract.go
@@ -1,12 +1,14 @@
package v1
import (
   "aps_crm/constvar"
   "aps_crm/model"
   "aps_crm/model/request"
   "aps_crm/model/response"
   "aps_crm/pkg/contextx"
   "aps_crm/pkg/ecode"
   "aps_crm/pkg/structx"
   "aps_crm/utils"
   "github.com/gin-gonic/gin"
)
@@ -42,22 +44,45 @@
   ctx.Ok()
}
// Delete
//// Delete
////
////   @Tags      ServiceContract
////   @Summary   删除服务合同
////   @Produce   application/json
////   @Param      object   body      request.DeleteServiceContract true   "查询参数"
////   @Success   200   {object}   contextx.Response{}
////   @Router      /api/serviceContract/delete [delete]
//func (s *ServiceContractApi) Delete(c *gin.Context) {
//   var params request.DeleteServiceContract
//   ctx, ok := contextx.NewContext(c, &params)
//   if !ok {
//      return
//   }
//
//   @Tags      ServiceContract
//   @Summary   删除服务合同
//   @Produce   application/json
//   @Param      object   body      request.DeleteServiceContract true   "查询参数"
//   @Success   200   {object}   contextx.Response{}
//   @Router      /api/serviceContract/delete [delete]
func (s *ServiceContractApi) Delete(c *gin.Context) {
   var params request.DeleteServiceContract
//   errCode := serviceContractService.DeleteServiceContract(params.Ids)
//   if errCode != ecode.OK {
//      ctx.Fail(errCode)
//      return
//   }
//
//   ctx.Ok()
//}
// BatchDelete
// @Tags   ServiceContract
// @Summary   批量删除服务合同
// @Produce   application/json
// @Param   object   body request.CommonIds   true "参数"
// @Success   200   {object}   contextx.Response{}
// @Router      /api/serviceContract/delete [delete]
func (s *ServiceContractApi) BatchDelete(c *gin.Context) {
   var params request.CommonIds
   ctx, ok := contextx.NewContext(c, &params)
   if !ok {
      return
   }
   errCode := serviceContractService.DeleteServiceContract(params.Ids)
   errCode := serviceContractService.BatchDeleteServiceContract(params.Ids)
   if errCode != ecode.OK {
      ctx.Fail(errCode)
      return
@@ -113,7 +138,13 @@
      return
   }
   serviceContracts, total, errCode := serviceContractService.GetServiceContractList(params.Page, params.PageSize, params.QueryClass, params.KeywordType, params.Keyword)
   var memberIds []int
   userInfo := utils.GetUserInfo(c)
   if userInfo.UserType == constvar.UserTypeSub {
      memberIds = []int{userInfo.CrmUserId}
   }
   serviceContracts, total, errCode := serviceContractService.GetServiceContractList(params.Page, params.PageSize, params.QueryClass, params.KeywordType, params.Keyword, memberIds)
   if errCode != ecode.OK {
      ctx.Fail(errCode)
      return