13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
# File 'lib/redmine_extensions/core_ext/date_range.rb', line 13
def self.get_date_range(period_type = '1', period = 'all', from = '', to = '')
@free_period = false
start_of_week = self.first_wday
ret = {:from => nil, :to => nil}
if period_type == '1' || (period_type.nil? && !period.nil?)
case period
when 'all', 'is_null', 'is_not_null'
when 'today'
ret[:from] = ret[:to] = User.current.today
when 'yesterday'
ret[:from] = ret[:to] = User.current.today - 1
when 'current_week'
ret[:from] = User.current.today - (User.current.today.cwday - start_of_week)%7
ret[:to] = ret[:from] + 6
when 'last_week'
ret[:from] = User.current.today - 7 - (User.current.today.cwday - start_of_week)%7
ret[:to] = ret[:from] + 6
when 'last_2_weeks'
ret[:from] = User.current.today - 14 - (User.current.today.cwday - start_of_week)%7
ret[:to] = ret[:from] + 13
when '7_days'
ret[:from] = User.current.today - 7
ret[:to] = User.current.today
when 'current_month'
ret[:from] = Date.civil(User.current.today.year, User.current.today.month, 1)
ret[:to] = (ret[:from] >> 1) - 1
when 'last30_next90'
ret[:from] = User.current.today - 30
ret[:to] = User.current.today + 90
when 'last_month'
ret[:from] = Date.civil(User.current.today.year, User.current.today.month, 1) << 1
ret[:to] = (ret[:from] >> 1) - 1
when '30_days'
ret[:from] = User.current.today - 30
ret[:to] = User.current.today
when '90_days'
ret[:from] = User.current.today - 90
ret[:to] = User.current.today
when 'current_year'
ret[:from] = Date.civil(User.current.today.year, 1, 1)
ret[:to] = Date.civil(User.current.today.year, 12, 31)
when 'last_year'
ret[:from] = Date.civil(User.current.today.year - 1, 1, 1)
ret[:to] = Date.civil(User.current.today.year - 1, 12, 31)
when 'older_than_14_days'
ret[:from] = nil
ret[:to] = User.current.today - 14
when 'older_than_15_days'
ret[:from] = nil
ret[:to] = User.current.today - 15
when 'older_than_31_days'
ret[:from] = nil
ret[:to] = User.current.today - 31
when 'tomorrow'
ret[:from] = ret[:to] = Date.tomorrow
when 'next_week'
ret[:from] = User.current.today + 7 - (User.current.today.cwday - start_of_week)%7
ret[:to] = ret[:from] + 6
when 'next_5_days'
ret[:from] = User.current.today
ret[:to] = User.current.today + 5
when 'next_7_days'
ret[:from] = User.current.today
ret[:to] = User.current.today + 7
when 'next_10_days'
ret[:from] = User.current.today
ret[:to] = User.current.today + 10
when 'next_14_days'
ret[:from] = User.current.today
ret[:to] = User.current.today + 14
when 'next_15_days'
ret[:from] = User.current.today
ret[:to] = User.current.today + 15
when 'next_30_days'
ret[:from] = User.current.today
ret[:to] = User.current.today + 30
when 'next_90_days'
ret[:from] = User.current.today
ret[:to] = User.current.today + 90
when 'next_month'
ret[:from] = Date.civil(User.current.today.year, User.current.today.month, 1) >> 1
ret[:to] = (ret[:from] >> 1) - 1
when 'next_year'
ret[:from] = Date.civil(User.current.today.year + 1, 1, 1)
ret[:to] = Date.civil(User.current.today.year + 1, 12, 31)
when 'to_today'
ret[:from] = nil
ret[:to] = User.current.today
when 'from_tomorrow'
ret[:from] = Date.tomorrow
ret[:to] = nil
when 'after_due_date'
ret[:from] = nil
ret[:to] = Date.yesterday
when 'last_fiscal_year'
ret[:from] = EasySetting.beginning_of_fiscal_year(User.current.today - 1.year)
ret[:to] = EasySetting.end_of_fiscal_year(User.current.today - 1.year)
when 'current_fiscal_year'
ret[:from] = EasySetting.beginning_of_fiscal_year
ret[:to] = EasySetting.end_of_fiscal_year
when 'next_fiscal_year'
ret[:from] = EasySetting.beginning_of_fiscal_year(User.current.today + 1.year)
ret[:to] = EasySetting.end_of_fiscal_year(User.current.today + 1.year)
else
if respond_to?("hook_#{period}")
ret = send("hook_#{period}")
else
Rails.logger.warn "You must add '#{period}' to 'utils/dateutils' !" if Rails.logger
end
end
elsif period_type == '2' || (period_type.nil? && (!from.nil? || !to.nil?))
begin
ret[:from] = from.to_s.to_date unless from.blank?
rescue
end
begin
ret[:to] = to.to_s.to_date unless to.blank?
rescue
end
@free_period = true
end
ret[:from], ret[:to] = ret[:to], ret[:from] if ret[:from] && ret[:to] && ret[:from] > ret[:to]
ret
end
|