123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915 |
- package service
- import (
- "cold-delivery/app/admin/model"
- "cold-delivery/app/admin/service/dto"
- "cold-delivery/common/actions"
- cDto "cold-delivery/common/dto"
- "cold-delivery/common/global"
- "cold-delivery/common/lib"
- model2 "cold-delivery/common/model"
- "cold-delivery/common/nats/nats_server"
- "cold-delivery/conf"
- "errors"
- "fmt"
- "go.uber.org/zap"
- "gogs.baozhida.cn/zoie/OAuth-core/pkg/sms"
- "gogs.baozhida.cn/zoie/OAuth-core/pkg/utils"
- "gogs.baozhida.cn/zoie/OAuth-core/service"
- "gorm.io/gorm"
- "sort"
- "strconv"
- "strings"
- "time"
- )
- type Waybill struct {
- service.Service
- }
- // GetPage 获取Waybill列表
- func (e *Waybill) GetPage(c *dto.WaybillGetPageReq, list *[]model.Waybill, count *int64, p *actions.DataPermission) error {
- var err error
- var data model.Waybill
- if c.PageSize == 9999 {
- err = e.Orm.Model(&data).
- Scopes(
- cDto.MakeCondition(c.GetNeedSearch()),
- actions.Permission(data.TableName(), p),
- ).
- Find(list).Limit(-1).Offset(-1).
- Count(count).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return global.GetFailedErr
- }
- return nil
- }
- err = e.Orm.Model(&data).
- Scopes(
- cDto.MakeCondition(c.GetNeedSearch()),
- cDto.Paginate(c.GetPageSize(), c.GetPageIndex()),
- actions.Permission(data.TableName(), p),
- ).
- Preload("CoolerBox").
- Find(list).Limit(-1).Offset(-1).
- Count(count).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return global.GetFailedErr
- }
- return nil
- }
- func (e *Waybill) GetAppletPage(c *dto.WaybillGetAppletPageReq, list *[]model.Waybill, count *int64, p *actions.DataPermission) error {
- var err error
- //var data model.Waybill
- var logistics model.WaybillLogistics
- err = e.Orm.Table("waybill").
- Select("waybill.*,waybill_logistics.status as status").
- Scopes(
- cDto.MakeCondition(c.GetNeedSearch()),
- cDto.Paginate(c.GetPageSize(), c.GetPageIndex()),
- actions.Permission(logistics.TableName(), p)).
- Where("waybill_logistics.id in (SELECT MAX(id) FROM waybill_logistics where user_id = ? group by waybill_no )", p.UserId).
- Joins("left join waybill_logistics on waybill.waybill_no = waybill_logistics.waybill_no").
- Find(&list).Limit(-1).Offset(-1).Count(count).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return global.GetFailedErr
- }
- return nil
- }
- func (e *Waybill) GetAppletCount(list *[]model.Waybill, count *int64, p *actions.DataPermission) error {
- var err error
- //var data model.Waybill
- var logistics model.WaybillLogistics
- err = e.Orm.Table("waybill").
- Select("waybill.*,waybill_logistics.status as status").
- Scopes(
- actions.Permission(logistics.TableName(), p)).
- Where("waybill_logistics.id in (SELECT MAX(id) FROM waybill_logistics where user_id = ? group by waybill_no )", p.UserId).
- Joins("left join waybill_logistics on waybill.waybill_no = waybill_logistics.waybill_no").
- Find(list).Count(count).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return global.GetFailedErr
- }
- return nil
- }
- func (e *Waybill) GetCustomerPage(c *dto.WaybillGetCustomerPageReq, list *[]model.Waybill, count *int64, p *actions.DataPermission) error {
- var err error
- var data model.Waybill
- if c.PageSize == 9999 {
- err = e.Orm.Model(&data).
- Scopes(
- cDto.MakeCondition(c.GetNeedSearch()),
- actions.Permission(data.TableName(), p),
- ).
- Find(list).Limit(-1).Offset(-1).
- Count(count).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return global.GetFailedErr
- }
- return nil
- }
- err = e.Orm.Model(&data).
- Scopes(
- cDto.MakeCondition(c.GetNeedSearch()),
- cDto.Paginate(c.GetPageSize(), c.GetPageIndex()),
- actions.Permission(data.TableName(), p),
- ).
- Find(list).Limit(-1).Offset(-1).
- Count(count).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return global.GetFailedErr
- }
- return nil
- }
- // Get 获取Waybill对象
- func (e *Waybill) Get(d *dto.WaybillGetReq, waybillModel *model.Waybill, p *actions.DataPermission) error {
- err := e.Orm.
- Scopes(actions.Permission(waybillModel.TableName(), p)).
- Preload("User").
- First(waybillModel, d.GetId()).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- if errors.Is(err, gorm.ErrRecordNotFound) {
- return global.GetNotFoundOrNoPermissionErr
- }
- return global.GetFailedErr
- }
- return nil
- }
- func (e *Waybill) GetByWaybillNo(d *dto.WaybillGetByWaybillPdfReq, waybillModel *model.Waybill, p *actions.DataPermission) error {
- err := e.Orm.
- Scopes(actions.Permission(waybillModel.TableName(), p)).
- Where("waybill_no = ?", d.WaybillNo).
- Preload("Dept").
- First(waybillModel).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- if errors.Is(err, gorm.ErrRecordNotFound) {
- return global.GetNotFoundOrNoPermissionErr
- }
- return global.GetFailedErr
- }
- return nil
- }
- // Insert 创建Waybill对象
- func (e *Waybill) Insert(c *dto.WaybillInsertReq) error {
- var err error
- var data model.Waybill
- tx := e.Orm.Begin()
- defer func() {
- if err != nil {
- tx.Rollback()
- } else {
- tx.Commit()
- }
- }()
- var no string
- for {
- no = time.Now().Format("200601021504") + utils.GetRandString(6, "0123456789", 0)
- var j int64
- err = e.Orm.Model(&data).Where("waybill_no = ?", no).Count(&j).Error
- if err != nil {
- continue
- }
- if j == 0 {
- break
- }
- }
- // 添加运单
- data.WaybillNo = no
- c.Generate(&data)
- err = tx.Create(&data).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return global.CreateFailedErr
- }
- c.Id = data.Id
- return nil
- }
- // AppletInsert 员工添加运单
- func (e *Waybill) AppletInsert(c *dto.WaybillInsertReq, p *actions.DataPermission) error {
- var err error
- var data model.Waybill
- tx := e.Orm.Begin()
- defer func() {
- if err != nil {
- tx.Rollback()
- } else {
- tx.Commit()
- }
- }()
- var userModel = model.SysUser{}
- // 查询运单是否存在
- err = tx.Scopes(actions.Permission(userModel.TableName(), p)).
- First(&userModel, p.UserId).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- if errors.Is(err, gorm.ErrRecordNotFound) {
- return global.GetNotFoundErr
- }
- return global.CreateFailedErr
- }
- if (userModel.Type != model.SysUserTypeDriver && userModel.Type != model.SysUserTypeWarehouse) && userModel.UserType != "customer" {
- err = errors.New("无权添加!")
- return err
- }
- var status = model.WaybillStatusWaitDelivery
- var coolerBox = model.CoolerBox{}
- // 查询保温箱信息
- err = tx.Scopes(actions.Permission(coolerBox.TableName(), p)).
- First(&coolerBox, c.CoolerBoxId).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return errors.New("获取车辆信息失败")
- }
- var no string
- for {
- no = time.Now().Format("200601021504") + utils.GetRandString(6, "0123456789", 0)
- var j int64
- err = e.Orm.Model(&data).Where("waybill_no = ?", no).Count(&j).Error
- if err != nil {
- continue
- }
- if j == 0 {
- break
- }
- }
- // 添加运单
- data.DeptId = p.DeptId
- data.CreateBy = p.UserId
- data.WaybillNo = no
- c.Generate(&data)
- data.Status = status
- err = tx.Create(&data).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return global.CreateFailedErr
- }
- c.Id = data.Id
- // 添加物流
- Logistics := model.WaybillLogistics{
- WaybillNo: data.WaybillNo,
- Status: data.Status,
- CoolerBoxId: coolerBox.Id,
- UserId: p.UserId,
- ControlBy: model2.ControlBy{
- CreateBy: p.UserId,
- },
- DeptBy: model2.DeptBy{
- DeptId: p.DeptId,
- },
- }
- err = tx.Create(&Logistics).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return errors.New(fmt.Sprintf("保存运单物流信息失败:%s", err))
- }
- return nil
- }
- // Update 修改Waybill对象
- func (e *Waybill) Update(c *dto.WaybillUpdateReq, p *actions.DataPermission) error {
- var err error
- tx := e.Orm.Begin()
- defer func() {
- if err != nil {
- tx.Rollback()
- } else {
- tx.Commit()
- }
- }()
- var waybillModel = model.Waybill{}
- // 查询运单是否存在
- err = e.Orm.Scopes(actions.Permission(waybillModel.TableName(), p)).
- First(&waybillModel, c.GetId()).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- if errors.Is(err, gorm.ErrRecordNotFound) {
- return global.UpdateNotFoundOrNoPermissionErr
- }
- return global.UpdateFailedErr
- }
- c.Generate(&waybillModel)
- err = tx.Save(&waybillModel).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return global.UpdateFailedErr
- }
- c.Id = waybillModel.Id
- return nil
- }
- func (e *Waybill) UpdateStatus(c *dto.WaybillUpdateStatusReq, p *actions.DataPermission) error {
- var err error
- tx := e.Orm.Begin()
- defer func() {
- if err != nil {
- tx.Rollback()
- } else {
- tx.Commit()
- }
- }()
- var waybillModel = model.Waybill{}
- // 查询运单是否存在
- err = e.Orm.Scopes(actions.Permission(waybillModel.TableName(), p)).
- First(&waybillModel, c.GetId()).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- if errors.Is(err, gorm.ErrRecordNotFound) {
- return global.UpdateNotFoundOrNoPermissionErr
- }
- return global.UpdateFailedErr
- }
- c.Generate(&waybillModel)
- err = tx.Save(&waybillModel).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return global.UpdateFailedErr
- }
- c.Id = waybillModel.Id
- return nil
- }
- func (e *Waybill) Delivery(c *dto.WaybillDeliveryReq, p *actions.DataPermission) error {
- var err error
- tx := e.Orm.Begin()
- defer func() {
- if err != nil {
- tx.Rollback()
- } else {
- tx.Commit()
- }
- }()
- var coolerBox = model.CoolerBox{}
- // 查询保温箱信息
- err = tx.Scopes(actions.Permission(coolerBox.TableName(), p)).
- First(&coolerBox, c.CoolerBoxId).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return errors.New("获取保温箱信息失败")
- }
- for _, id := range c.WaybillIds {
- var waybillModel = model.Waybill{}
- // 查询运单是否存在
- err = tx.Scopes(actions.Permission(waybillModel.TableName(), p)).
- First(&waybillModel, id).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- if errors.Is(err, gorm.ErrRecordNotFound) {
- return global.UpdateNotFoundOrNoPermissionErr
- }
- return global.UpdateFailedErr
- }
- if waybillModel.Status == model.WaybillStatusWaitDelivery || (waybillModel.Status == model.WaybillStatusInDelivery && waybillModel.CoolerBoxId != c.CoolerBoxId) {
- waybillModel.Status = model.WaybillStatusInDelivery
- waybillModel.CoolerBoxId = c.CoolerBoxId
- waybillModel.DeliveryTime = model2.Time(time.Now())
- err = tx.Save(&waybillModel).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return global.UpdateFailedErr
- }
- // 查询任务
- var logistics model.WaybillLogistics
- err = tx.Model(&logistics).Where("waybill_no = ? and status = ?", waybillModel.WaybillNo, model.WaybillStatusInDelivery).
- Last(&logistics).Error
- if err != nil {
- if errors.Is(err, gorm.ErrRecordNotFound) {
- // 添加物流
- logisticsObj := model.WaybillLogistics{
- WaybillNo: waybillModel.WaybillNo,
- Status: waybillModel.Status,
- CoolerBoxId: coolerBox.Id,
- ControlBy: model2.ControlBy{
- CreateBy: p.UserId,
- },
- DeptBy: model2.DeptBy{
- DeptId: p.DeptId,
- },
- }
- err = tx.Create(&logisticsObj).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return errors.New(fmt.Sprintf("保存运单物流信息失败:%s", err))
- }
- } else {
- e.Log.Errorf("db error: %s", err)
- return errors.New(fmt.Sprintf("保存运单物流信息失败:%s", err))
- }
- }
- logistics.CoolerBoxId = coolerBox.Id
- err = tx.Save(&logistics).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return errors.New(fmt.Sprintf("保存运单物流信息失败:%s", err))
- }
- // 查询任务
- var task model.WaybillTask
- err = tx.Model(&task).Where("waybill_no = ? ", waybillModel.WaybillNo).
- Last(&task).Error
- if err != nil {
- if errors.Is(err, gorm.ErrRecordNotFound) {
- // 添加任务
- taskObj := model.WaybillTask{
- WaybillNo: waybillModel.WaybillNo,
- CoolerBoxId: coolerBox.Id,
- UserId: p.UserId,
- Sn: coolerBox.Sn,
- StartTime: model2.Time(time.Now()),
- ControlBy: model2.ControlBy{
- CreateBy: p.UserId,
- },
- DeptBy: model2.DeptBy{
- DeptId: p.DeptId,
- },
- }
- err = tx.Create(&taskObj).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return errors.New(fmt.Sprintf("保存运单任务信息失败:%s", err))
- }
- } else {
- e.Log.Errorf("db error: %s", err)
- return errors.New(fmt.Sprintf("查询运单任务信息失败:%s", err))
- }
- }
- task.StartTime = model2.Time(time.Now())
- task.UpdateBy = p.UserId
- task.CoolerBoxId = coolerBox.Id
- task.Sn = coolerBox.Sn
- err = tx.Save(&task).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return errors.New(fmt.Sprintf("保存运单任务信息失败:%s", err))
- }
- //if logistics.Id == 0 {
- // ss := sms.NewSMS(conf.ExtConfig.SubMail.Appid, conf.ExtConfig.SubMail.Signature)
- // res, err1 := ss.SmsXSend(waybillModel.ConsigneeAddressPhone, lib.AesEncryptCBC(waybillModel.WaybillNo, lib.AesKey))
- // if err1 != nil || res.Status != sms.SUCCESS {
- // e.Log.Errorf("发送短信验证码出现异常", zap.Any("res", res), zap.Error(err1))
- // err = errors.New("验证吗发送失败,请重试")
- // return err
- // }
- //}
- ss := sms.NewSMS(conf.ExtConfig.SubMail.Appid, conf.ExtConfig.SubMail.Signature)
- addr := conf.ExtConfig.Applet.WaybillUrl + lib.AesEncryptCBC(waybillModel.WaybillNo, lib.AesKey)
- res, err1 := ss.SmsXSend(waybillModel.ConsigneeAddressPhone, addr)
- if err1 != nil || res.Status != sms.SUCCESS {
- e.Log.Errorf("发送短信验证码出现异常", zap.Any("res", res), zap.Error(err1))
- err = errors.New("验证吗发送失败,请重试")
- return err
- }
- waybillModel.SendLog = model.WaybillSendLog{
- Phone: waybillModel.ConsigneeAddressPhone,
- Content: "【冷链送药平台】您的订单正在派送中,点击查看详情:" + addr,
- }
- }
- }
- return nil
- }
- // Remove 删除Waybill
- func (e *Waybill) Remove(c *dto.WaybillDeleteReq, p *actions.DataPermission) error {
- var err error
- tx := e.Orm.Begin()
- defer func() {
- if err != nil {
- tx.Rollback()
- } else {
- tx.Commit()
- }
- }()
- var waybillModel model.Waybill
- // 查询运单是否存在
- err = e.Orm.Scopes(actions.Permission(waybillModel.TableName(), p)).
- First(&waybillModel, c.GetId()).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- if errors.Is(err, gorm.ErrRecordNotFound) {
- return global.DeleteNotFoundOrNoPermissionErr
- }
- return global.DeleteFailedErr
- }
- if waybillModel.Status != model.WaybillStatusWaitDelivery {
- return errors.New(fmt.Sprintf("运单状态为%s,禁止删除", model.WaybillStatusMap[waybillModel.Status]))
- }
- db := tx.Delete(&waybillModel)
- if err = db.Error; err != nil {
- e.Log.Errorf("db error: %s", err)
- return global.DeleteFailedErr
- }
- if db.RowsAffected == 0 {
- return global.DeleteNotFoundOrNoPermissionErr
- }
- return nil
- }
- func (e *Waybill) Receipt(c *dto.WaybillReceiptReq, p *actions.DataPermission) error {
- var err error
- tx := e.Orm.Begin()
- defer func() {
- if err != nil {
- tx.Rollback()
- } else {
- tx.Commit()
- }
- }()
- var waybillModel = model.Waybill{}
- // 查询运单是否存在
- err = tx.Scopes(actions.Permission(waybillModel.TableName(), p)).
- Where("waybill_no = ?", c.WaybillNo).
- First(&waybillModel).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- if errors.Is(err, gorm.ErrRecordNotFound) {
- return errors.New(fmt.Sprintf("运单号%s不存在", c.WaybillNo))
- }
- return errors.New(fmt.Sprintf("运单号%s查询失败", c.WaybillNo))
- }
- // 查询保温箱信息
- var coolerBox = model.CoolerBox{}
- err = tx.Scopes(actions.Permission(coolerBox.TableName(), p)).
- First(&coolerBox, waybillModel.CoolerBoxId).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return errors.New("获取保温箱信息失败")
- }
- if waybillModel.Status == model.WaybillStatusWaitDelivery {
- err = errors.New(fmt.Sprintf("运单状态为%s,禁止操作", model.WaybillStatusMap[waybillModel.Status]))
- return err
- }
- if waybillModel.Status == model.WaybillStatusReceipt || waybillModel.Status == model.WaybillStatusRejection {
- return nil
- }
- waybillModel.Status = c.Status
- waybillModel.RejectionReason = c.RejectionReason
- waybillModel.ReceiptTime = model2.Time(time.Now())
- waybillModel.ReceiptImg = c.ReceiptImg
- err = tx.Save(&waybillModel).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return errors.New(fmt.Sprintf("保存运单信息失败:%s", err))
- }
- var lng, lat string
- lng, lat, err = e.GetSite(p.DeptId, coolerBox.Sn, waybillModel.ReceiptTime.String())
- if err != nil {
- e.Log.Errorf("获取定位信息失败: %s", err)
- return err
- }
- // 查询任务
- var task model.WaybillTask
- err = tx.Model(&task).Where("waybill_no = ? and cooler_box_id = ?", c.WaybillNo, coolerBox.Id).
- Last(&task).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return errors.New(fmt.Sprintf("查询运单任务信息失败:%s", err))
- }
- // 未下车 直接点签收
- if time.Time(task.EndTime).IsZero() {
- task.EndTime = model2.Time(time.Now())
- task.UpdateBy = p.UserId
- err = tx.Save(&task).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return errors.New(fmt.Sprintf("保存运单任务信息失败:%s", err))
- }
- }
- // 添加签收记录
- Logistics := model.WaybillLogistics{
- WaybillNo: c.WaybillNo,
- Status: c.Status,
- CoolerBoxId: coolerBox.Id,
- UserId: p.UserId,
- Lng: lng,
- Lat: lat,
- ControlBy: model2.ControlBy{
- CreateBy: p.UserId,
- },
- DeptBy: model2.DeptBy{
- DeptId: p.DeptId,
- },
- ModelTime: model2.ModelTime{
- CreatedAt: waybillModel.ReceiptTime,
- },
- }
- err = tx.Create(&Logistics).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return errors.New(fmt.Sprintf("保存运单物流信息失败:%s", err))
- }
- return nil
- }
- // 获取入库 出库 上车 下车 定位信息
- func (e *Waybill) GetSite(companyId int, sn string, time string) (lng, lat string, err error) {
- // 获取公司秘钥
- var company model.SysDept
- company, err = model.GetCompanyById(companyId)
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return lng, lat, model.GetCompanyKeyErr
- }
- // 获取传感器信息
- var deviceSensorList = []nats_server.DeviceSensor_R{}
- var count int64
- deviceSensorList, count, err = nats_server.Cold_CompanyDeviceSensor_List_ByKey(sn, company.ColdKey)
- if err != nil || count == 0 {
- err = errors.New("查询设备定位信息失败")
- return lng, lat, err
- }
- var deviceData nats_server.DeviceData_
- deviceData, err = nats_server.Cold_ReadDeviceDataBy_T_snid_T_time(deviceSensorList[0].T_sn, deviceSensorList[0].T_id, time)
- if err != nil {
- err = errors.New("查询设备定位信息失败")
- return lng, lat, err
- }
- if len(deviceData.T_site) > 0 {
- site := strings.Split(deviceSensorList[0].T_DeviceSensorData.T_site, ",")
- if len(site) == 2 {
- lng = site[0]
- lat = site[1]
- }
- }
- return lng, lat, nil
- }
- // 获取今日运单数 未派单 未装车 未入库 运送中
- // 本月运单总数 上月运单总数 本年运单总数 上年运单总数
- func (e *Waybill) GetBasicsStats(c *dto.WaybillStatsReq, p *actions.DataPermission) dto.WaybillStatsRes {
- var res dto.WaybillStatsRes
- var data model.Waybill
- type DateCount struct {
- Date string
- Count int64
- }
- yearCount := make([]DateCount, 0)
- monthCount := make([]DateCount, 0)
- now := time.Now()
- todayStartTime := now.Format("2006-01-02") + " 00:00:00"
- todayEndTime := now.Format("2006-01-02") + " 23:59:59"
- // 获取上个月第一天
- firstDayOfLastMonth := time.Date(now.Year(), now.Month()-1, 1, 0, 0, 0, 0, now.Location())
- // 获取去年的第一天
- firstDayOfLastYear := time.Date(now.Year()-1, time.January, 1, 0, 0, 0, 0, now.Location())
- monthStartTime := firstDayOfLastMonth.Format("2006-01-02") + " 00:00:00"
- yearStartTime := firstDayOfLastYear.Format("2006-01-02") + " 00:00:00"
- // 今日总运单数
- e.Orm.Model(&data).Scopes(actions.Permission(data.TableName(), p)).Where("order_time between ? and ?", todayStartTime, todayEndTime).Count(&res.TodayNum)
- // 待派单
- e.Orm.Model(&data).Scopes(actions.Permission(data.TableName(), p)).Where("status = ?", model.WaybillStatusWaitDelivery).Count(&res.WaitDeliveryNum)
- // 配送中
- e.Orm.Model(&data).Scopes(actions.Permission(data.TableName(), p)).Where("status = ?", model.WaybillStatusInDelivery).Count(&res.InDeliveryNum)
- // 已送达
- e.Orm.Model(&data).Scopes(actions.Permission(data.TableName(), p)).Where("status = ?", model.WaybillStatusReceipt).Count(&res.ReceiptNum)
- // 已取消
- e.Orm.Model(&data).Scopes(actions.Permission(data.TableName(), p)).Where("status = ?", model.WaybillStatusRejection).Count(&res.RejectionNum)
- // 获取本月,上月数据
- e.Orm.Model(&data).Select("date_format(order_time,'%Y%m') date,count(1) as count ").Scopes(actions.Permission(data.TableName(), p)).
- Where("order_time between ? and ?", monthStartTime, now).Group("date").Find(&monthCount)
- for _, month := range monthCount {
- if month.Date == now.Format("200601") {
- res.ThisMonthNum = month.Count
- }
- if month.Date == firstDayOfLastMonth.Format("200601") {
- res.LastMonthNum = month.Count
- }
- }
- // 获取本年,上年数据
- e.Orm.Model(&data).Select("date_format(order_time,'%Y') date,count(1) as count ").Scopes(actions.Permission(data.TableName(), p)).
- Where("order_time between ? and ?", yearStartTime, now).Group("date").Find(&yearCount)
- for _, month := range yearCount {
- if month.Date == now.Format("2006") {
- res.ThisYearNum = month.Count
- }
- if month.Date == firstDayOfLastYear.Format("2006") {
- res.LastYearNum = month.Count
- }
- }
- if c.Type == "year" {
- // 获取上个月第一天
- year, _ := strconv.Atoi(c.Date)
- firstDayOfyear := time.Date(year, 1, 1, 0, 0, 0, 0, now.Location())
- lastDayOfyear := time.Date(year, 12, 31, 23, 59, 59, 0, now.Location())
- // 年度数据统计
- e.Orm.Model(&data).Select("date_format(order_time,'%Y-%m') date,count(1) as num ").Scopes(actions.Permission(data.TableName(), p)).
- Where("order_time between ? and ?", firstDayOfyear, lastDayOfyear).Group("date").Find(&res.Stats)
- }
- if c.Type == "month" {
- // 获取上个月第一天
- month, _ := time.Parse("2006-01", c.Date)
- firstDayOfMonth := time.Date(month.Year(), month.Month(), 1, 0, 0, 0, 0, now.Location())
- lastDayOfMonth := time.Date(month.Year(), month.Month()+1, 1, 23, 59, 59, 0, now.Location()).Add(-time.Hour * 24)
- e.Orm.Model(&data).Select("date_format(order_time,'%Y-%m-%d') date,count(1) as num ").Scopes(actions.Permission(data.TableName(), p)).
- Where("order_time between ? and ?", firstDayOfMonth, lastDayOfMonth).Group("date").Find(&res.Stats)
- }
- return res
- }
- // 获取运单所有温湿度素具
- func (e *Waybill) GetAllData(c *dto.WaybillGetByWaybillNoReq) ([]nats_server.DeviceData_R, []WaybillPDF, error) {
- var err error
- var data model.WaybillTask
- var waybill model.Waybill
- var taskList []model.WaybillTask
- var waybillPDF []WaybillPDF
- dataList := make([]nats_server.DeviceData_R, 0)
- err = e.Orm.Model(&waybill).Where("waybill_no = ?", c.WaybillNo).First(&waybill).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return dataList, waybillPDF, errors.New("获取运单信息失败")
- }
- // 未签收,不返回数据
- if waybill.Status != model.WaybillStatusReceipt {
- return dataList, waybillPDF, nil
- }
- // 获取公司秘钥
- var company model.SysDept
- company, err = model.GetCompanyById(waybill.DeptId)
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return dataList, waybillPDF, model.GetCompanyKeyErr
- }
- err = e.Orm.Model(&data).
- Where("waybill_no = ?", c.WaybillNo).
- Order("id desc").
- Find(&taskList).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- return dataList, waybillPDF, global.GetFailedErr
- }
- // 获取最后一个任务id
- var lastWaybillTask model.WaybillTask
- err = e.Orm.Model(&lastWaybillTask).Where("waybill_no = ?", c.WaybillNo).Last(&lastWaybillTask).Error
- if err != nil {
- e.Log.Errorf("db error: %s", err)
- err = errors.New("获取运单信息错误!")
- return dataList, waybillPDF, err
- }
- // 创建名称到权重的映射
- orderMap := make(map[string]int)
- for i, v := range taskList {
- orderMap[v.Sn] = i
- }
- for i := 0; i < len(taskList); i++ {
- // 获取传感器信息
- deviceSensorList, _, _ := nats_server.Cold_CompanyDeviceSensor_List_ByKey(taskList[i].Sn, company.ColdKey)
- var T_snid string
- var list []nats_server.DeviceData_R
- for _, r := range deviceSensorList {
- T_snid += fmt.Sprintf("%s,%d|", r.T_sn, r.T_id)
- }
- var count int64
- list, count, err = nats_server.Cold_ReadDeviceDataListBy_T_snid(T_snid, taskList[i].StartTime.String(), taskList[i].EndTime.String(), 0, 9999)
- if err != nil {
- e.Log.Errorf("nats 获取温湿度信息失败: %s", err)
- return dataList, waybillPDF, global.GetFailedErr
- }
- firstMap := map[int]nats_server.DeviceData_R{}
- lastMap := map[int]nats_server.DeviceData_R{}
- if count > 0 {
- for _, v := range deviceSensorList {
- for j := 0; j < len(list); j++ {
- if v.T_id == list[j].T_id {
- if list[j].T_time != taskList[i].StartTime.String() {
- firstData := list[j]
- firstData.T_time = taskList[i].StartTime.String()
- firstMap[v.T_id] = firstData
- count += 1
- }
- break
- }
- }
- if waybill.Status == model.WaybillStatusReceipt {
- for k := len(list) - 1; k >= 0; k-- {
- if v.T_id == list[k].T_id {
- if taskList[i].Id == lastWaybillTask.Id && list[k].T_time != taskList[i].EndTime.String() && !time.Time(taskList[i].EndTime).IsZero() {
- lastData := list[k]
- lastData.T_time = taskList[i].EndTime.String()
- lastMap[v.T_id] = lastData
- count += 1
- }
- break
- }
- }
- }
- }
- }
- for _, v := range firstMap {
- list = append(list, v)
- }
- for _, v := range lastMap {
- list = append(list, v)
- }
- sort.Slice(list, func(x, y int) bool {
- if list[x].T_time == list[y].T_time {
- // 如果时间相同,则按预设顺序排序
- return orderMap[list[x].T_sn] < orderMap[list[y].T_sn]
- }
- return list[x].T_time > list[y].T_time
- })
- dataList = append(dataList, list...)
- waybillPDF = append(waybillPDF, WaybillPDF{
- Data: list,
- DeviceSensorList: deviceSensorList,
- Task: taskList[i],
- })
- }
- sort.Slice(dataList, func(i, j int) bool {
- if dataList[i].T_time == dataList[j].T_time {
- // 如果时间相同,则按预设顺序排序
- return orderMap[dataList[i].T_sn] < orderMap[dataList[j].T_sn]
- }
- return dataList[i].T_time < dataList[j].T_time
- })
- return dataList, waybillPDF, nil
- }
- type WaybillPDF struct {
- Data []nats_server.DeviceData_R `json:"data"`
- DeviceSensorList []nats_server.DeviceSensor_R `json:"deviceSensorList"`
- Task model.WaybillTask `json:"task"`
- }
|