-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathavaa_keikka.php
94 lines (74 loc) · 2.38 KB
/
avaa_keikka.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
<?php
require "inc/parametrit.inc";
print "<font class='head'>".t("Avaa saapuminen")."</font><hr>";
if ($tee == "avaa") {
// Nollataan mapvm, koska se ylikirjataan joka tapauksessa kun keikka loppulasketaan uudestaan
$query = "UPDATE lasku
SET alatila = '',
kohdistettu = 'K',
mapvm = '0000-00-00'
WHERE yhtio = '$kukarow[yhtio]'
and tila = 'K'
and laskunro = '$keikka'
and tunnus = '$tunnus'
and vanhatunnus = 0";
$res = pupe_query($query);
if (mysql_affected_rows() != 1) {
echo "<font class='error'>".t("Saapumisen avaus epäonnistui")."!</font>";
$tee = "etsi";
}
else {
echo "<font class='message'>".t("Saapuminen avattu")."!</font>";
$tee = "";
}
echo "<br><br>";
}
if ($tee == "etsi") {
$query = "SELECT *
FROM lasku
WHERE yhtio = '$kukarow[yhtio]'
and tila = 'K'
and laskunro = '$keikka'
and vanhatunnus = 0
and alatila = 'X'
and kohdistettu = 'X'";
$res = pupe_query($query);
if (mysql_num_rows($res) == 1) {
$row = mysql_fetch_array($res);
echo "<form method='post'>";
echo "<input type='hidden' name='tee' value='avaa'>";
echo "<input type='hidden' name='tunnus' value='$row[tunnus]'>";
echo "<input type='hidden' name='keikka' value='$row[laskunro]'>";
echo "<table>";
echo "<tr>";
echo "<th>".t("saapuminen")."</th>";
echo "<th>".t("ytunnus")."</th>";
echo "<th>".t("nimi")."</th>";
echo "<th>".t("tapvm")."</th>";
echo "<th></th>";
echo "</tr>";
echo "<tr>";
echo "<td>$row[laskunro]</td>";
echo "<td>$row[ytunnus]</td>";
echo "<td>$row[nimi]</td>";
echo "<td>$row[tapvm]</td>";
echo "<td><input type='submit' value='".t("Avaa")."'></td>";
echo "</tr>";
echo "</table><br>";
echo "</form>";
}
else {
echo "<font class='error'>".t("Saapumista ei löytynyt").": $keikka!</font>";
}
}
echo "<form method='post'>";
echo "<input type='hidden' name='tee' value='etsi'>";
echo "<table>";
echo "<tr>";
echo "<th>".t("Syötä saapumisnumero").":</th>";
echo "<td><input type='text' name='keikka'></td>";
echo "</tr>";
echo "</table>";
echo "<br><input type='submit' value='".t("Etsi saapuminen")."'>";
echo "</form>";
require "inc/footer.inc";