target.go 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270
  1. package models
  2. import (
  3. "fmt"
  4. "github.com/beego/beego/v2/client/orm"
  5. "github.com/rdlucklib/rdluck_tools/paging"
  6. "hongze/hongze_chart_lib/utils"
  7. "sort"
  8. "strconv"
  9. "strings"
  10. "time"
  11. )
  12. type DataList struct {
  13. TradeCode string `orm:"column(TRADE_CODE)" description:"指标编码"`
  14. SecName string `orm:"column(SEC_NAME)" description:"指标名称"`
  15. Unit string `orm:"column(UNIT)" description:"单位"`
  16. Remark string `orm:"column(REMARK)" description:"备注"`
  17. Frequency string `description:"频度"`
  18. ClassifyId int `description:"分类id"`
  19. ClassifyName string `description:"分类名称"`
  20. Dt string `orm:"column(DT)" description:"录入日期"`
  21. Close float64 `orm:"column(CLOSE)" description:"录入值"`
  22. ModifyTime string `description:"修改时间"`
  23. }
  24. type DataListResp struct {
  25. List []*DataList
  26. Paging *paging.PagingItem `description:"分页数据"`
  27. }
  28. func GetDataList(condition string, pars []interface{}, startSize, pageSize int) (items []*DataList, err error) {
  29. sql := `select a.TRADE_CODE,a.SEC_NAME,a.UNIT,a.frequency,a.classify_id,b.classify_name,c.DT,c.CLOSE,c.modify_time FROM edbdata AS c
  30. inner join edbinfo AS a ON a.TRADE_CODE=c.TRADE_CODE
  31. left join edbdata_classify AS b ON a.classify_id=b.classify_id
  32. where left(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0`
  33. if condition != "" {
  34. sql += condition
  35. }
  36. sql += ` order by c.DT desc limit ?,? `
  37. o := orm.NewOrmUsingDB("edb")
  38. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  39. return
  40. }
  41. func GetDataListCount(condition string, pars []interface{}) (count int, err error) {
  42. sql := ` select count(1) as count FROM edbdata AS c
  43. inner join edbinfo AS a ON a.TRADE_CODE=c.TRADE_CODE
  44. left join edbdata_classify AS b ON a.classify_id=b.classify_id
  45. where left(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0 `
  46. if condition != "" {
  47. sql += condition
  48. }
  49. o := orm.NewOrmUsingDB("edb")
  50. err = o.Raw(sql, pars).QueryRow(&count)
  51. return
  52. }
  53. type DataAddReq struct {
  54. TradeCode string `description:"指标唯一编码"`
  55. CreateDate string `description:"创建日期"`
  56. Close string `description:"录入值"`
  57. }
  58. type Edbdata struct {
  59. TradeCode string `orm:"column(TRADE_CODE);pk" description:"指标编码"`
  60. Dt string `orm:"column(DT)" description:"日期"`
  61. Close string `orm:"column(CLOSE)" description:"值"`
  62. ModifyTime time.Time `orm:"column(modify_time)" description:"修改时间"`
  63. }
  64. func GetDataInfo(tradeCode, creteDate string) (item *Edbdata, err error) {
  65. sql := " SELECT * FROM edbdata WHERE TRADE_CODE=? AND DT=? "
  66. o := orm.NewOrmUsingDB("edb")
  67. err = o.Raw(sql, tradeCode, creteDate).QueryRow(&item)
  68. return
  69. }
  70. func AddEdbdata(item *Edbdata) (lastId int64, err error) {
  71. o := orm.NewOrmUsingDB("edb")
  72. lastId, err = o.Insert(item)
  73. return
  74. }
  75. type DataEditReq struct {
  76. TradeCode string `description:"指标唯一编码"`
  77. CreateDate string `description:"创建日期"`
  78. Close interface{} `description:"录入值"`
  79. OldCreateDate string `description:"旧的录入日期"`
  80. }
  81. // BatchDataEditReq 批量修改指标
  82. type BatchDataEditReq struct {
  83. OldCreateDate string `description:"旧的录入日期"`
  84. CreateDate string `description:"新的录入日期"`
  85. List []DataEditReq `description:"需要修改的数据"`
  86. }
  87. //编辑数据
  88. func EditEdbdata(item *Edbdata) (err error) {
  89. o := orm.NewOrmUsingDB("edb")
  90. sql := ` UPDATE edbdata SET CLOSE = ?,modify_time=NOW() WHERE TRADE_CODE = ? AND DT = ? `
  91. _, err = o.Raw(sql, item.Close, item.TradeCode, item.Dt).Exec()
  92. return
  93. }
  94. type EdbdataDeleteRecord struct {
  95. Id int `orm:"column(id);pk"`
  96. TradeCode string `orm:"column(TRADE_CODE)" description:"指标编码"`
  97. Dt string `orm:"column(DT)" description:"日期"`
  98. Close string `orm:"column(CLOSE)" description:"值"`
  99. ModifyTime time.Time `orm:"column(modify_time)" description:"修改时间"`
  100. CreateTime time.Time
  101. SysUserId int
  102. }
  103. func AddEdbdataDeleteRecord(item *EdbdataDeleteRecord) (lastId int64, err error) {
  104. o := orm.NewOrmUsingDB("edb")
  105. lastId, err = o.Insert(item)
  106. return
  107. }
  108. //删除数据
  109. func DeleteEdbData(tradeCode, dt string) (err error) {
  110. o := orm.NewOrmUsingDB("edb")
  111. sql := ` DELETE FROM edbdata WHERE TRADE_CODE = ? AND DT = ? `
  112. _, err = o.Raw(sql, tradeCode, dt).Exec()
  113. return
  114. }
  115. type Edbinfo struct {
  116. TradeCode string `orm:"column(TRADE_CODE);pk" description:"指标code"`
  117. SecName string `orm:"column(SEC_NAME);" description:"指标名称"`
  118. Unit string `orm:"column(UNIT);" description:"单位"`
  119. Remark string `orm:"column(REMARK);" description:"备注"`
  120. Frequency string `description:"频度"`
  121. ClassifyId int `description:"分类id"`
  122. ClassifyName string `description:"分类名称"`
  123. CreateDate string `description:"创建时间"`
  124. UserId int `description:"录入用户id"`
  125. UserName string `description:"录入用户名称"`
  126. NoticeTime string `description:"通知时间"`
  127. Mobile string `description:"录入者手机号"`
  128. }
  129. func GetEdbinfoListCount(condition string, pars []interface{}, mobile string, roleType int) (count int, err error) {
  130. o := orm.NewOrmUsingDB("edb")
  131. sql := ``
  132. if mobile != "" && roleType == 1 {
  133. sql = `SELECT COUNT(1) AS count FROM edbinfo AS a
  134. INNER JOIN edbinfo_user AS c ON a.TRADE_CODE=c.TRADE_CODE AND c.mobile=?
  135. WHERE LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0`
  136. if condition != "" {
  137. sql += condition
  138. }
  139. err = o.Raw(sql, mobile, pars).QueryRow(&count)
  140. } else {
  141. sql := `SELECT COUNT(1) AS count FROM edbinfo AS a WHERE LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0`
  142. if condition != "" {
  143. sql += condition
  144. }
  145. err = o.Raw(sql, pars).QueryRow(&count)
  146. }
  147. return
  148. }
  149. func GetEdbinfoList(condition string, pars []interface{}, startSize, pageSize int, mobile string, roleType int) (items []*Edbinfo, err error) {
  150. o := orm.NewOrmUsingDB("edb")
  151. sql := ``
  152. if mobile != "" && roleType == 1 {
  153. sql = ` SELECT DISTINCT a.*,b.classify_name FROM edbinfo AS a
  154. LEFT JOIN edbdata_classify AS b ON a.classify_id=b.classify_id
  155. INNER JOIN edbinfo_user AS c ON a.TRADE_CODE=c.TRADE_CODE AND c.mobile=?
  156. WHERE LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0`
  157. if condition != "" {
  158. sql += condition
  159. }
  160. sql += ` ORDER BY a.create_date DESC LIMIT ?,? `
  161. _, err = o.Raw(sql, mobile, pars, startSize, pageSize).QueryRows(&items)
  162. } else {
  163. sql = `SELECT DISTINCT a.*,b.classify_name FROM edbinfo AS a
  164. LEFT JOIN edbdata_classify AS b on a.classify_id=b.classify_id
  165. WHERE LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0`
  166. if condition != "" {
  167. sql += condition
  168. }
  169. sql += ` ORDER BY a.create_date DESC LIMIT ?,? `
  170. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  171. }
  172. return
  173. }
  174. // EdbParamsInfo 指标数据结构体
  175. type EdbParamsInfo struct {
  176. Unit string `orm:"column(UNIT);" description:"单位"`
  177. Frequency string `orm:"column(frequency);" description:"单位"`
  178. }
  179. // GetEdbUnitList 获取指标单位
  180. func GetEdbUnitList() (items []*EdbParamsInfo, err error) {
  181. o := orm.NewOrmUsingDB("edb")
  182. sql := `SELECT UNIT from edbinfo group by UNIT`
  183. _, err = o.Raw(sql).QueryRows(&items)
  184. return
  185. }
  186. // GetEdbFrequencyList 获取指标频度
  187. func GetEdbFrequencyList(classifyId, userId int) (items []*EdbParamsInfo, err error) {
  188. o := orm.NewOrmUsingDB("edb")
  189. sql := `SELECT frequency from edbinfo a
  190. join edbdata b on a.TRADE_CODE=b.TRADE_CODE
  191. where classify_id = ? `
  192. if userId > 0 {
  193. sql += ` and a.user_id = ` + fmt.Sprint(userId) + ` `
  194. }
  195. sql += ` group by a.frequency`
  196. _, err = o.Raw(sql, classifyId).QueryRows(&items)
  197. return
  198. }
  199. type TargetListResp struct {
  200. List []*Edbinfo
  201. Paging *paging.PagingItem `description:"分页数据"`
  202. }
  203. type EdbinfoAddReq struct {
  204. SecName string `description:"指标名称"`
  205. Unit string `description:"单位"`
  206. Frequency string `description:"频度"`
  207. ClassifyId int `description:"分类id"`
  208. NoticeTime string `description:"通知时间"`
  209. }
  210. //获取指标最大trade_code
  211. func GetMaxTradeCode() (max_trade_code string, err error) {
  212. sql := " SELECT MAX(TRADE_CODE) AS max_trade_code FROM edbinfo WHERE LEFT(TRADE_CODE,1)='W' "
  213. o := orm.NewOrmUsingDB("edb")
  214. err = o.Raw(sql).QueryRow(&max_trade_code)
  215. return
  216. }
  217. func GetEdbinfoBySecName(secName string) (item *Edbinfo, err error) {
  218. sql := `SELECT * FROM edbinfo WHERE SEC_NAME=? AND left(TRADE_CODE,1)='W' AND REMARK='手动' `
  219. o := orm.NewOrmUsingDB("edb")
  220. err = o.Raw(sql, secName).QueryRow(&item)
  221. return
  222. }
  223. func GetEdbinfoByTradeCode(tradeCode string) (item *Edbinfo, err error) {
  224. sql := `SELECT * FROM edbinfo WHERE TRADE_CODE=? `
  225. o := orm.NewOrmUsingDB("edb")
  226. err = o.Raw(sql, tradeCode).QueryRow(&item)
  227. return
  228. }
  229. func AddEdbinfo(tradeCode, secName, unit, remark, frequency, noticeTime string, classifyId int, userId int) (err error) {
  230. sql := `INSERT INTO edbinfo(TRADE_CODE, SEC_NAME,UNIT, REMARK,frequency, classify_id,notice_time,user_id)
  231. VALUES(?,?,?,?,?,?,?,?) `
  232. o := orm.NewOrmUsingDB("edb")
  233. _, err = o.Raw(sql, tradeCode, secName, unit, remark, frequency, classifyId, noticeTime, userId).Exec()
  234. return
  235. }
  236. func AddEdbinfoUser(tradeCode, mobile string) (err error) {
  237. o := orm.NewOrmUsingDB("edb")
  238. sql := `INSERT INTO edbinfo_user(TRADE_CODE, mobile) VALUES (?,?)`
  239. _, err = o.Raw(sql, tradeCode, mobile).Exec()
  240. return
  241. }
  242. type EdbinfoEditReq struct {
  243. TradeCode string `description:"指标code"`
  244. SecName string `description:"指标名称"`
  245. Unit string `description:"单位"`
  246. Frequency string `description:"频度"`
  247. ClassifyId int `description:"分类id"`
  248. NoticeTime string `description:"通知时间"`
  249. }
  250. func EditEdbinfo(tradeCode, secName, unit, frequency, noticeTime string, classifyId int) (err error) {
  251. sql := `UPDATE edbinfo SET SEC_NAME= ?, UNIT = ?,classify_id=?,frequency=?,notice_time=?,create_date=NOW() WHERE TRADE_CODE=? `
  252. o := orm.NewOrmUsingDB("edb")
  253. _, err = o.Raw(sql, secName, unit, classifyId, frequency, noticeTime, tradeCode).Exec()
  254. return
  255. }
  256. func SearchTargetEntry(classifyId int, keyWord string) (items []*Edbinfo, err error) {
  257. where := ""
  258. if keyWord != "" {
  259. where = `AND SEC_NAME LIKE '%` + keyWord + `%'`
  260. }
  261. sql := `SELECT * FROM edbinfo WHERE LEFT(TRADE_CODE,1)='W' AND REMARK='手动' AND classify_id>0 AND classify_id=? `
  262. sql += where
  263. o := orm.NewOrmUsingDB("edb")
  264. _, err = o.Raw(sql, classifyId).QueryRows(&items)
  265. return
  266. }
  267. type SearchTargetListResp struct {
  268. List []*Edbinfo
  269. }
  270. type EdbdataClassify struct {
  271. ClassifyId int
  272. ClassifyName string
  273. ParentId int
  274. EdbInfoTotal int
  275. }
  276. func GetEdbdataClassifyByClassifyName(classifyName string) (item *EdbdataClassify, err error) {
  277. sql := `SELECT * FROM edbdata_classify WHERE classify_name=? `
  278. o := orm.NewOrmUsingDB("edb")
  279. err = o.Raw(sql, classifyName).QueryRow(&item)
  280. return
  281. }
  282. type EdbdataClassifyList struct {
  283. ClassifyId int
  284. ClassifyName string
  285. ParentId int
  286. Child []*EdbdataClassify
  287. }
  288. func GetEdbdataClassify(userId int64) (items []*EdbdataClassifyList, err error) {
  289. var newItems []*EdbdataClassifyList
  290. o := orm.NewOrmUsingDB("edb")
  291. sql := ` SELECT classify_id,classify_name,parent_id FROM edbdata_classify WHERE parent_id=0 `
  292. _, err = o.Raw(sql).QueryRows(&newItems)
  293. if err != nil {
  294. return
  295. }
  296. classifyLen := len(newItems)
  297. for i := 0; i < classifyLen; i++ {
  298. var childItems []*EdbdataClassify
  299. parentId := newItems[i].ClassifyId
  300. childSql := ``
  301. if userId > 0 {
  302. userClassifyList, _ := GetManualUserClassify(int(userId))
  303. var userIdArr []string
  304. for _, v := range userClassifyList {
  305. userIdArr = append(userIdArr, strconv.Itoa(v.ClassifyId))
  306. }
  307. userIdStr := strings.Join(userIdArr, ",")
  308. if userIdStr != "" {
  309. childSql = "SELECT a.classify_id,a.classify_name,a.parent_id FROM edbdata_classify AS a WHERE a.is_show=1 and a.classify_id IN(" + userIdStr + ") AND parent_id=? ORDER BY a.create_time ASC "
  310. _, err = o.Raw(childSql, parentId).QueryRows(&childItems)
  311. }
  312. } else {
  313. childSql = "SELECT classify_id,classify_name,parent_id FROM edbdata_classify WHERE is_show=1 and parent_id=? ORDER BY create_time ASC "
  314. _, err = o.Raw(childSql, parentId).QueryRows(&childItems)
  315. }
  316. if err != nil {
  317. return
  318. }
  319. newItems[i].Child = childItems
  320. }
  321. for _, v := range newItems {
  322. childLen := len(v.Child)
  323. if childLen > 0 {
  324. items = append(items, v)
  325. }
  326. }
  327. return
  328. }
  329. type ManualUserClassify struct {
  330. ManualUserClassifyId int `orm:"column(manual_user_classify_id);pk"`
  331. AdminId int
  332. ClassifyId int
  333. CreateTime time.Time
  334. }
  335. func GetManualUserClassify(sysUserId int) (list []*ManualUserClassify, err error) {
  336. o := orm.NewOrmUsingDB("data")
  337. sql := `SELECT * FROM manual_user_classify WHERE admin_id=? `
  338. _, err = o.Raw(sql, sysUserId).QueryRows(&list)
  339. return
  340. }
  341. type EdbdataClassifyResp struct {
  342. List []*EdbdataClassifyList
  343. }
  344. func GetTargetBySecName(secName string) (item *Edbinfo, err error) {
  345. sql := `SELECT * FROM edbinfo WHERE SEC_NAME=? AND left(TRADE_CODE,1)='W' AND REMARK='手动' `
  346. o := orm.NewOrmUsingDB("edb")
  347. err = o.Raw(sql, secName).QueryRow(&item)
  348. return
  349. }
  350. //更新指标数据信息
  351. func (edbinfo *Edbinfo) Update(cols []string) (err error) {
  352. o := orm.NewOrmUsingDB("edb")
  353. _, err = o.Update(edbinfo, cols...)
  354. return
  355. }
  356. func ModifyTargetClassifyId(tradeCode string, classifyId int) (err error) {
  357. sql := `UPDATE edbinfo SET classify_id=? WHERE TRADE_CODE=? `
  358. o := orm.NewOrmUsingDB("edb")
  359. _, err = o.Raw(sql, classifyId, tradeCode).Exec()
  360. return
  361. }
  362. func GetTargetsDataCount(tradeCode, dt string) (count int, err error) {
  363. sql := `SELECT COUNT(1) AS count FROM edbdata WHERE TRADE_CODE=? AND DT=? `
  364. o := orm.NewOrmUsingDB("edb")
  365. err = o.Raw(sql, tradeCode, dt).QueryRow(&count)
  366. return
  367. }
  368. func GetTargetsData(tradeCode, dt string) (item *Edbdata, err error) {
  369. sql := `SELECT * FROM edbdata WHERE TRADE_CODE=? AND DT=? `
  370. o := orm.NewOrmUsingDB("edb")
  371. err = o.Raw(sql, tradeCode, dt).QueryRow(&item)
  372. return
  373. }
  374. func ModifyTargetsDataByImport(tradeCode, dt, close string) (err error) {
  375. sql := `UPDATE edbdata SET CLOSE=?,modify_time=NOW() WHERE TRADE_CODE=? AND DT=? `
  376. o := orm.NewOrmUsingDB("edb")
  377. _, err = o.Raw(sql, close, tradeCode, dt).Exec()
  378. return
  379. }
  380. func AddTargetsDataByImport(tradeCode, dt, close string) (err error) {
  381. sql := `INSERT INTO edbdata(TRADE_CODE, DT,CLOSE, modify_time)VALUES(?,?,?,NOW()) `
  382. o := orm.NewOrmUsingDB("edb")
  383. _, err = o.Raw(sql, tradeCode, dt, close).Exec()
  384. return
  385. }
  386. type EdbdataImportResp struct {
  387. Status int
  388. Msg string
  389. SuccessCount int
  390. FailCount int
  391. }
  392. type DataListForExport struct {
  393. TradeCode string `orm:"column(TRADE_CODE)" description:"指标code"`
  394. SecName string `orm:"column(SEC_NAME)" description:"指标名称"`
  395. Unit string `orm:"column(UNIT)" description:"单位"`
  396. Frequency string `description:"频度"`
  397. ClassifyId int `description:"分类id"`
  398. NoticeTime string `description:"通知时间"`
  399. ClassifyName string
  400. Dt string `orm:"column(DT)" description:"日期"`
  401. Close float64 `orm:"column(CLOSE)" description:"值"`
  402. }
  403. func GetDataListForExport(startDate, endDate, frequency, keyWord string, classifyId int) (items []*DataListForExport, err error) {
  404. where := ``
  405. var pars []interface{}
  406. if keyWord != "" {
  407. where = ` AND SEC_NAME LIKE '%` + keyWord + `%`
  408. }
  409. if startDate != "" {
  410. where += ` AND create_date>=? `
  411. pars = append(pars, startDate)
  412. }
  413. if endDate != "" {
  414. where += ` AND create_date<=? `
  415. pars = append(pars, endDate)
  416. }
  417. if frequency != "" {
  418. where += ` AND frequency=? `
  419. pars = append(pars, frequency)
  420. }
  421. if classifyId > 0 {
  422. where += ` AND classify_id=? `
  423. pars = append(pars, classifyId)
  424. }
  425. sql := ` SELECT a.TRADE_CODE,a.SEC_NAME,a.UNIT,a.frequency,a.classify_id,b.classify_name,c.DT,c.CLOSE FROM edbdata AS c
  426. INNER JOIN edbinfo AS a ON a.TRADE_CODE=c.TRADE_CODE
  427. LEFT JOIN edbdata_classify AS b ON a.classify_id=b.classify_id
  428. WHERE LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0 `
  429. if where != "" {
  430. sql += where
  431. }
  432. sql = sql + " ORDER BY c.DT DESC "
  433. o := orm.NewOrmUsingDB("edb")
  434. _, err = o.Raw(sql, pars).QueryRows(&items)
  435. return
  436. }
  437. type DataDeleteReq struct {
  438. TradeCode string `description:"指标唯一编码"`
  439. CreateDate string `description:"数据录入日期"`
  440. }
  441. func DataDelete(tradeCode, createDate, close string, modifyTime time.Time, sysUserId int) (err error) {
  442. o := orm.NewOrmUsingDB("edb")
  443. o.Begin()
  444. defer func() {
  445. if err != nil {
  446. o.Rollback()
  447. } else {
  448. o.Commit()
  449. }
  450. }()
  451. recordSql := ` INSERT INTO edbdata_delete_record(TRADE_CODE,DT,CLOSE,modify_time,create_time,sys_user_id)
  452. VALUES(?,?,?,?,?,?)`
  453. _, err = o.Raw(recordSql, tradeCode, createDate, close, modifyTime, time.Now(), sysUserId).Exec()
  454. sql := ` DELETE FROM edbdata WHERE TRADE_CODE = ? AND DT = ? `
  455. _, err = o.Raw(sql, tradeCode, createDate).Exec()
  456. return
  457. }
  458. func GetTargetInfoCount(tradeCode string) (count int, err error) {
  459. sql := ` SELECT COUNT(1) AS count FROM edbdata AS c
  460. INNER JOIN edbinfo AS a ON a.TRADE_CODE=c.TRADE_CODE
  461. WHERE a.TRADE_CODE=? `
  462. o := orm.NewOrmUsingDB("edb")
  463. err = o.Raw(sql, tradeCode).QueryRow(&count)
  464. return
  465. }
  466. type TargetDeleteReq struct {
  467. TradeCode string `description:"指标唯一编码"`
  468. }
  469. func TargetDelete(tradeCode string) (err error) {
  470. o := orm.NewOrmUsingDB("edb")
  471. tx, err := o.Begin()
  472. if err != nil {
  473. return
  474. }
  475. defer func() {
  476. if err != nil {
  477. _ = tx.Rollback()
  478. } else {
  479. _ = tx.Commit()
  480. }
  481. }()
  482. sql := " DELETE FROM edbinfo WHERE TRADE_CODE = ? "
  483. _, err = tx.Raw(sql, tradeCode).Exec()
  484. sql = " DELETE FROM edbdata WHERE TRADE_CODE = ? "
  485. _, err = tx.Raw(sql, tradeCode).Exec()
  486. return
  487. }
  488. type Researcher struct {
  489. AdminId int `description:"系统用户id"`
  490. AdminName string `description:"系统用户名称"`
  491. RealName string `description:"系统用户姓名"`
  492. Role string `description:"系统用户角色"`
  493. Mobile string `description:"手机号"`
  494. TargetCount int `description:"指标数量"`
  495. }
  496. type ResearcherListResp struct {
  497. List []*Researcher
  498. }
  499. func GetResearcherEntry() (items []*Researcher, err error) {
  500. sql := ` SELECT admin_id,admin_name,real_name,mobile,0 as target_count FROM admin WHERE role_type=1 `
  501. o := orm.NewOrm()
  502. _, err = o.Raw(sql).QueryRows(&items)
  503. researchLen := len(items)
  504. edbO := orm.NewOrmUsingDB("edb")
  505. for i := 0; i < researchLen; i++ {
  506. var count int
  507. mobile := items[i].Mobile
  508. sqlCount := ` SELECT COUNT(DISTINCT a.TRADE_CODE) AS count FROM edbinfo_user AS a
  509. INNER JOIN edbinfo AS b ON a.TRADE_CODE=b.TRADE_CODE
  510. WHERE a.mobile=? AND LEFT(b.TRADE_CODE,1)='W' AND b.REMARK='手动' AND b.classify_id>0 `
  511. err = edbO.Raw(sqlCount, mobile).QueryRow(&count)
  512. items[i].TargetCount = count
  513. }
  514. return
  515. }
  516. func GetResearcherEntryByMobile(mobile string) (items []*Researcher, err error) {
  517. sql := ` SELECT admin_id,admin_name,real_name,mobile,0 as target_count FROM admin WHERE role_type=1 `
  518. if mobile != "" {
  519. sql += ` AND mobile IN(` + mobile + `)`
  520. }
  521. o := orm.NewOrm()
  522. _, err = o.Raw(sql).QueryRows(&items)
  523. researchLen := len(items)
  524. edbO := orm.NewOrmUsingDB("edb")
  525. for i := 0; i < researchLen; i++ {
  526. var count int
  527. mobile := items[i].Mobile
  528. sqlCount := ` SELECT COUNT(DISTINCT a.TRADE_CODE) AS count FROM edbinfo_user AS a
  529. INNER JOIN edbinfo AS b ON a.TRADE_CODE=b.TRADE_CODE
  530. WHERE a.mobile=? AND LEFT(b.TRADE_CODE,1)='W' AND b.REMARK='手动' AND b.classify_id>0 `
  531. err = edbO.Raw(sqlCount, mobile).QueryRow(&count)
  532. items[i].TargetCount = count
  533. }
  534. return
  535. }
  536. type EdbinfoItems struct {
  537. TradeCode string `orm:"column(TRADE_CODE);pk" description:"指标code"`
  538. SecName string `orm:"column(SEC_NAME);" description:"指标名称"`
  539. Unit string `orm:"column(UNIT);" description:"单位"`
  540. Remark string `orm:"column(REMARK);" description:"备注"`
  541. Frequency string `description:"频度"`
  542. ClassifyId int `description:"分类id"`
  543. ClassifyName string `description:"分类名称"`
  544. CreateDate string `description:"创建时间"`
  545. UserId int `description:"录入用户id"`
  546. NoticeTime string `description:"通知时间"`
  547. Mobile string `description:"录入者手机号"`
  548. ModifyDate string `description:"待更新日期"`
  549. Status string `description:"状态:未完成/完成"`
  550. }
  551. type TargetItemsResp struct {
  552. List SortEdbInfo
  553. }
  554. type SortEdbInfo []EdbinfoItems
  555. func GetTargetItems(mobile string, classifyId int) (lastItems SortEdbInfo, err error) {
  556. var items []*EdbinfoItems
  557. o := orm.NewOrmUsingDB("edb")
  558. //sql := ` SELECT *,'' modify_date,'' status FROM edbinfo AS a WHERE LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0 `
  559. sql := ` SELECT *,'' modify_date,'' STATUS FROM edbinfo AS a
  560. WHERE LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0
  561. `
  562. if classifyId > 0 {
  563. sql += ` AND a.classify_id=` + strconv.Itoa(classifyId) + ``
  564. }
  565. sql += ` GROUP BY a.TRADE_CODE `
  566. //if classifyId > 0 {
  567. // sql = ` SELECT *,'' modify_date,'' status FROM edbinfo AS a
  568. // WHERE a.classify_id=` + strconv.Itoa(classifyId) + ` AND LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0
  569. // GROUP BY a.TRADE_CODE `
  570. //}
  571. sql = sql + ` ORDER BY CONVERT(a.SEC_NAME USING gbk ) COLLATE gbk_chinese_ci ASC `
  572. _, err = o.Raw(sql).QueryRows(&items)
  573. if err != nil {
  574. return
  575. }
  576. itemsLen := len(items)
  577. nowWeek := time.Now().Weekday().String()
  578. fmt.Println(nowWeek)
  579. finishEdbInfo := SortEdbInfo{}
  580. unFinishEdbInfo := SortEdbInfo{}
  581. for i := 0; i < itemsLen; i++ {
  582. noticeTime := items[i].NoticeTime
  583. frequency := items[i].Frequency
  584. tradeCode := items[i].TradeCode
  585. if noticeTime != "" {
  586. if frequency == "周度" {
  587. noticeArr := strings.Split(noticeTime, " ")
  588. noticeWeek := noticeArr[0]
  589. fmt.Println(noticeWeek)
  590. addDay := 0
  591. if nowWeek == "Sunday" {
  592. if noticeWeek == "周日" {
  593. addDay = 0
  594. } else if noticeWeek == "周一" {
  595. addDay = 1
  596. } else if noticeWeek == "周二" {
  597. addDay = 2
  598. } else if noticeWeek == "周三" {
  599. addDay = 3
  600. } else if noticeWeek == "周四" {
  601. addDay = 4
  602. } else if noticeWeek == "周五" {
  603. addDay = 5
  604. } else if noticeWeek == "周六" {
  605. addDay = 6
  606. } else {
  607. addDay = 0
  608. }
  609. } else if nowWeek == "Monday" {
  610. if noticeWeek == "周日" {
  611. addDay = 6
  612. } else if noticeWeek == "周一" {
  613. addDay = 0
  614. } else if noticeWeek == "周二" {
  615. addDay = 1
  616. } else if noticeWeek == "周三" {
  617. addDay = 2
  618. } else if noticeWeek == "周四" {
  619. addDay = 3
  620. } else if noticeWeek == "周五" {
  621. addDay = 4
  622. } else if noticeWeek == "周六" {
  623. addDay = 5
  624. } else {
  625. addDay = 0
  626. }
  627. } else if nowWeek == "Tuesday" {
  628. if noticeWeek == "周日" {
  629. addDay = 5
  630. } else if noticeWeek == "周一" {
  631. addDay = 6
  632. } else if noticeWeek == "周二" {
  633. addDay = 0
  634. } else if noticeWeek == "周三" {
  635. addDay = 1
  636. } else if noticeWeek == "周四" {
  637. addDay = 2
  638. } else if noticeWeek == "周五" {
  639. addDay = 3
  640. } else if noticeWeek == "周六" {
  641. addDay = 4
  642. } else {
  643. addDay = 0
  644. }
  645. } else if nowWeek == "Wednesday" {
  646. if noticeWeek == "周日" {
  647. addDay = 4
  648. } else if noticeWeek == "周一" {
  649. addDay = 5
  650. } else if noticeWeek == "周二" {
  651. addDay = 6
  652. } else if noticeWeek == "周三" {
  653. addDay = 0
  654. } else if noticeWeek == "周四" {
  655. addDay = 1
  656. } else if noticeWeek == "周五" {
  657. addDay = 2
  658. } else if noticeWeek == "周六" {
  659. addDay = 3
  660. } else {
  661. addDay = 0
  662. }
  663. } else if nowWeek == "Thursday" {
  664. if noticeWeek == "周日" {
  665. addDay = 3
  666. } else if noticeWeek == "周一" {
  667. addDay = 4
  668. } else if noticeWeek == "周二" {
  669. addDay = 5
  670. } else if noticeWeek == "周三" {
  671. addDay = 6
  672. } else if noticeWeek == "周四" {
  673. addDay = 0
  674. } else if noticeWeek == "周五" {
  675. addDay = 1
  676. } else if noticeWeek == "周六" {
  677. addDay = 2
  678. } else {
  679. addDay = 0
  680. }
  681. } else if nowWeek == "Friday" {
  682. if noticeWeek == "周日" {
  683. addDay = 2
  684. } else if noticeWeek == "周一" {
  685. addDay = 3
  686. } else if noticeWeek == "周二" {
  687. addDay = 4
  688. } else if noticeWeek == "周三" {
  689. addDay = 5
  690. } else if noticeWeek == "周四" {
  691. addDay = 6
  692. } else if noticeWeek == "周五" {
  693. addDay = 0
  694. } else if noticeWeek == "周六" {
  695. addDay = 1
  696. } else {
  697. addDay = 0
  698. }
  699. } else if nowWeek == "Saturday" {
  700. if noticeWeek == "周日" {
  701. addDay = 1
  702. } else if noticeWeek == "周一" {
  703. addDay = 2
  704. } else if noticeWeek == "周二" {
  705. addDay = 3
  706. } else if noticeWeek == "周三" {
  707. addDay = 4
  708. } else if noticeWeek == "周四" {
  709. addDay = 5
  710. } else if noticeWeek == "周五" {
  711. addDay = 6
  712. } else if noticeWeek == "周六" {
  713. addDay = 0
  714. } else {
  715. addDay = 0
  716. }
  717. }
  718. modifyDate := time.Now().AddDate(0, 0, addDay)
  719. modifyDateStr := modifyDate.Format(utils.FormatDate)
  720. items[i].ModifyDate = modifyDateStr
  721. modifyDateEndStr := modifyDate.AddDate(0, 0, -7).Format(utils.FormatDate)
  722. fmt.Println("addDay:", addDay)
  723. fmt.Println("modifyDateEndStr:", modifyDateEndStr)
  724. count := 0
  725. sqlCount := ` SELECT COUNT(1) AS num FROM edbdata WHERE TRADE_CODE=? AND DT >= ? AND DT <= ? `
  726. err = o.Raw(sqlCount, tradeCode, modifyDateEndStr, modifyDateStr).QueryRow(&count)
  727. if err != nil {
  728. return nil, err
  729. }
  730. if count > 0 {
  731. items[i].Status = "完成"
  732. finishEdbInfo = append(finishEdbInfo, *items[i])
  733. } else {
  734. items[i].Status = "未完成"
  735. unFinishEdbInfo = append(unFinishEdbInfo, *items[i])
  736. }
  737. } else if frequency == "日度" {
  738. items[i].Status = "完成"
  739. finishEdbInfo = append(finishEdbInfo, *items[i])
  740. } else if frequency == "月度" {
  741. myYear := time.Now().Year()
  742. myMonth := time.Now().Format("01")
  743. startDate, endDate := utils.GetMonthStartAndEnd(strconv.Itoa(myYear), myMonth)
  744. count := 0
  745. sqlCount := ` SELECT COUNT(1) AS num FROM edbdata WHERE TRADE_CODE=? AND DT >= ? AND DT <= ? `
  746. err = o.Raw(sqlCount, tradeCode, startDate, endDate).QueryRow(&count)
  747. if err != nil {
  748. return nil, err
  749. }
  750. if noticeTime != "" {
  751. var modifyDateStr string
  752. strArr := strings.Split(noticeTime, "日")
  753. myYear := time.Now().Year()
  754. myMonth := time.Now().Format("01")
  755. modifyDateStr = strconv.Itoa(myYear) + "-" + myMonth + "-" + strArr[0]
  756. items[i].ModifyDate = modifyDateStr
  757. }
  758. if count > 0 {
  759. items[i].Status = "完成"
  760. finishEdbInfo = append(finishEdbInfo, *items[i])
  761. } else {
  762. items[i].Status = "未完成"
  763. unFinishEdbInfo = append(unFinishEdbInfo, *items[i])
  764. }
  765. } else {
  766. items[i].Status = "完成"
  767. finishEdbInfo = append(finishEdbInfo, *items[i])
  768. }
  769. } else {
  770. if frequency == "月度" {
  771. myYear := time.Now().Year()
  772. myMonth := time.Now().Format("01")
  773. startDate, endDate := utils.GetMonthStartAndEnd(strconv.Itoa(myYear), myMonth)
  774. count := 0
  775. sqlCount := ` SELECT COUNT(1) AS num FROM edbdata WHERE TRADE_CODE=? AND DT >= ? AND DT <= ? `
  776. err = o.Raw(sqlCount, tradeCode, startDate, endDate).QueryRow(&count)
  777. if err != nil {
  778. return nil, err
  779. }
  780. if count > 0 {
  781. items[i].Status = "完成"
  782. finishEdbInfo = append(finishEdbInfo, *items[i])
  783. } else {
  784. items[i].Status = "未完成"
  785. unFinishEdbInfo = append(unFinishEdbInfo, *items[i])
  786. }
  787. } else {
  788. items[i].Status = "完成"
  789. finishEdbInfo = append(finishEdbInfo, *items[i])
  790. }
  791. }
  792. }
  793. sort.Sort(SortByModifyDate{finishEdbInfo})
  794. sort.Sort(SortByModifyDate{unFinishEdbInfo})
  795. lastItems = append(lastItems, unFinishEdbInfo...)
  796. lastItems = append(lastItems, finishEdbInfo...)
  797. return
  798. }
  799. //获取此 slice 的长度
  800. func (p SortEdbInfo) Len() int { return len(p) }
  801. // 根据元素的状态降序排序
  802. func (p SortEdbInfo) Less(i, j int) bool {
  803. return p[i].Status > p[j].Status
  804. }
  805. // 交换数据
  806. func (p SortEdbInfo) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
  807. // 嵌套结构体 将继承 SortEdbInfo 的所有属性和方法
  808. // 所以相当于SortByName 也实现了 Len() 和 Swap() 方法
  809. type SortByStatus struct{ SortEdbInfo }
  810. // 根据元素的姓名长度降序排序 (此处按照自己的业务逻辑写)
  811. func (p SortByStatus) Less(i, j int) bool {
  812. return len(p.SortEdbInfo[i].Status) > len(p.SortEdbInfo[j].Status)
  813. }
  814. type SortByModifyDate struct{ SortEdbInfo }
  815. // 根据元素的年龄降序排序 (此处按照自己的业务逻辑写)
  816. func (p SortByModifyDate) Less(i, j int) bool {
  817. return p.SortEdbInfo[i].ModifyDate > p.SortEdbInfo[j].ModifyDate
  818. }
  819. type DataCheckResp struct {
  820. Status int `description:"状态:1:该日期已存在数据,是否确认修改?,0:数据不存在"`
  821. Close string `description:"值"`
  822. }
  823. type TargetCheckResp struct {
  824. Status int `description:"状态:1:该指标有关联数据,请先删除数据,0:指标不存在关联数据,可直接删除"`
  825. }
  826. type EdbdataExportList struct {
  827. TradeCode string `orm:"column(TRADE_CODE);" description:"指标code"`
  828. SecName string `orm:"column(SEC_NAME);" description:"指标名称"`
  829. Unit string `orm:"column(UNIT);" description:"单位"`
  830. Remark string `orm:"column(REMARK);" description:"备注"`
  831. Frequency string `description:"频度"`
  832. ClassifyId int `description:"分类id"`
  833. ClassifyName string `description:"分类名称"`
  834. CreateDate string `description:"创建时间"`
  835. Dt string `orm:"column(Dt);" description:"最新一次录入时间"`
  836. }
  837. func GetEdbdataSecName(condition string, pars []interface{}) (items []*EdbdataExportList, err error) {
  838. //sql := `SELECT a.TRADE_CODE,a.SEC_NAME,a.frequency,a.UNIT,MAX(c.DT) AS Dt
  839. // FROM edbdata AS c
  840. // INNER JOIN edbinfo AS a ON a.TRADE_CODE=c.TRADE_CODE
  841. // INNER JOIN edbinfo_user AS d ON a.TRADE_CODE=d.TRADE_CODE
  842. // LEFT JOIN edbdata_classify AS b ON a.classify_id=b.classify_id
  843. // WHERE LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0`
  844. sql := `SELECT a.TRADE_CODE,a.SEC_NAME,a.frequency,a.UNIT,MAX(c.DT) AS Dt,b.classify_name
  845. FROM edbdata AS c
  846. INNER JOIN edbinfo AS a ON a.TRADE_CODE=c.TRADE_CODE
  847. LEFT JOIN edbdata_classify AS b ON a.classify_id=b.classify_id
  848. WHERE LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0`
  849. if condition != "" {
  850. sql += condition
  851. }
  852. sql += " GROUP BY a.TRADE_CODE ORDER BY a.TRADE_CODE ASC "
  853. o := orm.NewOrmUsingDB("edb")
  854. _, err = o.Raw(sql, pars).QueryRows(&items)
  855. return
  856. }
  857. type EdbdataList struct {
  858. Dt string `orm:"column(DT);" description:"录入时间"`
  859. }
  860. func GetEdbdataList(tradeCode string) (items []*EdbdataList, err error) {
  861. sql := ` SELECT DT FROM edbdata WHERE TRADE_CODE IN(` + tradeCode + `) GROUP BY DT ORDER BY DT DESC `
  862. o := orm.NewOrmUsingDB("edb")
  863. _, err = o.Raw(sql).QueryRows(&items)
  864. return
  865. }
  866. type EdbdataItem struct {
  867. TradeCode string `orm:"column(TRADE_CODE);" description:"指标code"`
  868. Dt string `orm:"column(DT);" description:"最新一次录入时间"`
  869. Close float64 `orm:"column(CLOSE);" description:"值"`
  870. }
  871. func GetEdbdataValueByTradeCode(tradeCode, dt string) (item *EdbdataItem, err error) {
  872. sql := ` SELECT TRADE_CODE,DT,CLOSE FROM edbdata WHERE TRADE_CODE=? AND DT=? `
  873. o := orm.NewOrmUsingDB("edb")
  874. err = o.Raw(sql, tradeCode, dt).QueryRow(&item)
  875. return
  876. }
  877. func GetEdbdataClassifyByParentId(parentId int) (items []*EdbdataClassify, err error) {
  878. sql := ` SELECT * FROM edbdata_classify WHERE parent_id=? `
  879. o := orm.NewOrmUsingDB("edb")
  880. o.Raw(sql, parentId).QueryRows(&items)
  881. return
  882. }
  883. type LzPriceClassify struct {
  884. ProductName string
  885. }
  886. func GetLzPriceClassify() (items []*LzPriceClassify, err error) {
  887. sql := ` SELECT product_name FROM longzhongpriceinfo GROUP BY product_name ORDER BY product_name DESC `
  888. o := orm.NewOrmUsingDB("edb")
  889. o.Raw(sql).QueryRows(&items)
  890. return
  891. }
  892. type Longzhongpriceinfo struct {
  893. LongzhongpriceinfoId int `orm:"column(longzhongpriceinfo_id);pk"`
  894. Standard string
  895. ModelName string
  896. Unit string
  897. AreaName string
  898. PriceType string
  899. Memo string
  900. PriceId string
  901. ProductName string
  902. InfoType string
  903. InfoTypeRemark string
  904. MarketName string
  905. ManufactureName string
  906. }
  907. func GetLongzhongpriceinfoByClassifyName(productName string) (items []*Longzhongpriceinfo, err error) {
  908. sql := `SELECT * FROM longzhongpriceinfo WHERE product_name=? ORDER BY longzhongpriceinfo_id ASC `
  909. o := orm.NewOrmUsingDB("edb")
  910. _, err = o.Raw(sql, productName).QueryRows(&items)
  911. return
  912. }
  913. func GetLongzhongPriceDataMaxCount(productName string) (count int, err error) {
  914. o := orm.NewOrmUsingDB("edb")
  915. sql := `SELECT MAX(t.num) AS count FROM (
  916. SELECT COUNT(1) AS num FROM longzhongpriceinfo AS a
  917. INNER JOIN longzhongpricedata AS b ON a.longzhongpriceinfo_id=b.longzhongpriceinfo_id
  918. WHERE a.product_name=?
  919. GROUP BY a.product_name
  920. )AS t `
  921. err = o.Raw(sql, productName).QueryRow(&count)
  922. return
  923. }
  924. type LongzhongpricedataItems struct {
  925. LongzhongpricedataId int `orm:"column(longzhongpricedata_id);pk"`
  926. LongzhongpriceinfoId int
  927. PriceDate string
  928. Memo string
  929. Price float64
  930. CnyPrice float64
  931. ZsyPrice float64
  932. ZshPrice float64
  933. LowPrice float64
  934. HighPrice float64
  935. RisePrice float64
  936. TonPrice float64
  937. PriceType string
  938. UpdateDate string
  939. }
  940. func GetLongzhongPriceDataById(lzPriceInfoId int) (items []*LongzhongpricedataItems, err error) {
  941. o := orm.NewOrmUsingDB("edb")
  942. sql := ` SELECT DISTINCT a.longzhongpriceinfo_id,a.price_date,a.memo,a.price,a.cny_price,a.zsy_price,a.zsh_price,a.low_price,a.high_price,a.rise_price,a.ton_price,a.price_type,a.update_date
  943. FROM longzhongpricedata AS a
  944. WHERE longzhongpriceinfo_id=? ORDER BY price_date DESC `
  945. _, err = o.Raw(sql, lzPriceInfoId).QueryRows(&items)
  946. return
  947. }
  948. func GetLzSurveyClassify() (items []*LzPriceClassify, err error) {
  949. sql := ` SELECT breed_name AS product_name FROM longzhong_survey_product GROUP BY breed_name ORDER BY breed_name DESC `
  950. o := orm.NewOrmUsingDB("edb")
  951. o.Raw(sql).QueryRows(&items)
  952. return
  953. }
  954. type LongzhongSurveyProduct struct {
  955. SurveyProductId int `orm:"column(survey_product_id);pk"`
  956. ProjectQuotaId int64
  957. BreedId string
  958. BreedName string
  959. QuotaId string
  960. QuotaName string
  961. UnitId string
  962. UnitName string
  963. SampleType int64
  964. SampleId string
  965. SampleName string
  966. DeviceId string
  967. Device string
  968. ProductCraftId string
  969. ProductCraft string
  970. ProductLine string
  971. InputMode int64
  972. Frequency int64
  973. InputValue string
  974. TaskShouldFinishTime int
  975. CustomId string
  976. CustomType int64
  977. Custom string
  978. QuotaSampleId int64
  979. StartDate string
  980. EndDate string
  981. LzCode string
  982. }
  983. func GetLongzhongSurveyProductByClassifyName(productName string) (items []*LongzhongSurveyProduct, err error) {
  984. sql := `SELECT * FROM longzhong_survey_product WHERE breed_name=? ORDER BY survey_product_id ASC `
  985. o := orm.NewOrmUsingDB("edb")
  986. _, err = o.Raw(sql, productName).QueryRows(&items)
  987. return
  988. }
  989. // EdbInfoItem
  990. type EdbInfoItem struct {
  991. TradeCode string `orm:"column(TRADE_CODE);pk" description:"指标code"`
  992. SecName string `orm:"column(SEC_NAME);" description:"指标名称"`
  993. Unit string `orm:"column(UNIT);" description:"单位"`
  994. Remark string `orm:"column(REMARK);" description:"备注"`
  995. Frequency string `description:"频度"`
  996. ClassifyId int `description:"分类id"`
  997. ClassifyName string `description:"分类名称"`
  998. CreateDate string `description:"创建时间"`
  999. UserId int `description:"录入用户id"`
  1000. NoticeTime string `description:"通知时间"`
  1001. Mobile string `description:"录入者手机号"`
  1002. ModifyDate string `description:"待更新日期"`
  1003. Status string `description:"状态:未完成/完成"`
  1004. DataList []*Edbdata `description:"指标数据列表"`
  1005. }
  1006. // GetTargetItemList 获取指标列表数据
  1007. func GetTargetItemList(classifyId, edbShowType int, frequency, keyword, tradeCode string, classifyIdStrList []string) (items []*EdbInfoItem, err error) {
  1008. o := orm.NewOrmUsingDB("edb")
  1009. sql := ` SELECT a.*,'' modify_date,'' STATUS FROM edbinfo AS a `
  1010. if edbShowType != 0 {
  1011. sql = ` SELECT a.*,b.DT,'' modify_date,'' STATUS FROM edbinfo AS a
  1012. left join edbdata b on a.TRADE_CODE=b.TRADE_CODE `
  1013. }
  1014. sql += ` WHERE LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id>0 `
  1015. //如果没有分类id集合列表,那么就没有数据了,不用往下执行了,直接返回好了
  1016. if len(classifyIdStrList) <= 0 {
  1017. return
  1018. }
  1019. if len(classifyIdStrList) > 0 {
  1020. sql += ` AND a.classify_id in (` + strings.Join(classifyIdStrList, ",") + `) `
  1021. }
  1022. if classifyId > 0 {
  1023. sql += ` AND a.classify_id=` + strconv.Itoa(classifyId) + ` `
  1024. }
  1025. //频度
  1026. if frequency != "" {
  1027. sql += ` AND a.frequency="` + frequency + `" `
  1028. }
  1029. //关键字
  1030. if keyword != "" {
  1031. sql += ` AND (a.SEC_NAME like "%` + keyword + `%" or a.TRADE_CODE like "%` + keyword + `%" )`
  1032. }
  1033. //指定指标
  1034. if tradeCode != "" {
  1035. sql += ` AND a.TRADE_CODE = "` + tradeCode + `" `
  1036. }
  1037. //指标里面是否有数据
  1038. switch edbShowType {
  1039. case 1:
  1040. sql += ` AND b.CLOSE is not null `
  1041. case 2:
  1042. sql += ` AND b.CLOSE is null `
  1043. }
  1044. sql += ` GROUP BY a.TRADE_CODE `
  1045. sql = sql + ` ORDER BY CONVERT(a.SEC_NAME USING gbk ) COLLATE gbk_chinese_ci ASC `
  1046. _, err = o.Raw(sql).QueryRows(&items)
  1047. return
  1048. }
  1049. // GetEdbDataListByCodes 通过指标ID获取所有数据
  1050. func GetEdbDataListByCodes(tradeCode string) (items []*Edbdata, err error) {
  1051. sql := ` SELECT TRADE_CODE,DT,round(CLOSE,4) CLOSE,modify_time FROM edbdata WHERE TRADE_CODE IN(` + tradeCode + `) GROUP BY TRADE_CODE,DT ORDER BY DT DESC `
  1052. o := orm.NewOrmUsingDB("edb")
  1053. _, err = o.Raw(sql).QueryRows(&items)
  1054. return
  1055. }
  1056. // TargetItemListResp 指标数据结构体
  1057. type TargetItemListResp struct {
  1058. List []*EdbInfoItem
  1059. FrequencyList []string
  1060. }
  1061. // BatchDataDeleteReq 批量删除某日的指标数据请求结构体
  1062. type BatchDataDeleteReq struct {
  1063. CreateDate string `description:"创建日期"`
  1064. TradeCodeList []string `description:"指标唯一编码列表"`
  1065. }
  1066. // BatchDeleteEdbDataByDate 批量删除某日的指标数据
  1067. func BatchDeleteEdbDataByDate(tradeCodes, dt string, opUserId int) (err error) {
  1068. o := orm.NewOrmUsingDB("edb")
  1069. var list []*Edbdata
  1070. sql := ` select * FROM edbdata WHERE TRADE_CODE in (` + tradeCodes + `) AND DT = ? `
  1071. _, err = o.Raw(sql, dt).QueryRows(&list)
  1072. if err != nil {
  1073. return
  1074. }
  1075. deleteRecordList := make([]*EdbdataDeleteRecord, 0)
  1076. for _, edbDataInfo := range list {
  1077. deleteRecord := &EdbdataDeleteRecord{
  1078. TradeCode: edbDataInfo.TradeCode,
  1079. Dt: edbDataInfo.Dt,
  1080. Close: edbDataInfo.Close,
  1081. ModifyTime: time.Now(),
  1082. CreateTime: time.Now(),
  1083. SysUserId: opUserId,
  1084. }
  1085. deleteRecordList = append(deleteRecordList, deleteRecord)
  1086. }
  1087. if len(deleteRecordList) > 0 {
  1088. _, tmpErr := o.InsertMulti(len(deleteRecordList), deleteRecordList)
  1089. if tmpErr != nil {
  1090. err = tmpErr
  1091. return
  1092. }
  1093. }
  1094. sql = ` DELETE FROM edbdata WHERE TRADE_CODE in (` + tradeCodes + `) AND DT = ? `
  1095. _, err = o.Raw(sql, dt).Exec()
  1096. return
  1097. }
  1098. // BatchDeleteEdbData 批量删除指标数据
  1099. func BatchDeleteEdbData(tradeCode string, opUserId int) (err error) {
  1100. o := orm.NewOrmUsingDB("edb")
  1101. var list []*Edbdata
  1102. sql := ` select * FROM edbdata WHERE TRADE_CODE = ? `
  1103. _, err = o.Raw(sql, tradeCode).QueryRows(&list)
  1104. if err != nil {
  1105. return
  1106. }
  1107. deleteRecordList := make([]*EdbdataDeleteRecord, 0)
  1108. for _, edbDataInfo := range list {
  1109. deleteRecord := &EdbdataDeleteRecord{
  1110. TradeCode: edbDataInfo.TradeCode,
  1111. Dt: edbDataInfo.Dt,
  1112. Close: edbDataInfo.Close,
  1113. ModifyTime: time.Now(),
  1114. CreateTime: time.Now(),
  1115. SysUserId: opUserId,
  1116. }
  1117. deleteRecordList = append(deleteRecordList, deleteRecord)
  1118. }
  1119. _, err = o.InsertMulti(len(deleteRecordList), deleteRecordList)
  1120. if err != nil {
  1121. return
  1122. }
  1123. sql = ` DELETE FROM edbdata WHERE TRADE_CODE = ? `
  1124. _, err = o.Raw(sql, tradeCode).Exec()
  1125. return
  1126. }
  1127. // GetEdbInfoCountByClassifyId 根据指标分类id获取当前分类下的指标数量
  1128. func GetEdbInfoCountByClassifyId(classifyId int) (count int, err error) {
  1129. o := orm.NewOrmUsingDB("edb")
  1130. sql := `SELECT COUNT(1) AS count FROM ( SELECT a.*,b.CLOSE FROM edbinfo AS a
  1131. INNER JOIN edbdata AS b ON a.TRADE_CODE=b.TRADE_CODE
  1132. WHERE LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' AND a.classify_id=? group by a.TRADE_CODE) d `
  1133. err = o.Raw(sql, classifyId).QueryRow(&count)
  1134. return
  1135. }
  1136. // EdbInfoGroupCount 指标分类id获取当前分类下的指标数量
  1137. type EdbInfoGroupCount struct {
  1138. Count int
  1139. ClassifyId int
  1140. }
  1141. // GetEdbInfoGroupCountByClassifyIds 根据指标分类id获取当前分类下的指标数量
  1142. func GetEdbInfoGroupCountByClassifyIds(classifyIds string) (list []*EdbInfoGroupCount, err error) {
  1143. o := orm.NewOrmUsingDB("edb")
  1144. sql := `SELECT COUNT(1) AS count,classify_id FROM ( SELECT a.*,b.CLOSE FROM edbinfo AS a
  1145. INNER JOIN edbdata AS b ON a.TRADE_CODE=b.TRADE_CODE
  1146. WHERE LEFT(a.TRADE_CODE,1)='W' AND a.REMARK='手动' and a.classify_id in (` + classifyIds + `) group by a.TRADE_CODE) d
  1147. GROUP BY classify_id `
  1148. _, err = o.Raw(sql).QueryRows(&list)
  1149. return
  1150. }