123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- package data_manage
- import (
- "eta/eta_mobile/utils"
- "fmt"
- "github.com/beego/beego/v2/client/orm"
- "github.com/shopspring/decimal"
- "strconv"
- "strings"
- "time"
- )
- // 环差值
- func AddCalculateHcz(req *EdbInfoCalculateBatchSaveReq, fromEdbInfo *EdbInfo, edbCode, uniqueCode string, sysUserId int, sysUserRealName string, formulaInt int) (edbInfoId int, err error) {
- fmt.Println("AddCalculateHcz")
- o := orm.NewOrmUsingDB("data")
- to, err := o.Begin()
- if err != nil {
- return
- }
- defer func() {
- if err != nil {
- fmt.Println("AddCalculateHcz,Err:" + err.Error())
- _ = to.Rollback()
- } else {
- _ = to.Commit()
- }
- }()
- if req.EdbInfoId <= 0 {
- edbInfo := new(EdbInfo)
- edbInfo.Source = utils.DATA_SOURCE_CALCULATE_HCZ
- edbInfo.SourceName = "环差值"
- edbInfo.EdbCode = edbCode
- edbInfo.EdbName = req.EdbName
- edbInfo.EdbNameSource = req.EdbName
- edbInfo.Frequency = req.Frequency
- edbInfo.Unit = req.Unit
- edbInfo.ClassifyId = req.ClassifyId
- edbInfo.SysUserId = sysUserId
- edbInfo.SysUserRealName = sysUserRealName
- edbInfo.CreateTime = time.Now()
- edbInfo.ModifyTime = time.Now()
- edbInfo.UniqueCode = uniqueCode
- edbInfo.CalculateFormula = req.Formula
- edbInfo.EdbType = 2
- newEdbInfoId, tmpErr := to.Insert(edbInfo)
- if tmpErr != nil {
- return edbInfoId, tmpErr
- }
- edbInfoId = int(newEdbInfoId)
- //关联关系
- {
- calculateMappingItem := new(EdbInfoCalculateMapping)
- calculateMappingItem.CreateTime = time.Now()
- calculateMappingItem.ModifyTime = time.Now()
- calculateMappingItem.Sort = 1
- calculateMappingItem.EdbCode = edbCode
- calculateMappingItem.EdbInfoId = edbInfoId
- calculateMappingItem.FromEdbInfoId = fromEdbInfo.EdbInfoId
- calculateMappingItem.FromEdbCode = fromEdbInfo.EdbCode
- calculateMappingItem.FromEdbName = fromEdbInfo.EdbName
- calculateMappingItem.FromSource = fromEdbInfo.Source
- calculateMappingItem.FromSourceName = fromEdbInfo.SourceName
- calculateMappingItem.FromTag = ""
- calculateMappingItem.Source = edbInfo.Source
- calculateMappingItem.SourceName = edbInfo.SourceName
- _, err = to.Insert(calculateMappingItem)
- if err != nil {
- return
- }
- }
- } else {
- edbInfoId = req.EdbInfoId
- dataTableName := GetEdbDataTableName(utils.DATA_SOURCE_CALCULATE_HCZ)
- deleteSql := ` DELETE FROM %s WHERE edb_info_id=? `
- deleteSql = fmt.Sprintf(deleteSql, dataTableName)
- _, err = to.Raw(deleteSql, req.EdbInfoId).Exec()
- }
- edbInfoIdStr := strconv.Itoa(edbInfoId)
- fmt.Println("edbInfoIdStr:" + edbInfoIdStr)
- //计算数据
- var condition string
- var pars []interface{}
- condition += " AND edb_info_id=? "
- if req.EdbInfoId <= 0 {
- pars = append(pars, req.FromEdbInfoId)
- } else {
- pars = append(pars, fromEdbInfo.EdbInfoId)
- }
- dataList, err := GetEdbDataListAll(condition, pars, fromEdbInfo.Source, 0)
- if err != nil {
- return edbInfoId, err
- }
- addSql := ` INSERT INTO edb_data_calculate_hcz(edb_info_id,edb_code,data_time,value,create_time,modify_time,status,data_timestamp) values `
- var isAdd bool
- existMap := make(map[string]string)
- dataLen := len(dataList)
- fmt.Println("dataLen:", dataLen)
- for i := 0; i < dataLen; i++ {
- j := i + formulaInt
- if j < dataLen {
- //当期
- currentItem := dataList[i]
- preItem := dataList[j]
- if currentItem != nil && preItem != nil {
- existKey := edbCode + currentItem.DataTime
- if _, ok := existMap[existKey]; !ok {
- currentDate, _ := time.Parse(utils.FormatDate, currentItem.DataTime)
- timestamp := currentDate.UnixNano() / 1e6
- timestampStr := fmt.Sprintf("%d", timestamp)
- val := ""
- if preItem.Value == 0 {
- val = "0"
- } else {
- val = HczDiv(currentItem.Value, preItem.Value)
- }
- if val != "" {
- addSql += GetAddSql(edbInfoIdStr, edbCode, currentItem.DataTime, timestampStr, val)
- isAdd = true
- }
- }
- existMap[existKey] = currentItem.DataTime
- }
- }
- }
- if isAdd {
- addSql = strings.TrimRight(addSql, ",")
- _, err = to.Raw(addSql).Exec()
- if err != nil {
- return edbInfoId, err
- }
- }
- return
- }
- // 环差值,current:当期,pre:上期 公式:当期-上期
- func HczDiv(current, pre float64) string {
- if pre == 0 {
- return ""
- }
- currentVal := decimal.NewFromFloat(current)
- preVal := decimal.NewFromFloat(pre)
- val, _ := currentVal.Sub(preVal).Float64()
- valStr := utils.SubFloatToString(val, 4)
- return valStr
- }
|