| @@ 92-94 (lines=3) @@ | ||
| 89 | ]; |
|
| 90 | $nReturn = $valuesYearly[$yrDate]; |
|
| 91 | } |
|
| 92 | if ($lngDate >= mktime(0, 0, 0, 7, 1, 2006)) { |
|
| 93 | $nReturn = round($nReturn, -4); |
|
| 94 | } |
|
| 95 | return $nReturn; |
|
| 96 | } |
|
| 97 | ||
| @@ 110-112 (lines=3) @@ | ||
| 107 | break; |
|
| 108 | } |
|
| 109 | $nReturn = round($lngBrutto * $nReturn / 100, 0); |
|
| 110 | if ($lngDate > mktime(0, 0, 0, 7, 1, 2006)) { |
|
| 111 | $nReturn = round($nReturn, -4); |
|
| 112 | } |
|
| 113 | return $nReturn; |
|
| 114 | } |
|
| 115 | ||
| @@ 138-140 (lines=3) @@ | ||
| 135 | $nReturn = $lngTaxBase * 16 / 100; |
|
| 136 | break; |
|
| 137 | } |
|
| 138 | if ($lngDate > mktime(0, 0, 0, 7, 1, 2006)) { |
|
| 139 | $nReturn = round($nReturn, -4); |
|
| 140 | } |
|
| 141 | return $nReturn; |
|
| 142 | } |
|
| 143 | ||
| @@ 243-245 (lines=3) @@ | ||
| 240 | $nReturn = 1; |
|
| 241 | } |
|
| 242 | $nReturn = round($lngBase * $nReturn / 100, 0); |
|
| 243 | if ($lngDate > mktime(0, 0, 0, 7, 1, 2006)) { |
|
| 244 | $nReturn = round($nReturn, -4); |
|
| 245 | } |
|
| 246 | return $nReturn; |
|
| 247 | } |
|
| 248 | ||