-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
235 lines (215 loc) · 5.88 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<?php
require __DIR__ . '/vendor/autoload.php';
//error_reporting(E_ALL);
define('EXT', 'dc3');
define('REPORT', 'Справка_о_доходах_за_пределами_РФ_2024.pdf');
define('CurrencyRates', 'base/CurrencyRates2023.xml');
function show_table($table, $is_excel) {
$to_excel = !$is_excel;
$nalog = new PDF\NDFL3('base/base.' . EXT, CurrencyRates, date('d.m.Y'));
echo <<<HTML
<table border="1">
<tr>
<td>Дата</td>
<td>Наименование</td>
<td>Выплата</td>
<td>Выплата, руб</td>
<td>Налог</td>
<td>Налог, руб</td>
<td>Процент</td>
<td>Доплатa</td>
<td>Валюта</td>
<td>Курс</td>
<td>Страна</td>
<td>Ошибки</td>
</tr>
HTML;
$i = 0;
$s1 = 0;
$s2 = 0;
$s3 = 0;
$s4 = 0;
$s5 = 0;
$s6 = 0;
foreach($table as $el) {
$n3 = $nalog->gen_income(
ndfl3_format($el),
$to_excel
)['info'];
$n3_date = $el[0];
if($is_excel) {
$n3_date = $nalog->from_excel_date($n3_date);
}
//
$per = $nalog->nalog_round($el[3] / $el[2] * 100);
$rate = $nalog->nalog_round($n3[10] / $n3[11]);
if($per < 13) {
$add_nalog = $nalog->nalog_round($n3[16] * (13 - $per) / 100);
} else {
$add_nalog = 0;
}
//
$check = $el[6];
if(!isset($base[$check])) {
$base[$check] = true;
$er = ['', ''];
} else {
$er = ['style="color: red"', 'ВОЗМОЖНО, ЗАПИСЬ ДУБЛИРУЕТСЯ В ОТЧЕТЕ'];
}
if($el[5] == null) {
$er = ['style="color: red"', 'СТРАНА ОТСУТСТВУЕТ В OKSM: ' . $el[7]];
}
//add to sum
$i++;
$s1 += $el[2];
$s2 += $n3[16];
$s3 += $el[3];
$s4 += $n3[18];
$s6 += $add_nalog;
//echo '<tr><td colspan="11">' . print_r($n3, true) . '</td></tr>';
echo <<<HTML
<tr $er[0]>
<td>$n3_date</td>
<td>$el[1]</td>
<td>$el[2]</td>
<td>$n3[16]</td>
<td>$el[3]</td>
<td>$n3[18]</td>
<td>$per%</td>
<td>$add_nalog</td>
<td>$n3[14]</td>
<td>$rate</td>
<td>$el[5]</td>
<td>$er[1]</td>
</tr>
HTML;
}
$s5 = round($s3 / $s1 * 100, 2) . '%';
echo <<<HTML
<tr>
<td>Записей: $i</td>
<td></td>
<td>$s1</td>
<td>$s2</td>
<td>$s3</td>
<td>$s4</td>
<td>$s5</td>
<td>$s6</td>
<td colspan="4"></td>
</tr></table>
HTML;
}
function ndfl3_format($in) {
$out = [
'date' => $in[0],
'name' => $in[1],
'in_usd' => $in[2],
'tax_usd' => $in[3],
'currency_code' => $in[4],
'country' => $in[5]
];
return $out;
}
function ndfl3_save($table, $is_excel) {
$to_excel = !$is_excel;
$nalog = new PDF\NDFL3('base/base.' . EXT, CurrencyRates, date('d.m.Y'));
foreach($table as $el) {
$check = $el[6];
if(!isset($base[$check])) {
$base[$check] = true;
}
$n3 = ndfl3_format($el);
$nalog->append($n3, $to_excel);
}
$file = $nalog->save();
//echo $file;
//die();
header('Cache-control: private');
header('Content-Type: application/octet-stream');
//header('Content-Length: '. sizeof($file));
header('Content-Disposition: filename=form.' . EXT);
echo $file;
}
function get_file($is_excel) {
$file_path = __DIR__ . '/tmp/';
$name = 'tmp' . date('dmYHis') . '_' . rand(1, 10000);
$name .= $is_excel ? '.xlsx' : '.pdf';
return $file_path . $name;
}
function read_file($file_path, $is_excel, $show) {
if($is_excel) {
$table = [];
$xlsx = new PDF\Excel($file_path);
$xlsx->sheet(1);
$xlsx->next();
while($xlsx->valid()) {
$row = $xlsx->current();
if(empty($row)) break;
$row[6] = $row[0] . $row[1];
$table[] = $row;
$xlsx->next();
}
//print_r($table);
} else {
$table = new PDF\Tinkoff;
$table = $table->parse($file_path);
}
if(sizeof($table) > 0) {
if($show) {
show_table($table, $is_excel);
} else {
ndfl3_save($table, $is_excel);
}
} else {
echo 'Вы не получали доход за пределами РФ, по которому налог удерживался эмитентом, в запрашиваемый период. Если уверены, что тут должны быть операции обратитесь в поддержку.';
}
}
if(isset($_POST['type']) && (isset($_POST['generate']) || isset($_POST['test']))) {
$is_excel = ($_POST['type'] == 'excel');
$is_test = isset($_POST['test']);
$tmp_path = $_FILES['userfile']['tmp_name'];
$file_path = get_file($is_excel);
if(move_uploaded_file($tmp_path, $file_path)) {
read_file($file_path, $is_excel, $is_test);
unlink($file_path);
} else {
echo 'Непредвиденная ошибка';
}
} else {
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NDFL3</title>
<meta name="description" content="NDFL3">
</head>
<body>
<p>
<ul>
<li>Загружаем <a href="https://www.tinkoff.ru/invest/" target="_blank">отчет из тинькофф</a> или заполняем <a href="sample.xlsx" target="_blank">шаблон Excel</a></li>
<li>Генерируем <?=EXT?></li>
<li>Загружаем <?=EXT?> в <a href="https://www.gnivc.ru/software/fnspo/ndfl_3_4/" target="_blank">"Программу подготовки 3-НДФЛ"</a></li>
</ul>
</p>
<p>Одно из двух (xlsx или <?=REPORT?>):</p>
<p>Excel:</p>
<form method="post" action="index.php" enctype="multipart/form-data">
<input type="file" name="userfile">
<input type="hidden" name="type" value="excel">
<input type="submit" name="test" value="Проверка">
<input type="submit" name="generate" value="Генерировать <?=EXT?>">
</form>
<br><br><br>
<p>Tinkoff:</p>
<form method="post" action="index.php" enctype="multipart/form-data">
<input type="file" name="userfile">
<input type="hidden" name="type" value="tinkoff">
<input type="submit" name="test" value="Проверка">
<input type="submit" name="generate" value="Генерировать <?=EXT?>">
</form>
</body>
</html>
<?php
}
?>