diff options
author | San Jacobs | 2022-08-05 12:05:07 +0200 |
---|---|---|
committer | San Jacobs | 2022-08-05 12:05:07 +0200 |
commit | 8b0058d1de2865f47d627215d315bd639ed37fb7 (patch) | |
tree | df83b70ffb49d03dfe74788ccf9874f3260b514a /src/time.cpp | |
parent | 9a3c815b176598ed463a88f42dc6a5f8c6457d50 (diff) | |
download | satscalc-8b0058d1de2865f47d627215d315bd639ed37fb7.tar.gz satscalc-8b0058d1de2865f47d627215d315bd639ed37fb7.tar.bz2 satscalc-8b0058d1de2865f47d627215d315bd639ed37fb7.zip |
More beautiful menus, added social costs
Diffstat (limited to 'src/time.cpp')
-rwxr-xr-x | src/time.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/time.cpp b/src/time.cpp index 11b4336..6d1401d 100755 --- a/src/time.cpp +++ b/src/time.cpp @@ -176,21 +176,16 @@ workday::workday(const moment& previous_wrap, } } - //std::cout << "Splitting finished." << std::endl; - blocks[j++] = initial_block; total_timeblocks = j; - //std::cout << "Splitting completely finished." << std::endl; - // THE VALUE-FACTOR CALCULATION PART // TODO: Complete the valuefactor calculation ruleset // Including, Easter and other holidays // TODO: Implement a good system for this fuckin' paragraph: // A. 50 % tillegg for arbeid inntil 2 timer før, eller inntil 3 timer etter ordinær arbeidstid når arbeidstiden ikke er forskjøvet og overtiden er varslet. Dersom det varsles overtid både før og etter ordinær arbeidstid betales de to første timene med 50 % tillegg og de øvrige med 100 % tillegg. - // TODO: And this paragraph, which seems to say that planned being beyond actual wrap is a relevant case - // Varslet overtid som ikke benyttes honoreres med inntil to timer etter de vanlige overtidssatser, dog slik at én time av den ubenyttede overtiden ikke honoreres. + // TODO: Add reasons for the upped valuefactors. for(int ii=0; ii < total_timeblocks; ii++){ |