-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtehdas_saldot.php
478 lines (379 loc) · 15.5 KB
/
tehdas_saldot.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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
<?php
// Kutsutaanko CLI:stä
if (PHP_SAPI != 'cli') {
require "inc/parametrit.inc";
$cli = false;
echo "<font class='head'>".t("Tehtaan saldot")."</font><hr>";
}
else {
if (trim($argv[1]) == '') {
die ("Et antanut lähettävää yhtiötä!\n");
}
if (trim($argv[2]) == '') {
die ("Et antanut tuotenumeron sijaintia Pupesoftissa. Vaihtoehdot ovat toim_tuoteno tai tuoteno!\n");
}
if (trim($argv[3]) == '') {
die ("Et antanut tuotenumeron sarakenumeroa!\n");
}
if (trim($argv[4]) == '') {
die ("Et antanut tehtaan saldon sarakenumeroa!\n");
}
if (trim($argv[5]) == '') {
die ("Et antanut sarake-erotinta!\n");
}
date_default_timezone_set('Europe/Helsinki');
// otetaan includepath aina rootista
ini_set("include_path", ini_get("include_path").PATH_SEPARATOR.dirname(__FILE__).PATH_SEPARATOR."/usr/share/pear");
error_reporting(E_ALL ^E_WARNING ^E_NOTICE);
ini_set("display_errors", 0);
// otetaan tietokanta connect
require "inc/connect.inc";
require "inc/functions.inc";
$cli = true;
$kukarow['yhtio'] = (string) $argv[1];
$kukarow['kuka'] = 'admin';
$kukarow['kieli'] = 'fi';
$yhtiorow = hae_yhtion_parametrit($kukarow['yhtio']);
$tuotenumeron_sijainti_pupessa = $argv[2] == 'toim_tuoteno' ? 'toim_tuoteno' : 'tuoteno';
$tuotenumeron_sarake = $argv[3];
$tehtaan_saldon_sarake = $argv[4];
$column_separator = $argv[5];
pupesoft_log('tehdas_saldot', "Aloitetaan tehtaan saldojen haku FTP:llä osoitteesta {$ftpget_host['tehdas_saldot']}");
$ftphost = $ftpget_host['tehdas_saldot'];
$ftpuser = $ftpget_user['tehdas_saldot'];
$ftppass = $ftpget_pass['tehdas_saldot'];
$ftppath = $ftpget_path['tehdas_saldot'];
$ftpdest = $ftpget_dest['tehdas_saldot'];
$ftpport = $ftpget_port['tehdas_saldot'];
require 'sftp-get.php';
$handle = opendir($ftpget_dest['tehdas_saldot']);
if ($handle === false) {
pupesoft_log('tehdas_saldot', "Kansiota {$ftpget_dest['tehdas_saldot']} ei pysty avaamaan");
exit;
}
while (($file = readdir($handle)) !== false) {
if (is_file($ftpget_dest['tehdas_saldot']."/".$file) === false) continue;
if ($file !== 'varastosaldot.csv') continue;
$userfile = $ftpget_dest['tehdas_saldot']."/".$file;
$file = array();
$file["name"] = basename($userfile);
$file["type"] = mime_content_type($userfile);
$file["tmp_name"] = $userfile;
$file["error"] = 0;
$file["size"] = filesize($userfile);
$_FILES['userfile'] = $file;
$tee = 'GO';
$error = 0;
$toiminto = '';
break;
}
if (empty($file)) {
pupesoft_log('tehdas_saldot', "Yhtään luettavaa tiedostoa ei löytynyt kansiosta {$ftpget_dest['tehdas_saldot']}");
exit;
}
}
if (!isset($tee)) $tee = '';
if (!isset($tuotteen_toimittaja)) $tuotteen_toimittaja = '';
if (!isset($tuotenumeron_sijainti_pupessa)) $tuotenumeron_sijainti_pupessa = '';
if (!isset($tuotenumeron_sarake)) $tuotenumeron_sarake = '';
if (!isset($tehtaan_saldon_sarake)) $tehtaan_saldon_sarake = '';
if (!isset($error)) $error = 0;
if (!isset($ala_tallenna)) $ala_tallenna = array("kysely", "uusirappari");
if ($tee == "tallenna" or $tee == "lataavanha") {
if (isset($kysely) and trim($kysely) != '') {
list($kysely_kuka, $kysely_mika) = explode("#", $kysely);
if ($tee == "tallenna") {
tallenna_muisti($kysely_mika, $ala_tallenna, $kysely_kuka);
$tee = '';
}
if ($tee == "lataavanha") {
hae_muisti($kysely_mika, $kysely_kuka);
$kysely = "$kysely_kuka#$kysely_mika";
$tee = '';
}
}
else {
echo "<font class='error'>", t("Et ole valinnut raporttia"), "!</font><br/>";
$tee = '';
$error++;
}
}
if ($tee == 'uusiraportti') {
if (trim($uusirappari) != '') {
tallenna_muisti($uusirappari, $ala_tallenna);
$kysely = "$kukarow[kuka]#$uusirappari";
$tee = '';
}
else {
echo "<font class='error'>", t("Tallennettavan raportin nimi ei saa olla tyhjä"), "!</font><br/>";
$tee = '';
$error++;
}
}
if ($tee == 'GO' and $error == 0) {
if ($cli === false) {
if (trim($tuotteen_toimittaja) == '') {
echo "<font class='error'>", t("Et valinnut toimittajaa"), "!</font><br/>";
$tee = '';
$error++;
}
if (trim($tuotenumeron_sarake) == '') {
echo "<font class='error'>", t("Et syöttänyt tuotenumeron sarakenumeroa"), "!</font><br/>";
$tee = '';
$error++;
}
elseif (!is_numeric($tuotenumeron_sarake)) {
echo "<font class='error'>", t("Tuotenumeron sarakenumero täytyy olla numeerinen"), "!</font><br/>";
$tee = '';
$error++;
}
if (trim($tehtaan_saldon_sarake) == '') {
echo "<font class='error'>", t("Et syöttänyt tehtaan saldon sarakenumeroa"), "!</font><br/>";
$tee = '';
$error++;
}
elseif (!is_numeric($tehtaan_saldon_sarake)) {
echo "<font class='error'>", t("Tehtaan saldon sarakenumero täytyy olla numeerinen"), "!</font><br/>";
$tee = '';
$error++;
}
if ($tuotenumeron_sarake == $tehtaan_saldon_sarake) {
echo "<font class='error'>", t("Tuotenumeron sarakenumero ja tehtaan saldon sarakenumero eivät saa olla samat"), "!</font><br/>";
$tee = '';
$error++;
}
if ($tuotenumeron_sarake == 0 or $tehtaan_saldon_sarake == 0) {
echo "<font class='error'>", t("Tuotenumeron sarakenumero tai tehtaan saldon sarakenumero eivät saa olla nollaa"), "!</font><br/>";
$tee = '';
$error++;
}
if (!isset($_FILES['userfile']['error']) or $_FILES['userfile']['error'] == 4) {
echo "<font class='error'>", t("Et valinnut tiedostoa"), "!</font><br/>";
$tee = '';
$error++;
}
}
if ($error == 0) {
$path_parts = pathinfo($_FILES['userfile']['name']);
if (!in_array(strtolower($path_parts['extension']), array('xls','txt','csv'))) {
if ($cli === true) {
pupesoft_log('tehdas_saldot', "Virheellinen tiedostopääte: ".strtolower($path_parts['extension']));
}
else {
echo "<font class='error'>", t("Virheellinen tiedostopääte"), "!</font><br/>";
}
$tee = '';
$error++;
}
if ($error == 0 and ($cli === true or is_uploaded_file($_FILES['userfile']['tmp_name']) === true)) {
$file = tarkasta_liite("userfile", array("XLS", "TXT", "CSV"));
if ($file !== true) {
pupesoft_log('tehdas_saldot', $file);
$error++;
}
}
else {
$error++;
}
}
if ($error == 0) {
$tuo_sarake = (int) $tuotenumeron_sarake - 1;
$teh_sarake = (int) $tehtaan_saldon_sarake - 1;
if (strtolower($path_parts['extension']) == 'xls') {
require_once 'excel_reader/reader.php';
// ExcelFile
$data = new Spreadsheet_Excel_Reader();
// Set output Encoding.
$data->setOutputEncoding('CP1251');
$data->setRowColOffset(0);
$data->read($_FILES['userfile']['tmp_name']);
$tuote = array();
$saldo = array();
for ($excei = 0; $excei < $data->sheets[0]['numRows']; $excei++) {
$cell = $data->sheets[0]['cells'][$excei];
if (!isset($cell[$tuo_sarake]) or !isset($cell[$teh_sarake])) {
if ($cli === true) {
pupesoft_log('tehdas_saldot', "Virheellinen sarakenumero: {$teh_sarake}");
}
else {
echo "<font class='error'>", t("Virheellinen sarakenumero"), "!</font><br/>";
}
$error++;
unset($tuote);
break;
}
// luetaan rivi tiedostosta..
$tuo = mysql_real_escape_string(trim($cell[$tuo_sarake]));
$sal = (float) str_replace(",", ".", trim($cell[$teh_sarake]));
if ($tuo != '') {
$tuote[] = $tuo;
$saldo[] = $sal;
}
}
}
else {
if ($file = fopen($_FILES['userfile']['tmp_name'], "r")) {
while ($rivi = fgets($file)) {
// luetaan rivi tiedostosta..
if ($cli === true) {
$rivi = explode($column_separator, trim($rivi));
}
elseif (strtolower($path_parts['extension']) == 'txt') {
$rivi = explode("\t", trim($rivi));
}
else {
$rivi = explode(",", trim($rivi));
}
$tuo = mysql_real_escape_string(trim($rivi[$tuo_sarake]));
$sal = (float) str_replace(",", ".", trim($rivi[$teh_sarake]));
if ($tuo != '') {
$tuote[] = $tuo;
$saldo[] = $sal;
}
}
fclose($file);
}
else {
if ($cli === true) {
pupesoft_log('tehdas_saldot', "Tiedoston avaus epäonnistui: {$_FILES['userfile']['tmp_name']}");
}
else {
echo "<font class='error'>", t("Tiedoston avaus epäonnistui"), "!</font><br/>";
}
$tee = '';
$error++;
}
}
if ($error == 0 and count($tuote) > 0) {
$tee = 'OK';
}
else {
if ($cli === true) {
pupesoft_log('tehdas_saldot', "Tiedostosta ei luettu yhtään tuotetta.");
}
else {
echo "<font class='error'>", t("Tiedostosta ei luettu yhtään tuotetta"), "!</font><br/>";
}
$tee = '';
$error++;
}
if ($error == 0 and $tee == 'OK') {
$tuotteen_toimittaja = (int) $tuotteen_toimittaja;
$tuotenumeron_sijainti_pupessa = mysql_real_escape_string($tuotenumeron_sijainti_pupessa);
if ($toiminto == 'paivita_ja_poista') {
$query = "UPDATE tuotteen_toimittajat SET
tehdas_saldo = '0',
tehdas_saldo_paivitetty = now()
WHERE yhtio = '{$kukarow['yhtio']}'
AND liitostunnus = '{$tuotteen_toimittaja}'";
$update_saldo_result = pupe_query($query);
}
$paivitetty = 0;
foreach ($tuote as $index => $tuoteno) {
if ($cli === true) {
$query = "SELECT tt.liitostunnus, if (tt.jarjestys = 0, 9999, tt.jarjestys) sorttaus
FROM tuotteen_toimittajat AS tt
JOIN toimi on (toimi.yhtio = tt.yhtio and toimi.tunnus = tt.liitostunnus)
WHERE tt.yhtio = '{$kukarow['yhtio']}'
and tt.tuoteno = '{$tuoteno}'
ORDER BY sorttaus
LIMIT 1";
$ttres = pupe_query($query);
if (mysql_num_rows($ttres) == 0) {
pupesoft_log('tehdas_saldot', "Tuotteen toimittajaa ei löydy tuotteelle {$tuoteno}");
continue;
}
$ttrow = mysql_fetch_assoc($ttres);
$tuotteen_toimittaja = $ttrow['liitostunnus'];
}
$query = "UPDATE tuotteen_toimittajat SET
tehdas_saldo = '{$saldo[$index]}',
tehdas_saldo_paivitetty = now()
WHERE yhtio = '{$kukarow['yhtio']}'
AND liitostunnus = '{$tuotteen_toimittaja}'
AND {$tuotenumeron_sijainti_pupessa} = '{$tuoteno}'";
$update_saldo_result = pupe_query($query);
$paivitetty++;
}
if ($cli === true) {
pupesoft_log('tehdas_saldot', sprintf(t('Päivitettiin %d tuotteen tehdas saldot', '', $paivitetty)));
}
else {
echo "<font class='message'>".sprintf(t('Päivitettiin %d tuotteen tehdas saldot', '', $paivitetty)).".</font><br/>";
}
$tee = '';
}
}
}
if ($cli === false and $tee == '') {
echo "<table>";
echo "<form method='post' autocomplete='off' enctype='multipart/form-data'>";
echo "<input type='hidden' name='tee' id='tee' value='GO'>";
echo "<tr><th colspan='2'>", t("Toimittajan valinnat"), "</th></tr>";
$query = "SELECT DISTINCT toimi.tunnus, toimi.nimi, toimi.nimitark
FROM toimi
JOIN tuotteen_toimittajat ON (toimi.yhtio = tuotteen_toimittajat.yhtio AND toimi.tunnus = tuotteen_toimittajat.liitostunnus)
WHERE toimi.yhtio = '$kukarow[yhtio]'
AND toimi.ytunnus != 'FI'";
$tuotteen_toimittajat_result = pupe_query($query);
echo "<tr><td>", t("Tuotteen toimittaja"), "</td>";
echo "<td><select name='tuotteen_toimittaja'><option value=''>", t("Valitse toimittaja"), "</option>";
while ($tuotteen_toimittajat_row = mysql_fetch_assoc($tuotteen_toimittajat_result)) {
$sel = $tuotteen_toimittaja == $tuotteen_toimittajat_row['tunnus'] ? ' SELECTED' : '';
echo "<option value='$tuotteen_toimittajat_row[tunnus]'$sel>$tuotteen_toimittajat_row[nimi] $tuotteen_toimittajat_row[nimitark]</option>";
}
echo "</td></tr>";
echo "<tr><td>", t("Toiminto"), "</td>";
echo "<td><select name='toiminto'>";
echo "<option value='paivita'>", t("Päivitetään tiedostossa olevat tehtaan saldot, ei poisteta muita tehtaan saldoja"), "</option>";
echo "<option value='paivita_ja_poista'>", t("Päivitetään tiedostossa olevat tehtaan saldot, poistetaan muut tehtaan saldot"), "</option>";
echo "</select></td></tr>";
echo "<tr><td class='back'> </td></tr>";
echo "<tr><th colspan='2'>", t("Tuotteen valinnat"), "</th></tr>";
echo "<tr><td>", t("Luettu tuotenumero Pupesoftissa"), "</td>";
echo "<td><select name='tuotenumeron_sijainti_pupessa'>";
$sel1 = $sel2 = '';
if ($tuotenumeron_sijainti_pupessa == 'toim_tuoteno') {
$sel2 = ' SELECTED';
}
else {
$sel1 = ' SELECTED';
}
echo "<option value='tuoteno'$sel1>", t("Tuotteen tuotenumero"), "</option>";
echo "<option value='toim_tuoteno'$sel2>", t("Toimittajan tuotenumero"), "</option>";
echo "</select></td></tr>";
echo "<tr><td>", t("Tuotenumeron sarakenumero"), "</td><td><input type='text' name='tuotenumeron_sarake' value='$tuotenumeron_sarake'></td></tr>";
echo "<tr><td>", t("Tehtaan saldon sarakenumero"), "</td><td><input type='text' name='tehtaan_saldon_sarake' value='$tehtaan_saldon_sarake'></td></tr>";
echo "<tr><td class='back'> </td></tr>";
echo "<tr><th colspan='2'>", t("Raportin valinnat"), "</th></tr>";
//Haetaan tallennetut kyselyt
$query = "SELECT distinct kuka.nimi, kuka.kuka, tallennetut_parametrit.nimitys
FROM tallennetut_parametrit
JOIN kuka on (kuka.yhtio = tallennetut_parametrit.yhtio and kuka.kuka = tallennetut_parametrit.kuka)
WHERE tallennetut_parametrit.yhtio = '$kukarow[yhtio]'
and tallennetut_parametrit.sovellus = '$_SERVER[SCRIPT_NAME]'
ORDER BY tallennetut_parametrit.nimitys";
$sresult = pupe_query($query);
echo "<tr><td>", t("Valitse raportti"), ":</td>";
echo "<td><select name='kysely' onchange='document.getElementById(\"tee\").value = \"lataavanha\";submit();'>";
echo "<option value=''>", t("Valitse"), "</option>";
while ($srow = mysql_fetch_assoc($sresult)) {
$sel = '';
if ($kysely == $srow["kuka"]."#".$srow["nimitys"]) {
$sel = "selected";
}
echo "<option value='$srow[kuka]#$srow[nimitys]' $sel>$srow[nimitys] ($srow[nimi])</option>";
}
echo "</select> ";
echo "<input type='button' value='", t("Tallenna"), "' onclick='document.getElementById(\"tee\").value = \"tallenna\";submit();'></td></tr>";
echo "<tr><td>", t("Tallenna uusi raportti"), ":</td>";
echo "<td><input type='text' name='uusirappari' value=''> ";
echo "<input type='submit' id='tallenna_button' value='", t("Tallenna"), "' onclick=\"document.getElementById('tee').value = 'uusiraportti'\"></td>";
echo "</tr>";
echo "<tr><td class='back'> </td></tr>";
echo "<tr><th colspan='2'>", t("Tiedoston syättä"), "</th></tr>";
echo "<tr><td>", t("Valitse tiedosto"), ":</td><td><input type='hidden' name='MAX_FILE_SIZE' value='50000000'><input name='userfile' type='file'></td></tr>";
echo "<tr><td class='back' colspan='2'><input type='submit' value='", t("Aja tehdas saldot"), "'></td></tr>";
echo "</form></table>";
}
if ($cli === false) require "inc/footer.inc";