作者 yangfu

公告更新修改

@@ -418,6 +418,12 @@ func UpdateBulletin(companyId int64, request *protocol.UpdateBulletinRequest) (r @@ -418,6 +418,12 @@ func UpdateBulletin(companyId int64, request *protocol.UpdateBulletinRequest) (r
418 } 418 }
419 if err == orm2.ErrNoRows { 419 if err == orm2.ErrNoRows {
420 //添加 420 //添加
  421 + questionContent, err = json.Marshal(request.Question.Content)
  422 + if err != nil {
  423 + orm.Rollback()
  424 + log.Error("格式化问题失败:%s", err)
  425 + return
  426 + }
421 bulletinQuestion = &models.BulletinQuestion{ 427 bulletinQuestion = &models.BulletinQuestion{
422 BulletinId: bulletin.Id, 428 BulletinId: bulletin.Id,
423 Type: int8(request.Question.Type), 429 Type: int8(request.Question.Type),