wangpengfei
2023-07-04 1142bc88cebcfedac1617749bc195a2615799518
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
package v1
 
import (
    "aps_crm/model"
    "aps_crm/model/request"
    "aps_crm/model/response"
    "aps_crm/pkg/contextx"
    "aps_crm/pkg/ecode"
    "github.com/gin-gonic/gin"
    "strconv"
)
 
type ClientApi struct{}
 
// Add
//
//    @Tags        Client
//    @Summary    添加客户
//    @Produce    application/json
//    @Param        object    body        request.AddClient    true    "查询参数"
//    @Success    200        {object}    contextx.Response{}
//    @Router        /api/client/add [post]
func (cli *ClientApi) Add(c *gin.Context) {
    var params request.AddClient
    ctx, ok := contextx.NewContext(c, &params)
    if !ok {
        return
    }
 
    errCode, client := checkClientParams(params.Client)
    if errCode != ecode.OK {
        ctx.Fail(errCode)
        return
    }
 
    // check member exist
 
    errCode = clientService.AddClient(client)
    if errCode != ecode.OK {
        ctx.Fail(errCode)
        return
    }
 
    ctx.Ok()
}
 
// List
//
//    @Tags        Client
//    @Summary    获取客户列表
//    @Produce    application/json
//    @Success    200    {object}    contextx.Response{data=response.ClientResponse}
//    @Router        /api/client/list [get]
func (cli *ClientApi) List(c *gin.Context) {
    ctx, ok := contextx.NewContext(c, nil)
    if !ok {
        return
    }
 
    errCode, clients := clientService.GetClientList()
    if errCode != ecode.OK {
        ctx.Fail(errCode)
        return
    }
 
    ctx.OkWithDetailed(response.ClientResponse{List: clients})
}
 
func checkClientParams(params request.Client) (int, *model.Client) {
    client := new(model.Client)
    if params.Name == "" {
        return ecode.InvalidParams, nil
    }
 
    client.Name = params.Name
 
    if params.ClientStatusId == 0 {
        return ecode.InvalidParams, nil
    }
    client.ClientStatusId = params.ClientStatusId
 
    if params.MemberId == 0 {
        return ecode.InvalidParams, nil
    }
    client.MemberId = params.MemberId
 
    t, err := checkTimeFormat(params.NextVisitTime)
    if err != nil {
        return ecode.InvalidParams, nil
    }
 
    client.NextVisitTime = t
 
    t, err = checkTimeFormat(params.LatestServiceTime)
    if err != nil {
        return ecode.InvalidParams, nil
    }
 
    client.LatestServiceTime = t
 
    client.ClientTypeId = params.ClientTypeId
    client.ClientOriginId = params.ClientOriginId
    client.ClientLevelId = params.ClientLevelId
    client.DetailAddress = params.DetailAddress
    client.Remark = params.Remark
    client.Number = params.Number
    client.ServiceMemberId = params.ServiceMemberId
 
    if params.Contact.Name != "" {
        // assign the client's member id to contact when adding
        params.Contact.MemberId = params.MemberId
 
        errCode, contact := checkContactParams(params.Contact)
        if errCode != ecode.OK {
            return errCode, nil
        }
        client.Contacts = []model.Contact{contact}
    }
 
    return ecode.OK, client
}
 
// Delete
//
//    @Tags        Client
//    @Summary    删除客户
//    @Produce    application/json
//    @Param        id    path        int    true    "客户ID"
//    @Success    200    {object}    contextx.Response{}
//    @Router        /api/client/delete/{id} [delete]
func (cli *ClientApi) Delete(c *gin.Context) {
    ctx, ok := contextx.NewContext(c, nil)
    if !ok {
        return
    }
 
    id, _ := strconv.Atoi(c.Param("id"))
    errCode := clientService.DeleteClient(id)
    if errCode != ecode.OK {
        ctx.Fail(errCode)
        return
    }
 
    ctx.Ok()
}
 
// Update
//
//    @Tags        Client
//    @Summary    更新客户
//    @Produce    application/json
//    @Param        object    body        request.UpdateClient    true    "查询参数"
//    @Success    200        {object}    contextx.Response{}
//    @Router        /api/client/update [post]
func (cli *ClientApi) Update(c *gin.Context) {
    var params request.UpdateClient
    ctx, ok := contextx.NewContext(c, &params)
    if !ok {
        return
    }
 
    errCode, client := checkClientParams(params.Client)
    if errCode != ecode.OK {
        ctx.Fail(errCode)
        return
    }
 
    // check id
    if params.Id == 0 {
        ctx.Fail(ecode.InvalidParams)
        return
    }
 
    errCode = clientService.UpdateClient(client)
    if errCode != ecode.OK {
        ctx.Fail(errCode)
        return
    }
 
    ctx.Ok()
}