|
@@ -68,6 +68,7 @@ func (this *MyChartController) List(c *gin.Context) {
|
|
|
UserID: list[i].UserID,
|
|
|
ReportID: list[i].ReportID,
|
|
|
ReportChapterID: list[i].ReportChapterID,
|
|
|
+ ChartInfoSource: list[i].Source,
|
|
|
CreateTime: utils.TimeTransferString(utils.FormatDateTime, list[i].CreateTime),
|
|
|
})
|
|
|
}
|
|
@@ -184,7 +185,7 @@ func (this *MyChartController) Collect(c *gin.Context) {
|
|
|
//查询ficc产品信息和ficc销售信息
|
|
|
companyInfo, e := company_product.GetByCompany2ProductId(userInfo.CompanyID, 1)
|
|
|
if e != nil && e != utils.ErrNoRow {
|
|
|
- response.FailMsg("获取客户信息失败", "获取客户信息失败, Err: " + e.Error(), c)
|
|
|
+ response.FailMsg("获取客户信息失败", "获取客户信息失败, Err: "+e.Error(), c)
|
|
|
return
|
|
|
}
|
|
|
if companyInfo != nil && companyInfo.CompanyID > 0 {
|