| | |
| | | return ecode.OK |
| | | } |
| | | |
| | | func (ClientService) DeleteClient(id int) int { |
| | | // check client exist |
| | | _, err := model.NewClientSearch(nil).SetId(id).First() |
| | | if err != nil { |
| | | return ecode.ClientNotExist |
| | | } |
| | | |
| | | // delete client |
| | | err = model.NewClientSearch(nil).SetId(id).Delete() |
| | | if err != nil { |
| | | return ecode.ClientDeleteErr |
| | | } |
| | | return ecode.OK |
| | | } |
| | | |
| | | func (ClientService) GetClientList() (int, []*model.Client) { |
| | | // get client list |
| | | clients, err := model.NewClientSearch(nil).Find() |
| | | if err != nil { |
| | | return ecode.ClientListErr, nil |
| | | } |
| | | |
| | | return ecode.OK, clients |
| | | } |
| | | |
| | | // CheckClientExist check client exist |
| | | func CheckClientExist(id int) int { |
| | |
| | | |
| | | return ecode.OK |
| | | } |
| | | |
| | | func (ClientService) GetClientList(page, pageSize int, keyword string) ([]*model.Client, int64, int) { |
| | | // get contact list |
| | | contacts, total, err := model.NewClientSearch(nil).SetKeyword(keyword).SetPage(page, pageSize).Find() |
| | | if err != nil { |
| | | return nil, 0, ecode.ClientListErr |
| | | } |
| | | return contacts, total, ecode.OK |
| | | } |
| | | |
| | | func (ClientService) Assign(id, memberId int) int { |
| | | // check client exist |
| | | errCode := CheckClientExist(id) |
| | | if errCode != ecode.OK { |
| | | return errCode |
| | | } |
| | | |
| | | // assign client |
| | | err := model.NewClientSearch(nil).SetId(id).UpdateByMap(map[string]interface{}{ |
| | | "member_id": memberId, |
| | | }) |
| | | if err != nil { |
| | | return ecode.AssignErr |
| | | } |
| | | |
| | | return ecode.OK |
| | | } |
| | | |
| | | func (ClientService) DeleteClient (ids []int) int { |
| | | // delete client |
| | | err := model.NewClientSearch(nil).SetIds(ids).Delete() |
| | | if err != nil { |
| | | return ecode.ClientDeleteErr |
| | | } |
| | | return ecode.OK |
| | | } |