Jacek Kowalski
2012-07-07 4670c76fe96e1ff78ff094e6fae8469d2d10d747
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
4670c7 17 <p>Poniżej znajduje się lista zmian do wykonania. Aby nie dokonywać danej zmiany należy odznaczyć odpowiednie pole wyboru.</p>
175a52 18
JK 19 <form action="finish.php">
20 <table class="width">
4670c7 21 <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>
175a52 22 <?php
JK 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     }
4670c7 35     
JK 36     $location = $loc->getAttribute('regal').'/'.$loc->getAttribute('polka').'/'.$loc->getAttribute('rzad');
175a52 37     
JK 38     foreach($loc->childNodes as $node) {
39         if(!($node instanceof DOMElement) || $node->tagName != 'ksiazka') {
40             continue;
41         }
42         if($node->hasAttribute('status') && $node->getAttribute('status') == 'ok') {
43             continue;
44         }
45         
46         $dane = array(
47             'id' => substr($node->getAttribute('id'), 1),
48             'status' => $node->getAttribute('status'),
49         );
50         
51         foreach($node->childNodes as $attr) {
52             if($node instanceof DOMElement) {
53                 $dane[$attr->tagName] = htmlspecialchars($attr->textContent);
54             }
55         }
56         
4670c7 57         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>';
JK 58         if($dane['status'] == 'moved') {
59             echo '<label><input type="checkbox" name="move['.$dane['id'].']" value="'.htmlspecialchars($location).'" checked="checked" />Przenieś do '.htmlspecialchars($location).'</label>';
60         }
61         else
62         {
63             echo '<label><input type="checkbox" name="repulse['.$dane['id'].']" value="1" checked="checked" />Wycofaj</label>';
64         }
65         echo '</td> </tr>'."\n";
175a52 66     }
JK 67 }
68 ?>
69 </table>
70
4670c7 71 <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>
175a52 72 </form>
JK 73
74 <?php
75 include('design/bottom.php');
76 ?>