mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
Fixed Date Calculation for Refresh Interval Detection
Forgot to recalculate the date, so we don't run into problems if someone works late at night
This commit is contained in:
parent
6db1b2fbfa
commit
7ec692389e
|
@ -80,6 +80,12 @@ CLASS ZCL_ABAPGIT_PROGRESS IMPLEMENTATION.
|
||||||
mv_cv_time_next = lv_time + c_wait_secs.
|
mv_cv_time_next = lv_time + c_wait_secs.
|
||||||
|
|
||||||
ENDIF.
|
ENDIF.
|
||||||
|
IF sy-datum > mv_cv_datum_next.
|
||||||
|
mv_cv_datum_next = sy-datum.
|
||||||
|
ENDIF.
|
||||||
|
IF mv_cv_time_next < lv_time.
|
||||||
|
mv_cv_datum_next = sy-datum + 1.
|
||||||
|
ENDIF.
|
||||||
|
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
ENDCLASS.
|
ENDCLASS.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user