File size: 11,988 Bytes
036e133
 
 
0c66afb
 
 
 
 
 
 
 
 
036e133
0c66afb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
import datetime
import calendar
from dateutil.relativedelta import relativedelta

def time2date(input):
    chu_ky_thoi_gian = input['CHU KỲ THỜI GIAN']
    thu = input['THỨ']
    ngay = input['NGÀY']
    tuan = input['TUẦN']
    thang = input['THÁNG']
    quy = input['QUÝ']
    nam = input['NĂM']
    
    current_date = datetime.date.today()
    output = 'error'
    if chu_ky_thoi_gian=='ngày':
# hôm kia
        if ngay=='hôm kia':
            output = current_date - datetime.timedelta(days=2)
# hôm qua
        elif ngay=='hôm qua':
            output = current_date - datetime.timedelta(days=1)
# hôm nay
        elif ngay=='hôm nay':
            output = current_date
# ngày mai
        elif ngay=='mai':
            output = current_date + datetime.timedelta(days=1)
# ngày kia
        elif ngay=='kia':
            output = current_date + datetime.timedelta(days=2)
# đầu
        elif ngay=='đầu':
            if thang=='trước':
                needed_thang = 12 if current_date.month==1 else current_date.month-1
                needed_nam = current_date.year-1 if current_date.month==1 else current_date.year
                output = datetime.date(
                    needed_nam,
                    needed_thang,
                    1
                )
            elif thang=='này':
                needed_thang = current_date.month
                needed_nam = current_date.year
                output = datetime.date(
                    needed_nam,
                    needed_thang,
                    1
                )
            elif thang=='sau':
                needed_thang = 1 if current_date.month==12 else current_date.month+1
                needed_nam = current_date.year+1 if current_date.month==12 else current_date.year
                output = datetime.date(
                    needed_nam,
                    needed_thang,
                    1
                )
            else:
                print('ngày đầu')
                output = current_date
# cuối
        elif ngay=='cuối':
            if thang=='trước':
                needed_thang = 12 if current_date.month==1 else current_date.month-1
                needed_nam = current_date.year-1 if current_date.month==1 else current_date.year
                output = datetime.date(
                    needed_nam,
                    needed_thang,
                    calendar.monthrange(needed_nam, needed_thang)[1]
                )
            elif thang=='này':
                needed_thang = current_date.month
                needed_nam = current_date.year
                output = datetime.date(
                    needed_nam,
                    needed_thang,
                    calendar.monthrange(needed_nam, needed_thang)[1]
                )
            elif thang=='sau':
                needed_thang = 1 if current_date.month==12 else current_date.month+1
                needed_nam = current_date.year+1 if current_date.month==12 else current_date.year
                output = datetime.date(
                    needed_nam,
                    needed_thang,
                    calendar.monthrange(needed_nam, needed_thang)[1]
                )
            else:
                print('ngày cuối')
                output = current_date
# xxx
        elif ngay.isdigit():
            ngay = int(ngay)
            if thang.isdigit():
                thang = int(thang)
                if nam.isdigit():
                    nam = int(nam)
                    try:
                        output = datetime.date(nam, thang, ngay)
                    except ValueError:
                        print("ngày xxx tháng yyy nam xxx")
                        output = current_date
                else:
                    try:
                        output = datetime.date(current_date.year, thang, ngay)
                    except ValueError:
                        print("ngày xxx tháng yyy nam xxx")
                        output = current_date
            else:
                try:
                    output = datetime.date(current_date.year, current_date.month, ngay)
                except ValueError:
                    print('ngày xxx')
                    output = current_date
        elif ngay=='khác':
