-
Notifications
You must be signed in to change notification settings - Fork 0
/
_keskeyta_valmistus.php
executable file
·43 lines (36 loc) · 1.12 KB
/
_keskeyta_valmistus.php
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
<div class='head'><?php echo t("Keskeytä työ") ?></div>
<form method='POST'>
<input type='hidden' name='tee' value='update'>
<input type='hidden' name='tunnus' value='<?php echo $valmistus->tunnus() ?>'>
<input type='hidden' name='tila' value='<?php echo $tila ?>'>
<table>
<tr>
<th><?php echo t("Valmistus") ?></th>
<td><?php echo $valmistus->tunnus() ?></td>
</tr>
<tr>
<th><?php echo t("Ylityötunnit") ?></th>
<td><input type='text' name='ylityotunnit'></td>
</tr>
<tr>
<th><?php echo t("Käytetyt tunnit") ?></th>
<td><input type='text' name='kaytetyttunnit'></td>
</tr>
<tr>
<th><?php echo t("Kommentti") ?></th>
<td><input type='text' name='kommentti'></td>
</tr>
<tr>
<th><?php echo t("Valmiste") ?></th>
<th><?php echo t("Määrä") ?></th>
</tr>
<?php foreach($valmistus->tuotteet() as $valmiste) { ?>
<tr>
<td><?php echo $valmiste['nimitys'] ?></td>
<td><?php echo $valmiste['varattu'] ?></td>
</tr>
<?php } ?>
</table>
<a href='valmistuslinjojen_tyojonot.php'><?php echo t("Takaisin") ?></a>
<input type='submit' value='Valmis'>
</form>