Exemplo n.º 1
0
    }
    ?>
		</tbody>
	</table>
	<h3>List - Completed</h3>
	<table>
		<thead>
			<tr>
				<th>Document Number</th><th>Document Date</th><th>Requester</th>
				<th>from Department</th><th>to Department</th><th>Status</th>
			</tr>
		</thead>
		<tbody>
			<?php 
    try {
        $mattrans = Material_transfer::findAllComplete(10);
        foreach ($mattrans as $mattran) {
            $toBranch = new Branch($mattran->getBranchTo());
            $fromBranch = new Branch($mattran->getBranchFrom());
            echo "<tr class=\"linkable\"><td class=\"docNumber\">" . $mattran->prepareDocNumber() . "</td>";
            echo "<td>" . $mattran->prepareDocDate("j F Y") . "</td>";
            echo "<td>" . $mattran->prepareRequester() . "</td>";
            echo "<td>" . $fromBranch->prepareName() . "</td>";
            echo "<td>" . $toBranch->prepareName() . "</td>";
            echo "<td>" . $mattran->prepareStatus() . "</td></tr>";
        }
    } catch (fExpectedException $e) {
        echo $e->printMessage();
    }
    ?>
		</tbody>