# thứ hai tuần sau
# thứ hai tuần này
# thứ hai tuần trước
# thứ hai tuần gần nhất
# thứ hai
            if thu != "khác":
                if tuan=='khác' or tuan=='gần nhất':
                    current_thu = current_date.weekday()+2
                    input_thu = 8 if thu=='chủ nhật' else int(thu)
                    if input_thu < current_thu:
                        daydelta = current_thu - input_thu
                        output = current_date - datetime.timedelta(days=daydelta)
                    elif input_thu == current_thu:
                        output = current_date - datetime.timedelta(days=7)
                    else:
                        daydelta = input_thu - current_thu
                        output = current_date - datetime.timedelta(days=7-daydelta)
                elif tuan=='này':
                    current_thu = current_date.weekday()+2
                    input_thu = 8 if thu=='chủ nhật' else int(thu)
                    if input_thu < current_thu:
                        daydelta = current_thu - input_thu
                        output = current_date - datetime.timedelta(days=daydelta)
                    elif input_thu == current_thu:
                        output = current_date
                    else:
                        daydelta = input_thu - current_thu
                        output = current_date + datetime.timedelta(days=daydelta)
                elif tuan=='trước':
                    current_thu = current_date.weekday()+2
                    input_thu = 8 if thu=='chủ nhật' else int(thu)
                    if input_thu < current_thu:
                        daydelta = current_thu - input_thu + 7
                        output = current_date - datetime.timedelta(days=daydelta)
                    elif input_thu == current_thu:
                        output = current_date - datetime.timedelta(days=7)
                    else:
                        daydelta = input_thu - current_thu
                        output = current_date - datetime.timedelta(days=7-daydelta)
                elif tuan=='sau':
                    current_thu = current_date.weekday()+2
                    input_thu = 8 if thu=='chủ nhật' else int(thu)
                    if input_thu < current_thu:
                        daydelta = 7 - (current_thu - input_thu)
                        output = current_date + datetime.timedelta(days=daydelta)
                    elif input_thu == current_thu:
                        output = current_date + datetime.timedelta(days=7)
                    else:
                        daydelta = input_thu - current_thu
                        output = current_date + datetime.timedelta(days=7+daydelta)
            elif thu=='khác':
                current_thu = current_date.weekday()
                if tuan=='trước' or tuan=='gần nhất': # ngày cuối tuần
                    daydelta = current_thu+1
                    output = current_date - datetime.timedelta(days=daydelta)
                elif tuan=='này':
                    daydelta = 6 - current_thu
                    if daydelta > 0:
                        output = current_date + datetime.timedelta(days=daydelta)
                    else:
                        output = current_date
                elif tuan=='sau':
                    daydelta = 13 - current_thu
                    output = current_date + datetime.timedelta(days=daydelta)
                else:
                    print('ngày khác thứ khác tuần khác')
                    output = current_date
        else: # return default for ngay
            output = current_date
            print('Error chu ky thoi gian: ngay')

    elif chu_ky_thoi_gian=='tháng': # ngày cuối tháng
        if thu != 'khác' or ngay != 'khác' or tuan != 'khác':
            print('Invalid')
            needed_thang = 12 if current_date.month==1 else current_date.month-1
            needed_nam = current_date.year-1 if current_date.month==1 else current_date.year
            output = datetime.date(
                needed_nam,
                needed_thang,
                calendar.monthrange(needed_nam, needed_thang)[1]
            )

        elif thang=='trước':
            needed_thang = 12 if current_date.month==1 else current_date.month-1
            needed_nam = current_date.year-1 if current_date.month==1 else current_date.year
            output = datetime.date(
                needed_nam,
                needed_thang,
                calendar.monthrange(needed_nam, needed_thang)[1]
            )
        elif thang=='này':
            needed_thang = current_date.month
            needed_nam = current_date.year
            output = datetime.date(
                needed_nam,
                needed_thang,
                calendar.monthrange(needed_nam, needed_thang)[1]
            )
        elif thang=='sau':
            needed_thang = 1 if current_date.month==12 else current_date.month+1
            needed_nam = current_date.year+1 if current_date.month==12 else current_date.year
            output = datetime.date(
                needed_nam,
                needed_thang,
                calendar.monthrange(needed_nam, needed_thang)[1]
            )
        elif thang.isdigit():
            thang = int(thang)
            if nam.isdigit():
                nam = int(nam)
                output = datetime.date(
                    int(nam),
                    int(thang),
                    calendar.monthrange(int(nam), int(thang))[1]
                )
            else:
                if thang > current_date.month:
                    output = datetime.date(
                        current_date.year-1,
                        thang,
                        calendar.monthrange(current_date.year-1, thang)[1]
                    )
                else:
                    output = datetime.date(
                        current_date.year,
                        thang,
                        calendar.monthrange(current_date.year, thang)[1]
                    )
        elif thang=='khác':
            needed_thang = 12 if current_date.month==1 else current_date.month-1
            needed_nam = current_date.year-1 if current_date.month==1 else current_date.year
            output = datetime.date(
                needed_nam,
                needed_thang,
                calendar.monthrange(needed_nam, needed_thang)[1]
            )
        else: # ngay cuoi thang truoc
            needed_thang = 12 if current_date.month==1 else current_date.month-1
            needed_nam = current_date.year-1 if current_date.month==1 else current_date.year
            output = datetime.date(
                needed_nam,
                needed_thang,
                calendar.monthrange(needed_nam, needed_thang)[1]
            )
            print('Error chu ky thoi gian: thang')
    elif chu_ky_thoi_gian=='quý':
        if quy in ['1', '2', '3', '4', 'I', 'II', 'III', 'IV']:
            output = "Valid"
            output = current_date
            # print('Chu ky thoi gian: quy ' + quy)
        else:
            output = "Invalid"
            output = current_date
            # print('Error chu ky thoi gian: quy')
    elif chu_ky_thoi_gian=='năm':
        if nam.isdigit():
            output = "Valid"
            output = current_date
            # print("Chu ky thoi gian: nam " + nam)
        else:
            output = "Invalid"
            output = current_date
            # print('Error chu ky thoi gian: năm')
    elif chu_ky_thoi_gian=='khác':
        output = "Valid"
        output = current_date
    else:
        output = current_date
    return output