target.go 42 KB

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