|
@@ -32,7 +32,7 @@ func ReportKnowledgeResourceAdd(title string, fileUrl []string, adminId int, adm
|
|
|
classifySecond = classifyPathArr[1]
|
|
|
classifyThird = classifyPathArr[2]
|
|
|
}
|
|
|
- childClassifyId, err = classifyObj.GetChildClassifyIdByNamePath(classifyFirst, classifySecond, classifyThird)
|
|
|
+ childClassifyId, err = classifyObj.GetChildClassifyIdByNamePath(models.KnowledgeResourceTypeReport, classifyFirst, classifySecond, classifyThird)
|
|
|
if err != nil {
|
|
|
if utils.IsErrNoRow(err) {
|
|
|
msg = "分类不存在,请检查知识资源-报告库中是否存在-" + classifyPath
|
|
@@ -45,6 +45,10 @@ func ReportKnowledgeResourceAdd(title string, fileUrl []string, adminId int, adm
|
|
|
msg = "分类不能为空"
|
|
|
return
|
|
|
}
|
|
|
+ if childClassifyId == 0 {
|
|
|
+ msg = "分类不存在,请检查知识资源-报告库中是否存在-" + classifyPath
|
|
|
+ return
|
|
|
+ }
|
|
|
obj := new(models.KnowledgeResource)
|
|
|
obj.ResourceType = models.KnowledgeResourceTypeReport
|
|
|
obj.ClassifyId = childClassifyId
|
|
@@ -260,7 +264,7 @@ func UploadFormFile(multipartFile map[string][]*multipart.FileHeader) (fileUrl [
|
|
|
}
|
|
|
saveName := fmt.Sprint(utils.MD5(f.Filename), time.Now().Format(utils.FormatDateTimeUnSpace), time.Now().Nanosecond(), ext)
|
|
|
dataDir := time.Now().Format(utils.FormatDate)
|
|
|
- filePath := utils.StaticDir + "files/" + dataDir + "/" + saveName
|
|
|
+ filePath := utils.StaticDir + "files/" + dataDir
|
|
|
ok, _ := utils.PathExists(filePath)
|
|
|
if !ok {
|
|
|
err = os.MkdirAll(filePath, utils.DIR_MOD)
|
|
@@ -281,6 +285,7 @@ func UploadFormFile(multipartFile map[string][]*multipart.FileHeader) (fileUrl [
|
|
|
err = er
|
|
|
return
|
|
|
}
|
|
|
+ filePath = filePath + "/" + saveName
|
|
|
// 保存到本地
|
|
|
er = utils.SaveToFile(fileContentBytes, filePath)
|
|
|
if er != nil {
|