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
|
<?php
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
?>
<?
/* vim: set ts=4 sw=4 et : */
require_once __DIR__ . "/check_auth.php";
require_once __DIR__ . "/../includes/common.php";
$orgaID = $_GET['id'];
$prohibit = false;
(function () use ($mysqli, $_title, $orgaID) {
$sql = "SELECT * FROM Organisationen WHERE id=?;";
$stmt = $mysqli->prepare($sql);
$stmt->bind_param('i', $orgaID);
$stmt->execute();
$r = $stmt->get_result();
$l = $r->fetch_object();
$_title = '<span class="pii">' . $l->Name . '</span> (ID ' . $orgaID . ')';
include_once __DIR__ . "/header.php";
?>
<h1 style="display: inline-block;"><span style="color: red; font-weight: bold;">Orgadatensatz löschen:</span> <?=$_title?></h1>
<?
if ($l->ID < 1) {
?>
<p><b>Kein Datensatz mit dieser ID gefunden!</b></p>
<p>Wenn Sie gerade gelöscht haben, war das Löschen erfolgreich.</p>
<? if (isset($_GET['autodel']) && $_GET['autodel'] == 1) { ?>
<script>
window.close();
</script>
<? }
exit(0);
}
$def = [
"Auszug",
[6, '_=3Name', '_PLZ', '_=2Ort']
];
include __DIR__ . '/autoform.php';
$stmt->reset();
})();
(function () use ($orgaID) {
$globstring = "{" . $orgaID . "orga}_";
require_once __DIR__ . "/doc.php";
})();
(function () use ($mysqli, $orgaID, &$num_rows) {
$title = "Spenden";
$nochosen = $nofilter = true;
$sql = "
SELECT
Spenden.ID AS SpendenID,
contract AS VertrID,
CONCAT(calls.name, ' [', contracts.call, '] - ', ContractOrga.Name) AS Vertrag,
Betrag,
DATE(Geldeingang) AS Geldeingang
FROM Spenden
LEFT JOIN contracts ON Spenden.contract = contracts.id
LEFT JOIN Förderer AS ContractPatron ON contracts.patron = ContractPatron.ID
LEFT JOIN Organisationen AS ContractOrga ON ContractPatron.Organisation = ContractOrga.ID
LEFT JOIN calls ON contracts.`call` = calls.shorthand
WHERE Spenden.Organisation=? OR ContractOrga.ID = ?
";
$stmt = $mysqli->prepare($sql);
$stmt->bind_param("ii", $orgaID, $orgaID);
$stmt->execute();
$r = $stmt->get_result();
include __DIR__ . '/autotable.php';
$stmt->reset();
})();
if ($num_rows) {
$prohibit = true;
?>
<p class="warning"><i class="fas fa-exclamation-triangle"></i> Es existieren <?=$num_rows?> Spendendatensätze, die direkt oder indirekt mit diesem Orgadatensatz verknüpft sind. Löschen daher nicht möglich.</p>
<?
}
(function () use ($mysqli, $orgaID, &$num_rows) {
$title = "Stipendien";
$nochosen = $nofilter = true;
$sql = "
SELECT
Stipendien.ID AS StipID,
Stipendien.Jahr AS Jahr,
Förderarten.Name AS Förderart
FROM Stipendien
LEFT JOIN Förderarten ON Stipendien.Förderart = Förderarten.ID
LEFT JOIN Förderer ON Stipendien.Förderer = Förderer.ID
WHERE Förderer.Organisation=? AND Förderbeginn >= '2000-01-01'
";
$stmt = $mysqli->prepare($sql);
$stmt->bind_param("i", $orgaID);
$stmt->execute();
$r = $stmt->get_result();
include __DIR__ . '/autotable.php';
$stmt->reset();
})();
if ($num_rows) {
$prohibit = true;
?>
<p class="warning"><i class="fas fa-exclamation-triangle"></i> Es existieren <?=$num_rows?> Stipendiendatensätze, die über den Fördererdatensatz mit diesem Orgadatensatz verknüpft sind. Löschen daher nicht möglich.</p>
<?
}
(function () use ($mysqli, $orgaID, &$num_rows) {
$title = "Notizen";
$nochosen = $nofilter = true;
$sql = "
SELECT
id AS NotizID,
title AS Titel,
solved AS erledigt,
changets AS `Letzte Änderung`
FROM notes
WHERE orgaid=?
";
$stmt = $mysqli->prepare($sql);
$stmt->bind_param("i", $orgaID);
$stmt->execute();
$r = $stmt->get_result();
include __DIR__ . '/autotable.php';
$stmt->reset();
})();
if ($num_rows) {
$prohibit = true;
?>
<p class="warning"><i class="fas fa-exclamation-triangle"></i> Es existieren <?=$num_rows?> Notizendatensätze, die mit diesem Orgadatensatz verknüpft sind. Löschen daher nicht möglich.</p>
<?
}
(function () use ($mysqli, $orgaID, &$num_rows) {
$title = "Organisationen";
$nochosen = $nofilter = true;
$sql = "
SELECT
ID AS OrgaID,
Name AS Organisation
FROM Organisationen
WHERE Superorganisation=?
";
$stmt = $mysqli->prepare($sql);
$stmt->bind_param("i", $orgaID);
$stmt->execute();
$r = $stmt->get_result();
include __DIR__ . '/autotable.php';
$stmt->reset();
})();
if ($num_rows) {
$prohibit = true;
?>
<p class="warning"><i class="fas fa-exclamation-triangle"></i> Es existieren <?=$num_rows?> Verknüpfungen zu Organisationen, bei der dieser diese Orga die übergeordnete Orga ist. Löschen daher nicht möglich.</p>
<?
}
(function () use ($mysqli, $orgaID, &$num_rows) {
$title = "Förderer";
$nochosen = $nofilter = true;
$sql = "
SELECT
Förderer.ID AS FoerdID
FROM Förderer
WHERE Förderer.Organisation=?
";
$stmt = $mysqli->prepare($sql);
$stmt->bind_param("i", $orgaID);
$stmt->execute();
$r = $stmt->get_result();
include __DIR__ . '/autotable.php';
$stmt->reset();
})();
if ($num_rows) {
$prohibit = true;
?>
<p class="warning"><i class="fas fa-exclamation-triangle"></i> Dieser Orga ist ein Fördererdatensatz zugeordnet. Löschen daher nicht möglich. Bitte zunächst den Fördererdatensatz löschen.</p>
<?
}
(function () use ($mysqli, $orgaID, &$num_rows) {
$title = "Verträge";
$nochosen = $nofilter = true;
$sql = "
SELECT
contracts.id AS VertrID,
contracts.`call`
FROM contracts
LEFT JOIN Förderer ON contracts.patron = Förderer.ID
WHERE Förderer.Organisation=?
";
$stmt = $mysqli->prepare($sql);
$stmt->bind_param("i", $orgaID);
$stmt->execute();
$r = $stmt->get_result();
include __DIR__ . '/autotable.php';
$stmt->reset();
})();
if ($num_rows) {
$prohibit = true;
?>
<p class="warning"><i class="fas fa-exclamation-triangle"></i> Es existieren Verknüpfungen in <?=$num_rows?> Vertragsdatensätzen. Löschen daher nicht möglich.</p>
<?
}
(function () use ($mysqli, $orgaID, &$num_rows) {
$title = "Events";
$nochosen = $nofilter = true;
$sql = "
SELECT
id AS EventID,
name AS Name,
DATE(date) AS Datum
FROM events
WHERE host=?
";
$stmt = $mysqli->prepare($sql);
$stmt->bind_param("i", $orgaID);
$stmt->execute();
$r = $stmt->get_result();
include __DIR__ . '/autotable.php';
$stmt->reset();
})();
if ($num_rows) {
$prohibit = true;
?>
<p class="warning"><i class="fas fa-exclamation-triangle"></i> Es existieren <?=$num_rows?> Verknüpfungen zu Events. Löschen daher nicht möglich.</p>
<?
}
?>
<hr>
<?
if (!$prohibit) {
?>
<button class="medium" onclick="return delOrga();" style="background: red;"><i class="far fa-trash-alt"></i> Orgadatensatz unwiderruflich löschen</button>
<?
} else {
?>
<p>Löschen derzeit nicht möglich. Zunächst Datensätze umwidmen bzw. Verknüpfungen entfernen.<p>
<?
}
?>
<script>
<? minStart(); ?>
function doSth(what) {
$.ajaxSetup({async:false});
$.post('/db/main/delorgado.php', {
'id': <?=$orgaID?>,
'what': what
});
window.location.reload();
}
function delOrga() {
doSth('orga');
}
<? minEnd(); ?>
</script>
<?
if (!$prohibit && isset($_GET['autodel']) && $_GET['autodel'] == 1) {
?>
<script>
delOrga();
</script>
<?
}
require_once __DIR__ . "/jumper.php";
exit(0);
|