123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- package admin_user
-
- import (
- base_ctl "SCRM/controllers"
- "SCRM/enums"
- "SCRM/models"
- "SCRM/service/district_service"
- "SCRM/service/org_service"
- "SCRM/utils"
- "encoding/json"
- "reflect"
- "time"
-
- "fmt"
- "github.com/astaxie/beego"
- )
-
- func OrgInfoCtlRegistRouters() {
- beego.Router("/api/orginfo/getinfo", &OrgInfoApiController{}, "get:GetOrgInfo")
- beego.Router("/api/orginfo/savegallery", &OrgInfoApiController{}, "post:SaveOrgGallery")
- beego.Router("/api/orginfo/deletegallery", &OrgInfoApiController{}, "delete:DeleteOrgGallery")
- beego.Router("/api/orginfo/edit", &OrgInfoApiController{}, "post:EditOrgInfo")
- }
-
- type OrgInfoApiController struct {
- base_ctl.BaseAuthAPIController
- }
-
- func (c *OrgInfoApiController) GetOrgInfo() {
-
- adminUserInfo := c.GetAdminUserInfo()
- fmt.Println("adminUserInfo是什么", adminUserInfo)
- orgInfo := adminUserInfo.Orgs[adminUserInfo.CurrentOrgId]
- fmt.Println("orgInfo是设么", orgInfo)
- fmt.Println("orgInfo是什么", orgInfo.Province)
- provinces, _ := district_service.GetDistrictsByUpid(0)
- var citys []*models.District
- var districts []*models.District
- if orgInfo.Province > 0 {
- citys, _ = district_service.GetDistrictsByUpid(orgInfo.Province)
- }
- if orgInfo.City > 0 {
- districts, _ = district_service.GetDistrictsByUpid(orgInfo.City)
- }
-
- orgtypes, _ := org_service.GetOrgTypes()
-
- illness, _ := org_service.GetIllnessList()
-
- c.ServeSuccessJSON(map[string]interface{}{
- "orginfo": orgInfo,
- "provinces": provinces,
- "citys": citys,
- "districts": districts,
- "orgtypes": orgtypes,
- "illness": illness,
- })
- return
- }
-
- func (c *OrgInfoApiController) EditOrgInfo() {
- adminUserInfo := c.GetAdminUserInfo()
-
- if !adminUserInfo.AdminUser.IsSuperAdmin {
- c.ServeFailJsonSend(enums.ErrorCodePermissionDenied, "权限不足")
- return
- }
-
- dataBody := make(map[string]interface{}, 0)
- err := json.Unmarshal(c.Ctx.Input.RequestBody, &dataBody)
- if err != nil {
- utils.ErrorLog(err.Error())
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- orgInfo := adminUserInfo.Orgs[adminUserInfo.CurrentOrgId]
- org := *orgInfo
-
- if dataBody["org_name"] == nil || reflect.TypeOf(dataBody["org_name"]).String() != "string" {
- c.ServeFailJsonSend(enums.ErrorCodeParamWrong, "缺少参数:机构名称")
- return
- }
- orgName, _ := dataBody["org_name"].(string)
- if len(orgName) == 0 {
- c.ServeFailJsonSend(enums.ErrorCodeParamWrong, "机构名称不能为空")
- return
- }
- org.OrgName = orgName
-
- if dataBody["contact_name"] == nil || reflect.TypeOf(dataBody["contact_name"]).String() != "string" {
- c.ServeFailJsonSend(enums.ErrorCodeParamWrong, "缺少参数:联系人姓名")
- return
- }
- contactName, _ := dataBody["contact_name"].(string)
- if len(contactName) == 0 {
- c.ServeFailJsonSend(enums.ErrorCodeParamWrong, "联系人姓名不能为空")
- return
- }
- org.ContactName = contactName
-
- // if dataBody["org_short_name"] == nil || reflect.TypeOf(dataBody["org_short_name"]).String() != "string" {
- // c.ServeFailJsonSend(enums.ErrorCodeParamWrong, "缺少参数:商家简称")
- // return
- // }
- // orgShortName, _ := dataBody["org_short_name"].(string)
- // if len(orgShortName) == 0 {
- // c.ServeFailJsonSend(enums.ErrorCodeParamWrong, "商家简称不能为空")
- // return
- // }
- org.OrgShortName = orgName
-
- if dataBody["org_introduction"] == nil || reflect.TypeOf(dataBody["org_introduction"]).String() != "string" {
- c.ServeFailJsonSend(enums.ErrorCodeParamWrong, "缺少参数:机构介绍")
- return
- }
- orgIntroduction, _ := dataBody["org_introduction"].(string)
- if len(orgIntroduction) == 0 {
- c.ServeFailJsonSend(enums.ErrorCodeParamWrong, "机构介绍不能为空")
- return
- }
- org.OrgIntroduction = orgIntroduction
-
- if dataBody["org_logo"] == nil || reflect.TypeOf(dataBody["org_logo"]).String() != "string" {
- c.ServeFailJsonSend(enums.ErrorCodeParamWrong, "缺少参数:机构头像")
- return
- }
- orgLogo, _ := dataBody["org_logo"].(string)
- if len(orgLogo) == 0 {
- c.ServeFailJsonSend(enums.ErrorCodeParamWrong, "机构头像不能为空")
- return
- }
- org.OrgLogo = orgLogo
-
- if dataBody["province"] != nil || reflect.TypeOf(dataBody["province"]).String() == "float64" {
- province := int64(dataBody["province"].(float64))
- org.Province = province
- }
-
- if dataBody["city"] != nil || reflect.TypeOf(dataBody["city"]).String() == "float64" {
- city := int64(dataBody["city"].(float64))
- org.City = city
- }
-
- if dataBody["district"] != nil || reflect.TypeOf(dataBody["district"]).String() == "float64" {
- district := int64(dataBody["district"].(float64))
- org.District = district
- }
-
- if dataBody["address"] != nil || reflect.TypeOf(dataBody["address"]).String() == "string" {
- address, _ := dataBody["address"].(string)
- org.Address = address
- }
-
- if dataBody["org_type"] != nil || reflect.TypeOf(dataBody["org_type"]).String() == "float64" {
- orgType := int64(dataBody["org_type"].(float64))
- org.OrgType = orgType
- }
-
- if dataBody["telephone"] != nil || reflect.TypeOf(dataBody["telephone"]).String() == "string" {
- telephone, _ := dataBody["telephone"].(string)
- org.Telephone = telephone
- }
-
- if dataBody["operating_state"] != nil || reflect.TypeOf(dataBody["operating_state"]).String() == "float64" {
- operatingState := int64(dataBody["operating_state"].(float64))
- org.OperatingState = operatingState
- }
-
- if dataBody["business_week"] != nil || reflect.TypeOf(dataBody["business_week"]).String() == "string" {
- businessWeek, _ := dataBody["business_week"].(string)
- org.BusinessWeek = businessWeek
- }
-
- if dataBody["business_time"] != nil || reflect.TypeOf(dataBody["business_time"]).String() == "string" {
- businessTime, _ := dataBody["business_time"].(string)
- org.BusinessTime = businessTime
- }
- if dataBody["illness"] != nil || reflect.TypeOf(dataBody["illness"]).String() == "string" {
- illness, _ := dataBody["illness"].(string)
- org.Illness = illness
- }
-
- timeNow := time.Now().Unix()
- org.ModifyTime = timeNow
- org.OrgGallery = nil
- err = org_service.UpdateOrgInfo(&org)
- if err != nil {
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- orgInfo.OrgName = orgName
- orgInfo.OrgShortName = orgName
- orgInfo.OrgIntroduction = orgIntroduction
- orgInfo.OrgLogo = orgLogo
- orgInfo.Province = org.Province
- orgInfo.District = org.District
- orgInfo.City = org.City
- orgInfo.OrgType = org.OrgType
- orgInfo.Telephone = org.Telephone
- orgInfo.OperatingState = org.OperatingState
- orgInfo.BusinessWeek = org.BusinessWeek
- orgInfo.BusinessTime = org.BusinessTime
- orgInfo.Illness = org.Illness
- orgInfo.ContactName = org.ContactName
-
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": "ok",
- })
- return
- }
-
- func (c *OrgInfoApiController) SaveOrgGallery() {
- adminUserInfo := c.GetAdminUserInfo()
-
- dataBody := make(map[string]interface{}, 0)
- err := json.Unmarshal(c.Ctx.Input.RequestBody, &dataBody)
- if err != nil {
- utils.ErrorLog(err.Error())
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- if dataBody["type"] == nil || reflect.TypeOf(dataBody["type"]).String() != "float64" {
- utils.ErrorLog("type")
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- galleryType := int64(dataBody["type"].(float64))
- if galleryType != 1 && galleryType != 2 {
- utils.ErrorLog("galleryType != 1&&2")
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- if dataBody["url"] == nil || reflect.TypeOf(dataBody["url"]).String() != "string" {
- utils.ErrorLog("url")
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- url, _ := dataBody["url"].(string)
- if len(url) == 0 {
- utils.ErrorLog("len(url) == 0")
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- timeNow := time.Now().Unix()
- var gallery models.OrgGallery
- gallery.Type = galleryType
- gallery.Url = url
- gallery.OrgId = adminUserInfo.CurrentOrgId
- gallery.Status = 1
- gallery.Ctime = timeNow
- gallery.Mtime = timeNow
- err = org_service.CreateOrgGalleryItem(&gallery)
- if err != nil {
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- orgInfo := adminUserInfo.Orgs[adminUserInfo.CurrentOrgId]
- orgInfo.OrgGallery = append(orgInfo.OrgGallery, &gallery)
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": "ok",
- })
- return
-
- }
-
- func (c *OrgInfoApiController) DeleteOrgGallery() {
- adminUserInfo := c.GetAdminUserInfo()
- id, _ := c.GetInt64("id", 0)
- if id <= 0 {
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- err := org_service.DeleteOrgGalleryItem(id)
- if err != nil {
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- orgInfo := adminUserInfo.Orgs[adminUserInfo.CurrentOrgId]
- for index, item := range orgInfo.OrgGallery {
- if item.ID == id {
- orgInfo.OrgGallery = append(orgInfo.OrgGallery[:index], orgInfo.OrgGallery[index+1:]...)
- }
- }
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": "ok",
- })
- return
-
- }
|