demand.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package crm
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. "server/dao/crm"
  6. "server/global"
  7. "server/model/common/response"
  8. "strconv"
  9. )
  10. type DemandApi struct{}
  11. func (da *DemandApi) QueryDemandsByCustomerId(c *gin.Context) {
  12. id := c.Query("id")
  13. customerId, err := strconv.Atoi(id)
  14. fmt.Print("customerId:", customerId)
  15. demands, err := demandService.QueryDemandsByCustomerId(customerId)
  16. if err != nil {
  17. response.FailWithMessage("查询失败", c)
  18. global.GVA_LOG.Error("QueryDemandsByCustomerId ====== " + err.Error())
  19. return
  20. }
  21. response.OkWithData(demands, c)
  22. }
  23. func (da *DemandApi) CreateDemand(c *gin.Context) {
  24. var demand crm.Demand
  25. err := c.ShouldBindJSON(&demand)
  26. if err != nil {
  27. response.FailWithMessage("参数错误", c)
  28. global.GVA_LOG.Error("CreateDemand ====== " + err.Error())
  29. return
  30. }
  31. err = demandService.CreateDemand(demand)
  32. if err != nil {
  33. response.FailWithMessage("创建失败", c)
  34. global.GVA_LOG.Error("CreateDemand ====== " + err.Error())
  35. return
  36. }
  37. response.OkWithMessage("创建成功", c)
  38. }
  39. func (da *DemandApi) UpdateDemand(c *gin.Context) {
  40. var demand crm.Demand
  41. err := c.ShouldBindJSON(&demand)
  42. if err != nil {
  43. response.FailWithMessage("参数错误", c)
  44. global.GVA_LOG.Error("UpdateDemand ====== " + err.Error())
  45. return
  46. }
  47. err = demandService.UpdateDemand(demand)
  48. if err != nil {
  49. response.FailWithMessage("更新失败", c)
  50. global.GVA_LOG.Error("UpdateDemand ====== " + err.Error())
  51. return
  52. }
  53. response.OkWithMessage("更新成功", c)
  54. }
  55. func (da *DemandApi) DeleteDemand(c *gin.Context) {
  56. id := c.Query("id")
  57. demandId, _ := strconv.Atoi(id)
  58. err := demandService.DeleteDemand(demandId)
  59. if err != nil {
  60. response.FailWithMessage("删除失败", c)
  61. global.GVA_LOG.Error("DeleteDemand ====== " + err.Error())
  62. return
  63. }
  64. response.OkWithMessage("删除成功", c)
  65. }