123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package dashboard
- import (
- "context"
- "fmt"
- "time"
- "wechat-api/internal/svc"
- "wechat-api/internal/types"
- "github.com/zeromicro/go-zero/core/logx"
- )
- type GetChartsLogic struct {
- logx.Logger
- ctx context.Context
- svcCtx *svc.ServiceContext
- }
- func NewGetChartsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetChartsLogic {
- return &GetChartsLogic{
- Logger: logx.WithContext(ctx),
- ctx: ctx,
- svcCtx: svcCtx}
- }
- func (l *GetChartsLogic) GetCharts(req *types.ChartsReq) (resp *types.ChartsResp, err error) {
- // 获取组织id
- var organizationId uint64 = 0
- isAdmin := l.ctx.Value("isAdmin").(bool)
- if isAdmin && req.OrganizationId != nil && *req.OrganizationId != 0 {
- organizationId = *req.OrganizationId
- } else {
- organizationId = l.ctx.Value("organizationId").(uint64)
- }
- // 解析起始和截止时间
- layouts := []string{
- "2006-01", // 对应 "2024-01"
- "2006-01-02", // 对应 "2024-01-01"
- }
- var layoutsType int
- var startTime time.Time
- for i, layout := range layouts {
- startTime, err = time.Parse(layout, *req.StartDate)
- if err == nil {
- break
- }
- layoutsType = i
- }
- if err != nil {
- fmt.Println("解析开始时间失败:", err)
- return
- }
- var endTime time.Time
- for _, layout := range layouts {
- endTime, err = time.Parse(layout, *req.EndDate)
- if err == nil {
- break
- }
- }
- if err != nil {
- fmt.Println("解析结束时间失败:", err)
- return
- }
- // 判断截止日期是否包含当前日
- var isCurrentDay bool
- now := time.Now()
- if layoutsType == 0 {
- isCurrentDay = endTime.Year() == now.Year() && endTime.Month() == now.Month()
- } else {
- isCurrentDay = endTime.Year() == now.Year() && endTime.Month() == now.Month() && endTime.Day() == now.Day()
- }
- if isCurrentDay && layoutsType == 1 && req.StartDate == req.EndDate {
- //
- }
- return
- }
|