-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsampofactoring.php
executable file
·387 lines (310 loc) · 11.4 KB
/
sampofactoring.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
<?php
require 'inc/parametrit.inc';
echo "<font class='head'>Danskebank Factoring</font><hr><br>";
$factoring_tarkista_lisa = "";
if ($tee == 'TARKISTA') {
// lisätään tämä queryyn alle, niin ei ikinä päästä eteenpäin, jos factoring_id on virheellinen
$factoring_tarkista_lisa = " and tunnus = '$factoring_id' ";
// siirrytään tulostukseen
$tee = 'TULOSTA';
}
$query = "SELECT *
FROM factoring
WHERE yhtio = '{$kukarow["yhtio"]}'
and factoringyhtio = 'SAMPO'
{$factoring_tarkista_lisa}";
$factoring_result = pupe_query($query);
if (mysql_num_rows($factoring_result) == 0) {
echo t("%s factoring-sopimusta ei ole perustettu!", null, 'SAMPO');
$tee = "ohita";
}
elseif (mysql_num_rows($factoring_result) == 1) {
// meillä on vaan yksi, ei tarvitse valita
$vrow = mysql_fetch_assoc($factoring_result);
$factoring_id = $vrow['tunnus'];
$tee = isset($tee) ? $tee : 'TOIMINNOT';
}
if ($tee == "") {
//Käyttöliittymä
echo "<form method='post'>";
echo "<input type='hidden' name='tee' value='TOIMINNOT'>";
echo t("Valitse factoring-sopimus");
echo " <select name='factoring_id' onchange='submit();'>";
echo "<option value=''></option>";
while ($vrow = mysql_fetch_assoc($factoring_result)) {
$sel = ($vrow['tunnus'] == $factoring_id) ? "selected" : "";
echo "<option value='{$vrow["tunnus"]}' $sel>{$vrow["nimitys"]}</option>";
}
echo "</select>";
echo "</form>";
echo "<br><br>";
}
if ($tee == "TOIMINNOT") {
echo "<font class='message'>Luodaan Danskebank Factoring siirtolista kaikista lähettämättömistä factoring laskuista.</font><br><br>";
// haetaan kaikki sampo factoroidut laskut jota ei ole vielä liitetty mihinkään siirtolistalle
$query = "SELECT count(*) kpl, sum(arvo) arvo, sum(summa) summa
FROM lasku USE INDEX (factoring)
JOIN maksuehto ON (maksuehto.yhtio = lasku.yhtio
and maksuehto.tunnus = lasku.maksuehto
and maksuehto.factoring_id = '$factoring_id')
WHERE lasku.yhtio = '$kukarow[yhtio]' and
lasku.tila = 'U' and
lasku.alatila = 'X' and
lasku.summa != 0 and
lasku.factoringsiirtonumero = '' and
lasku.valkoodi = '$yhtiorow[valkoodi]'";
$result = pupe_query($query);
$laskurow = mysql_fetch_array($result);
echo "<table>";
echo "<tr>";
echo "<th colspan='2'>Laskuja lähettämättä</th>";
echo "</tr>";
echo "<tr>";
echo "<th>Kpl</th>";
echo "<td>$laskurow[kpl]</td>";
echo "</tr>";
echo "<tr>";
echo "<th>Veroton arvo</th>";
echo "<td>$laskurow[arvo]</td>";
echo "</tr>";
echo "<tr>";
echo "<th>Verollinen arvo</th>";
echo "<td>$laskurow[summa]</td>";
echo "</tr>";
echo "</table><br>";
echo "<form method='post'>";
echo "<input type='hidden' name='tee' value='TARKISTA'>";
echo "<input type='hidden' name='factoring_id' value='$factoring_id'>";
echo "<table>";
echo "<tr>";
echo "<th>Tulosta uudestaan siirtolista numero</th>";
echo "<td><input type='text' name='numero' size='10'></td>";
echo "<td class='back'> (jättämällä tämä tyhjäksi luodaan aina uusi aineisto lähettämättömistä laskuista)</td>";
echo "</tr>";
echo "</table><br>";
echo "<table><tr><th>Valitse tulostin</th><td>";
$query = "SELECT *
FROM kirjoittimet
WHERE
yhtio='$kukarow[yhtio]'
ORDER by kirjoitin";
$kirre = pupe_query($query);
echo "<select name='valittu_tulostin'>";
while ($kirrow = mysql_fetch_array($kirre)) {
$sel = "";
if ($kirrow['tunnus'] == $kukarow['kirjoitin']) {
$sel = "SELECTED";
}
echo "<option value='$kirrow[tunnus]' $sel>$kirrow[kirjoitin]</option>";
}
echo "</select></td></tr></table><br>";
echo "<input type='submit' value='Luo aineisto'>";
echo "</form>";
}
if ($tee == 'TULOSTA') {
$numero = (int) $numero;
// haetaan kaikki sampo factoroidut laskut jota ei ole vielä liitetty mihinkään siirtolistalle
$query = "SELECT ifnull(group_concat(lasku.tunnus),0) tunnukset
FROM lasku USE INDEX (factoring)
JOIN maksuehto ON (maksuehto.yhtio = lasku.yhtio
and maksuehto.tunnus = lasku.maksuehto
and maksuehto.factoring_id = '$factoring_id')
WHERE lasku.yhtio = '$kukarow[yhtio]' and
lasku.tila = 'U' and
lasku.alatila = 'X' and
lasku.summa != 0 and
lasku.factoringsiirtonumero = '$numero' and
lasku.valkoodi = '$yhtiorow[valkoodi]'
order by laskunro";
$result = pupe_query($query);
$laskurow = mysql_fetch_array($result);
// jos löytyi jotain factoroitavaa tallennetaan ni siirtonumero ekaks laskuille, minimoidaan aikaikkunat ja tablejen lukitusaika
if ($laskurow["tunnukset"] != 0) {
// ei olla tulostamassa kopiota
if ($numero == 0) {
// lukitaan, ettei muut pääse sörkkimään väliin
$query = " LOCK TABLES lasku WRITE";
$result = pupe_query($query);
// haetaan seuraava vapaa listanumero
$query = "SELECT max(factoringsiirtonumero) + 1
FROM lasku
WHERE yhtio = '$kukarow[yhtio]'";
$result = pupe_query($query);
$facrow = mysql_fetch_array($result);
// päivitetään se laskuille
$query = "UPDATE lasku
SET factoringsiirtonumero = '$facrow[0]'
WHERE yhtio = '$kukarow[yhtio]' and tunnus in ($laskurow[tunnukset])";
$result = pupe_query($query);
$numero = $facrow[0];
// lukko pois
$query = " UNLOCK TABLES";
$result = pupe_query($query);
}
// sitte käydään vasta laskut läpi..
$query = "SELECT *
FROM lasku
WHERE yhtio = '$kukarow[yhtio]' and tunnus in ($laskurow[tunnukset])";
$result = pupe_query($query);
// laskurit nollaan
$hyvitys = 0;
$hyvitys_kpl = 0;
$veloitus = 0;
$veloitus_kpl = 0;
$kaikki = 0;
$kaikki_kpl = 0;
$edytunnus = "";
$ulos = "";
$ulos .= "\n";
$ulos .= sprintf("%-14.14s", "Y-tunnus");
$ulos .= sprintf("%-65.65s", "Yhteystiedot");
$ulos .= "\n";
$ulos .= sprintf("%-14.14s", "Laskunro");
$ulos .= sprintf("%-14.14s", "Tapvm");
$ulos .= sprintf("%-14.14s", "Erpvm");
$ulos .= sprintf("%-14.14s", "Kapvm");
$ulos .= sprintf("%20.20s", "Summa");
$ulos .= sprintf("%4.4s", "Val");
$ulos .= "\n--------------------------------------------------------------------------------";
$ulos .= "\n";
while ($laskurow = mysql_fetch_array($result)) {
if ($edytunnus != $laskurow["ytunnus"]) {
$ulos .= "\n";
$ulos .= sprintf("%-14.14s", $laskurow["ytunnus"]);
$ulos .= sprintf("%-65.65s", $laskurow["nimi"].", ".$laskurow["osoite"].", ".$laskurow["postino"]." ".$laskurow["postitp"]);
$ulos .= "\n";
}
if ($laskurow["kapvm"] == '0000-00-00') $laskurow["kapvm"] = "";
$ulos .= sprintf("%-14.14s", $laskurow["laskunro"]);
$ulos .= sprintf("%-14.14s", $laskurow["tapvm"]);
$ulos .= sprintf("%-14.14s", $laskurow["erpcm"]);
$ulos .= sprintf("%-14.14s", $laskurow["kapvm"]);
$ulos .= sprintf("%20.20s", $laskurow["summa"]);
$ulos .= sprintf("%4.4s", $laskurow["valkoodi"]);
$ulos .= "\n";
$edytunnus = $laskurow["ytunnus"];
if ($laskurow["summa"] < 0) {
$hyvitys += $laskurow["summa"];
$hyvitys_kpl++;
}
else {
$veloitus += $laskurow["summa"];
$veloitus_kpl++;
}
$kaikki += $laskurow["summa"];
$kaikki_kpl++;
}
// sitte käydään vasta laskut läpi..
$query = "SELECT *
from factoring
where yhtio = '$kukarow[yhtio]'
and factoringyhtio = 'SAMPO'
and tunnus = '$factoring_id'
and valkoodi = '$yhtiorow[valkoodi]'";
$result = pupe_query($query);
$soprow = mysql_fetch_array($result);
// vähän siirtolistainfoa ruudulle
echo "<table>";
echo "<tr>";
echo "<th>Sopimusnumero</th>";
echo "<td>$soprow[sopimusnumero]</td>";
echo "</tr>";
echo "<tr>";
echo "<th>Siirtolistan numero</th>";
echo "<td>$numero</td>";
echo "</tr>";
echo "</table><br>";
// sitten infoa laskutuksesta ruudulle
echo "<table>";
echo "<tr>";
echo "<th></th>";
echo "<th>Lukumäärä</th>";
echo "<th>Summa</th>";
echo "</tr>";
echo "<tr>";
echo "<th>Veloituslaskut</th>";
echo "<td>$veloitus_kpl</td>";
echo "<td>$veloitus</td>";
echo "</tr>";
echo "<tr>";
echo "<th>Hyvityslaskut</th>";
echo "<td>$hyvitys_kpl</td>";
echo "<td>$hyvitys</td>";
echo "</tr>";
echo "<tr>";
echo "<th>Yhteensä</th>";
echo "<th>$kaikki_kpl</th>";
echo "<th>$kaikki</th>";
echo "</tr>";
echo "</table>";
$otsikkoulos = "\n\n\n";
$otsikkoulos .= "Sopimusnumero $soprow[sopimusnumero]\n";
$otsikkoulos .= "Siirtolistanumero $numero\n";
$otsikkoulos .= "\n\n";
$otsikkoulos .= sprintf("%-15.15s", "Veloituslaskut");
$otsikkoulos .= sprintf("%10.10s", "$veloitus_kpl kpl");
$otsikkoulos .= sprintf("%20.20s", "$veloitus eur\n");
$otsikkoulos .= sprintf("%-15.15s", "Hyvityslaskut");
$otsikkoulos .= sprintf("%10.10s", "$hyvitys_kpl kpl");
$otsikkoulos .= sprintf("%20.20s", "$hyvitys eur\n");
$otsikkoulos .= sprintf("%-15.15s", "Yhteensä");
$otsikkoulos .= sprintf("%10.10s", "$kaikki_kpl kpl");
$otsikkoulos .= sprintf("%20.20s", "$kaikki eur\n");
$otsikkoulos .= "\n\n";
$query = "SELECT komento
FROM kirjoittimet
WHERE yhtio = '$kukarow[yhtio]'
and tunnus = '$valittu_tulostin'";
$kirres = pupe_query($query);
$kirrow = mysql_fetch_assoc($kirres);
$tempfile1 = tempnam("/tmp", "SAMPOFAC");
$null = file_put_contents($tempfile1, $otsikkoulos);
$params = array(
'chars' => 80,
'filename' => $tempfile1,
'mode' => 'portrait',
);
// konveroidaan postscriptiksi
$filenimi_ps = pupesoft_a2ps($params);
if ($kirrow["komento"] == 'email') {
$subject = "$yhtiorow[nimi] - Danskebankfactoring";
$liite = array();
$kutsu = array();
$ctype = array();
$liite[0] = $tempfile1.".pdf";
$kutsu[0] = "Danskebankfactoring-otsikko";
$ctype[0] = "pdf";
system("ps2pdf -sPAPERSIZE=a4 $filenimi_ps $liite[0]");
}
else {
$null = exec("$kirrow[komento] {$filenimi_ps}");
}
$tempfile2 = tempnam("/tmp", "SAMPOFAC");
$null = file_put_contents($tempfile2, $ulos);
$params = array(
'chars' => 80,
'filename' => $tempfile2,
'mode' => 'portrait',
);
// konveroidaan postscriptiksi
$filenimi2_ps = pupesoft_a2ps($params);
if ($kirrow["komento"] == 'email') {
$liite[1] = $tempfile2.".pdf";
$kutsu[1] = "Danskebankfactoring-laskut";
$ctype[1] = "pdf";
system("ps2pdf -sPAPERSIZE=a4 {$filenimi2_ps} $liite[1]");
require "inc/sahkoposti.inc";
}
else {
$null = exec("$kirrow[komento] {$filenimi2_ps}");
}
unlink($tempfile1);
unlink($filenimi_ps);
unlink($tempfile2);
unlink($filenimi2_ps);
}
else {
echo "<font class='message'>Yhtään factoroitavaa laskua ei löytynyt.</font><br><br>";
}
}
require "inc/footer.inc";