@@ -103,7 +103,7 @@ |
||
103 | 103 | 2003 => 1800000, |
104 | 104 | 2004 => 2000000, |
105 | 105 | ]; |
106 | - $nReturn = $valuesYearly[$yrDate]; |
|
106 | + $nReturn = $valuesYearly[$yrDate]; |
|
107 | 107 | } elseif ($yr == 2001) { |
108 | 108 | $nReturn = $this->setPersonalDeductionSimple2001($lngDate); |
109 | 109 | } |
@@ -173,6 +173,9 @@ |
||
173 | 173 | . '<h1>' . $this->tApp->gettext('i18n_ApplicationName') . '</h1>'; |
174 | 174 | } |
175 | 175 | |
176 | + /** |
|
177 | + * @param string $labelId |
|
178 | + */ |
|
176 | 179 | private function setLabel($labelId) |
177 | 180 | { |
178 | 181 | $labelInfo = $this->appFlags['FI'][$labelId]['Label']; |
@@ -112,7 +112,7 @@ |
||
112 | 112 | $sReturn = ''; |
113 | 113 | if (is_array($labelInfo)) { |
114 | 114 | if (count($labelInfo) == 3) { |
115 | - $pieces = [ |
|
115 | + $pieces = [ |
|
116 | 116 | $this->tApp->gettext($labelInfo[0]), |
117 | 117 | $this->tApp->gettext($labelInfo[1]), |
118 | 118 | ]; |
@@ -90,7 +90,7 @@ |
||
90 | 90 | 'class' => 'labelS', |
91 | 91 | 'style' => 'color:#000;', |
92 | 92 | ]; |
93 | - $fieldsStyled = $this->buildArrayOfFieldsStyled(); |
|
93 | + $fieldsStyled = $this->buildArrayOfFieldsStyled(); |
|
94 | 94 | if (array_key_exists($text, $fieldsStyled)) { |
95 | 95 | $defaultCellStyle['style'] = $this->buildStyleForCellFormat($fieldsStyled[$text]); |
96 | 96 | } |
@@ -118,7 +118,7 @@ |
||
118 | 118 | $howMany = count($nValues); |
119 | 119 | for ($counter = 0; $counter <= $howMany; $counter++) { |
120 | 120 | if (($lngTaxBase <= $nValues[$counter]['Upper Limit Value'])) { |
121 | - $sLbl = [ |
|
121 | + $sLbl = [ |
|
122 | 122 | 'BDP' => $nValues[$counter]['Base Deducted Percentage'], |
123 | 123 | 'BDV' => $nValues[$counter]['Base Deduction Value'], |
124 | 124 | 'TFV' => $nValues[$counter]['Tax Free Value'], |
@@ -40,7 +40,7 @@ |
||
40 | 40 | 'min_range' => mktime(0, 0, 0, 1, 1, 2001), |
41 | 41 | ] |
42 | 42 | ]; |
43 | - $validYM = filter_var($tCSG->get('ym'), FILTER_VALIDATE_INT, $validOpt); |
|
43 | + $validYM = filter_var($tCSG->get('ym'), FILTER_VALIDATE_INT, $validOpt); |
|
44 | 44 | if (!array_key_exists($validYM, $ymValues)) { |
45 | 45 | $validYM = mktime(0, 0, 0, date('m'), 1, date('Y')); |
46 | 46 | } |
@@ -58,6 +58,9 @@ discard block |
||
58 | 58 | echo $this->setFooterHtml($interfaceElements['Application']); |
59 | 59 | } |
60 | 60 | |
61 | + /** |
|
62 | + * @param double $lngBase |
|
63 | + */ |
|
61 | 64 | private function getIncomeTaxValue($inDate, $lngBase, $vBA, $aryDeductions, $arySettings) |
62 | 65 | { |
63 | 66 | $rest = $lngBase - array_sum($aryDeductions); |
@@ -84,6 +87,9 @@ discard block |
||
84 | 87 | ]; |
85 | 88 | } |
86 | 89 | |
90 | + /** |
|
91 | + * @param double $lngBase |
|
92 | + */ |
|
87 | 93 | private function getValues($lngBase, $aStngs, $shLabels) |
88 | 94 | { |
89 | 95 | $inDate = $this->tCmnSuperGlobals->request->get('ym'); |
@@ -174,6 +180,11 @@ discard block |
||
174 | 180 | return $sReturn; |
175 | 181 | } |
176 | 182 | |
183 | + /** |
|
184 | + * @param string $inName |
|
185 | + * @param integer $inSize |
|
186 | + * @param string $inAfterLabel |
|
187 | + */ |
|
177 | 188 | private function setFormInputText($inName, $inSize, $inAfterLabel) |
178 | 189 | { |
179 | 190 | $inputParameters = [ |
@@ -186,6 +197,9 @@ discard block |
||
186 | 197 | return $this->setStringIntoShortTag('input', $inputParameters) . ' ' . $inAfterLabel; |
187 | 198 | } |
188 | 199 | |
200 | + /** |
|
201 | + * @param string $configPath |
|
202 | + */ |
|
189 | 203 | private function setFormOutput($configPath, $shLabels) |
190 | 204 | { |
191 | 205 | $aryStngs = $this->readTypeFromJsonFileUniversal($configPath, 'valuesToCompute'); |
@@ -265,6 +279,9 @@ discard block |
||
265 | 279 | return implode('', $sReturn) . '</tr></thead></tbody>'; |
266 | 280 | } |
267 | 281 | |
282 | + /** |
|
283 | + * @param double $brut |
|
284 | + */ |
|
268 | 285 | private function setFormOutputTaxations($brut, $amnt) |
269 | 286 | { |
270 | 287 | $limitDisplayBase = false; |
@@ -320,6 +337,10 @@ discard block |
||
320 | 337 | return implode('', $cellValue); |
321 | 338 | } |
322 | 339 | |
340 | + /** |
|
341 | + * @param string $text1 |
|
342 | + * @param string $text2 |
|
343 | + */ |
|
323 | 344 | private function setFormRowTwoLabels($text1, $text2, $value) |
324 | 345 | { |
325 | 346 | return str_replace(':</td>', ':</td><td class="labelS" style="text-align:right;">' |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | $this->initializeSprGlbAndSession(); |
51 | 51 | $this->handleLocalizationSalariu($interfaceElements['Application']); |
52 | 52 | echo $this->setHeaderHtml(); |
53 | - $ymValues = $this->buildYMvalues(); |
|
53 | + $ymValues = $this->buildYMvalues(); |
|
54 | 54 | $this->processFormInputDefaults($this->tCmnSuperGlobals, $interfaceElements['Values Filter Rules'], $ymValues); |
55 | 55 | echo $this->setFormInput($ymValues); |
56 | 56 | $this->setExchangeRateValues($interfaceElements['Application'], $interfaceElements['Relevant Currencies']); |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | $this->tCmnSuperGlobals->request->get('pc'), |
130 | 130 | ]; |
131 | 131 | $this->tCmnSuperGlobals->request->set('wkDays', $this->setWorkingDaysInMonth($components[0], $components[1])); |
132 | - $vDays = $this->tCmnSuperGlobals->request->get('wkDays') - $this->tCmnSuperGlobals->request->get('zfb'); |
|
132 | + $vDays = $this->tCmnSuperGlobals->request->get('wkDays') - $this->tCmnSuperGlobals->request->get('zfb'); |
|
133 | 133 | $this->tCmnSuperGlobals->request->set('nDays', max($vDays, 0)); |
134 | 134 | } |
135 | 135 | |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | $sReturn[] = $this->setFrmRowTwoLbls($this->setLabel('ovAmount2'), '' |
219 | 219 | . '<span style="font-size:smaller;">' . $ovTime['o2'] . 'h x 200%</span>', $ovTime[22]); |
220 | 220 | $sReturn[] = $this->setFrmRowTwoLbls($this->setLabel('sb'), ' ', $brut); |
221 | - $brut += $this->tCmnSuperGlobals->request->get('afet') * pow(10, 4); |
|
221 | + $brut += $this->tCmnSuperGlobals->request->get('afet') * pow(10, 4); |
|
222 | 222 | $amnt = $this->getValues($brut, $aryStngs, $shLabels); |
223 | 223 | $sReturn[] = $this->setFormOutputTaxations($brut, $amnt); |
224 | 224 | $pnValue = $this->tCmnSuperGlobals->request->get('pn') * 10000; |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | |
268 | 268 | private function setFormOutputTaxations($brut, $amnt) |
269 | 269 | { |
270 | - $sRn = []; |
|
270 | + $sRn = []; |
|
271 | 271 | $limitDisplayBase = false; |
272 | 272 | if ($brut > $this->txLvl['casP_base']) { |
273 | 273 | $limitDisplayBase = true; |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | |
306 | 306 | private function setFormRowAmount($value, $defaultCellStyle) |
307 | 307 | { |
308 | - $cellValue = []; |
|
308 | + $cellValue = []; |
|
309 | 309 | $defaultCellStyle['style'] .= 'text-align:right;'; |
310 | 310 | foreach ($this->currencyDetails['CX'] as $key2 => $value2) { |
311 | 311 | $fmt = new \NumberFormatter($value2['locale'], \NumberFormatter::CURRENCY); |