fix
wangpengfei
2023-08-28 c5a0eb549cba2cd358a2d0496c44f3a289f15d9c
api/v1/salesDetails.go
@@ -18,7 +18,7 @@
//   @Summary   添加销售明细
//   @Produce   application/json
//   @Param      object   body      request.AddSalesDetails   true   "查询参数"
//   @Success   200      {object}   contextx.Response{}
//   @Success   200      {object}   contextx.Response{data=request.AddSalesDetails}
//   @Router      /api/salesDetails/add [post]
func (s *SalesDetailsApi) Add(c *gin.Context) {
   var params request.AddSalesDetails
@@ -39,7 +39,7 @@
      return
   }
   ctx.Ok()
   ctx.OkWithDetailed(salesDetails)
}
// Delete
@@ -66,6 +66,29 @@
   ctx.Ok()
}
// BatchDelete
// @Tags   SalesDetails 销售明细
// @Summary   批量删除销售明细
// @Produce   application/json
// @Param   object   body request.CommonIds   true "参数"
// @Success   200   {object}   contextx.Response{}
// @Router      /api/salesDetails/delete [delete]
func (s *SalesDetailsApi) BatchDelete(c *gin.Context) {
   var params request.CommonIds
   ctx, ok := contextx.NewContext(c, &params)
   if !ok {
      return
   }
   errCode := salesDetailsService.BatchDeleteSalesDetails(params.Ids)
   if errCode != ecode.OK {
      ctx.Fail(errCode)
      return
   }
   ctx.Ok()
}
// Update
//
//   @Tags      SalesDetails