作者 yangfu

机会修改

@@ -87,7 +87,7 @@ func DeleteAuditTemplate(id int64) (err error) { @@ -87,7 +87,7 @@ func DeleteAuditTemplate(id int64) (err error) {
87 //获取审核模板列表 87 //获取审核模板列表
88 func GetAuditTemplates(companyId int64, chanceTypeId int) (v []*AuditTemplate, err error) { 88 func GetAuditTemplates(companyId int64, chanceTypeId int) (v []*AuditTemplate, err error) {
89 o := orm.NewOrm() 89 o := orm.NewOrm()
90 - sql := "select * from audit_template where company_id=? and chance_type_id=? and enable_status=1" 90 + sql := "select * from audit_template where company_id=? and chance_type_id=? and enable_status=1 order by sort_num"
91 if _, err = o.Raw(sql, companyId, chanceTypeId).QueryRows(&v); err == nil { 91 if _, err = o.Raw(sql, companyId, chanceTypeId).QueryRows(&v); err == nil {
92 return 92 return
93 } 93 }
@@ -539,11 +539,11 @@ func ChanceUpdate(header *protocol.RequestHeader, request *protocol.ChanceUpdate @@ -539,11 +539,11 @@ func ChanceUpdate(header *protocol.RequestHeader, request *protocol.ChanceUpdate
539 log.Info(fmt.Sprintf("机会编辑 is_publish:%v chance.review_status:%v 是否是本人:%v", request.IsPublish, chance.ReviewStatus, chance.UserId == header.UserId)) 539 log.Info(fmt.Sprintf("机会编辑 is_publish:%v chance.review_status:%v 是否是本人:%v", request.IsPublish, chance.ReviewStatus, chance.UserId == header.UserId))
540 } 540 }
541 //1.需要验证角色权限 2是否是审核人 3.是否是本人 541 //1.需要验证角色权限 2是否是审核人 3.是否是本人
542 - if chance.ReviewStatus != protocol.ReviewStatusPass && chance.UserId != header.UserId { //chance.UserId != header.UserId  
543 - err = protocol.NewErrWithMessage(5206)  
544 - log.Error(fmt.Sprintf("user:%v 无权限操作机会 chance:%v", header.UserId, chance.Id))  
545 - return  
546 - } 542 + //if chance.ReviewStatus != protocol.ReviewStatusPass && chance.UserId != header.UserId { //chance.UserId != header.UserId
  543 + // err = protocol.NewErrWithMessage(5206)
  544 + // log.Error(fmt.Sprintf("user:%v 无权限操作机会 chance:%v", header.UserId, chance.Id))
  545 + // return
  546 + //}
547 //1.模板是否存在 547 //1.模板是否存在
548 if template, err = models.GetAuditTemplateById(chance.AuditTemplateId); err != nil { 548 if template, err = models.GetAuditTemplateById(chance.AuditTemplateId); err != nil {
549 log.Error("模板不存在:", chance.AuditTemplateId, err) 549 log.Error("模板不存在:", chance.AuditTemplateId, err)