commit | author | age
|
175a52
|
1 |
<?php |
JK |
2 |
$title = 'Inwentaryzacja - rozpoczęcie'; |
|
3 |
include('design/top.php'); |
|
4 |
?> |
|
5 |
|
|
6 |
<h3>Krok 3 z 3: Zakończenie inwentaryzacji</h3> |
|
7 |
|
|
8 |
<?php |
|
9 |
if(!is_file('list.xml')) { |
|
10 |
echo '<p>Wystąpił błąd: plik z danymi nie istnieje!</p>'; |
|
11 |
|
|
12 |
include('design/bottom.php'); |
|
13 |
die(); |
|
14 |
} |
|
15 |
?> |
|
16 |
|
|
17 |
<p>Poniżej znajduje się lista zmian do wykonania. Aby zatrzymać dane zmiany należy odznaczyć odpowiednie pole wyboru.</p> |
|
18 |
|
|
19 |
<form action="finish.php"> |
|
20 |
<table class="width"> |
|
21 |
<tr> <th>Okł.</th> <th> <b>Kod</b> <br /> Wyd. </th> <th> Autor <br /> <b>Tytuł</b> </th> <th> Miejsce, rok <br /> Wydawnictwo </th> <th> Akcje </th> </tr> |
|
22 |
<?php |
|
23 |
$doc = new DOMDocument; |
|
24 |
if(!$doc->load('list.xml')) { |
|
25 |
echo '<p>Wystąpił błąd: plik z danymi nie jest poprawnym arkuszem XML!</p>'; |
|
26 |
|
|
27 |
include('design/bottom.php'); |
|
28 |
die(); |
|
29 |
} |
|
30 |
|
|
31 |
foreach($doc->documentElement->childNodes as $loc) { |
|
32 |
if(!($loc instanceof DOMElement) || $loc->tagName != 'lokalizacja') { |
|
33 |
continue; |
|
34 |
} |
|
35 |
|
|
36 |
foreach($loc->childNodes as $node) { |
|
37 |
if(!($node instanceof DOMElement) || $node->tagName != 'ksiazka') { |
|
38 |
continue; |
|
39 |
} |
|
40 |
if($node->hasAttribute('status') && $node->getAttribute('status') == 'ok') { |
|
41 |
continue; |
|
42 |
} |
|
43 |
|
|
44 |
$dane = array( |
|
45 |
'id' => substr($node->getAttribute('id'), 1), |
|
46 |
'status' => $node->getAttribute('status'), |
|
47 |
); |
|
48 |
|
|
49 |
foreach($node->childNodes as $attr) { |
|
50 |
if($node instanceof DOMElement) { |
|
51 |
$dane[$attr->tagName] = htmlspecialchars($attr->textContent); |
|
52 |
} |
|
53 |
} |
|
54 |
|
|
55 |
echo '<tr> <td></td> <td> <b>'.$dane['id'].'</b> <br /> </td> <td>'.$dane['autor'].' <br /> <b>'.$dane['tytul'].'</b></td> <td>'.$dane['miejsce'].' '.$dane['rok'].' <br /> '.$dane['wydawnictwo'].'</td> <td></td> </tr>'."\n"; |
|
56 |
} |
|
57 |
} |
|
58 |
?> |
|
59 |
</table> |
|
60 |
|
|
61 |
<p><input type="submit" value="Wykonaj wybrane operacje" /></p> |
|
62 |
</form> |
|
63 |
|
|
64 |
<?php |
|
65 |
include('design/bottom.php'); |
|
66 |
?> |