Jacek Kowalski
2012-07-07 4670c76fe96e1ff78ff094e6fae8469d2d10d747
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
<?php
$title = 'Inwentaryzacja - rozpoczęcie';
include('design/top.php');
?>
 
<h3>Krok 3 z 3: Zakończenie inwentaryzacji</h3>
 
<?php
if(!is_file('list.xml')) {
    echo '<p>Wystąpił błąd: plik z danymi nie istnieje!</p>';
    
    include('design/bottom.php');
    die();
}
?>
 
<p>Poniżej znajduje się lista zmian do wykonania. Aby nie dokonywać danej zmiany należy odznaczyć odpowiednie pole wyboru.</p>
 
<form action="finish.php">
<table class="width">
<tr> <th> <b>Kod</b> <br /> Wyd. </th> <th> Autor <br /> <b>Tytuł</b> </th> <th> Miejsce, rok <br /> Wydawnictwo </th> <th> Akcje </th> </tr>
<?php
$doc = new DOMDocument;
if(!$doc->load('list.xml')) {
    echo '<p>Wystąpił błąd: plik z danymi nie jest poprawnym arkuszem XML!</p>';
    
    include('design/bottom.php');
    die();
}
 
foreach($doc->documentElement->childNodes as $loc) {
    if(!($loc instanceof DOMElement) || $loc->tagName != 'lokalizacja') {
        continue;
    }
    
    $location = $loc->getAttribute('regal').'/'.$loc->getAttribute('polka').'/'.$loc->getAttribute('rzad');
    
    foreach($loc->childNodes as $node) {
        if(!($node instanceof DOMElement) || $node->tagName != 'ksiazka') {
            continue;
        }
        if($node->hasAttribute('status') && $node->getAttribute('status') == 'ok') {
            continue;
        }
        
        $dane = array(
            'id' => substr($node->getAttribute('id'), 1),
            'status' => $node->getAttribute('status'),
        );
        
        foreach($node->childNodes as $attr) {
            if($node instanceof DOMElement) {
                $dane[$attr->tagName] = htmlspecialchars($attr->textContent);
            }
        }
        
        echo '<tr class="'.($dane['status'] == 'moved' ? 'poz' : 'wyc').'"> <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>';
        if($dane['status'] == 'moved') {
            echo '<label><input type="checkbox" name="move['.$dane['id'].']" value="'.htmlspecialchars($location).'" checked="checked" />Przenieś do '.htmlspecialchars($location).'</label>';
        }
        else
        {
            echo '<label><input type="checkbox" name="repulse['.$dane['id'].']" value="1" checked="checked" />Wycofaj</label>';
        }
        echo '</td> </tr>'."\n";
    }
}
?>
</table>
 
<p><input type="submit" value="Wykonaj wybrane operacje" /> <a href="locate.htm">Kontynuuj inwentaryzację</a> <a href="begin.php">Zacznij inwentaryzację od nowa</a></p>
</form>
 
<?php
include('design/bottom.php');
?>