@@ -65,6 +65,9 @@ discard block |
||
| 65 | 65 | ]; |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | + /** |
|
| 69 | + * @param double $lngBase |
|
| 70 | + */ |
|
| 68 | 71 | private function getValues($lngBase, $aStngs, $shLabels, $dtR) { |
| 69 | 72 | $inDate = $this->tCmnSuperGlobals->request->get('ym'); |
| 70 | 73 | $aReturn = $this->getValuesPrimary($inDate, $lngBase, $aStngs, $shLabels, $dtR); |
@@ -181,11 +184,19 @@ discard block |
||
| 181 | 184 | return implode($sReturn, ''); |
| 182 | 185 | } |
| 183 | 186 | |
| 187 | + /** |
|
| 188 | + * @param string $frm |
|
| 189 | + */ |
|
| 184 | 190 | private function setFormInputIntoFieldSet($frm) { |
| 185 | 191 | return '<div class="tabbertab" id="Input" title="'.$this->tApp->gettext('i18n_FieldsetLabel_Inputs').'">' |
| 186 | 192 | .$frm.'</div>'; |
| 187 | 193 | } |
| 188 | 194 | |
| 195 | + /** |
|
| 196 | + * @param string $inName |
|
| 197 | + * @param integer $inSize |
|
| 198 | + * @param string $inAfterLabel |
|
| 199 | + */ |
|
| 189 | 200 | private function setFormInputText($inName, $inSize, $inAfterLabel, $crtMinWage = 0) { |
| 190 | 201 | $inputParameters = [ |
| 191 | 202 | 'type' => 'text', |
@@ -250,6 +261,9 @@ discard block |
||
| 250 | 261 | .$this->setStringIntoTag(implode('', $sReturn), 'table').'</tbody>'.'</div>'; |
| 251 | 262 | } |
| 252 | 263 | |
| 264 | + /** |
|
| 265 | + * @param double $amntLAA |
|
| 266 | + */ |
|
| 253 | 267 | private function setFormOutputBonuses($snValue, $wkDays, $amntLAA, $ovTimeVal) { |
| 254 | 268 | $sRt = []; |
| 255 | 269 | $sMin = $this->tCmnSuperGlobals->request->get('sm') * pow(10, 4); |
@@ -291,6 +305,9 @@ discard block |
||
| 291 | 305 | return implode('', $sReturn).'</tr></thead></tbody>'; |
| 292 | 306 | } |
| 293 | 307 | |
| 308 | + /** |
|
| 309 | + * @param double $brut |
|
| 310 | + */ |
|
| 294 | 311 | private function setFormOutputTaxations($brut, $amnt) { |
| 295 | 312 | $sRn = []; |
| 296 | 313 | $limitDisplayBase = false; |
@@ -342,6 +359,10 @@ discard block |
||
| 342 | 359 | return implode('', $cellValue); |
| 343 | 360 | } |
| 344 | 361 | |
| 362 | + /** |
|
| 363 | + * @param string $text1 |
|
| 364 | + * @param string $text2 |
|
| 365 | + */ |
|
| 345 | 366 | private function setFrmRowTwoLbls($text1, $text2, $value) { |
| 346 | 367 | return str_replace(':</td>', ':</td><td class="labelS" style="text-align:right;">' |
| 347 | 368 | .$text2.'</td>', $this->setFormRow($text1, $value, 'amount')); |
@@ -155,6 +155,9 @@ |
||
| 155 | 155 | return $nReturn; |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | + /** |
|
| 159 | + * @param integer $yrDate |
|
| 160 | + */ |
|
| 158 | 161 | private function setIncomeTaxFromJson($lngTaxBase, $nValues, $yrDate) { |
| 159 | 162 | $nReturn = 0; |
| 160 | 163 | $howMany = count($nValues); |