-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path_valmistus_edit.php
51 lines (44 loc) · 1.74 KB
/
_valmistus_edit.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
44
45
46
47
48
49
50
51
<div class='head'><?php echo t("Valmista tarkastukseen") ?></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 colspan='3'><?php echo $valmistus->tunnus() ?></td>
</tr>
<tr>
<th><?php echo t("Kommentti") ?></th>
<td colspan='3'><input type='text' name='kommentti' size='40'></td>
</tr>
<tr>
<th><?php echo t("Ylityötunnit") ?></th>
<td colspan='3'><input type='text' name='ylityotunnit'></td>
</tr>
<tr>
<th><?php echo t("Aloitusaika") ?></th>
<td colspan='3'><input type='text' name='pvmalku' value='<?php echo $valmistus->pvmalku ?>'></td>
</tr>
<tr>
<th><?php echo t("Lopetusaika") ?></th>
<td colspan='3'><input type='text' name='pvmloppu' value='<?php echo date('Y-m-d H:i:s', round_time(strtotime('now'))) ?>'></td>
</tr>
<tr>
<th><?php echo t("Valmiste") ?></th>
<th><?php echo t("Määrä") ?></th>
<th><?php echo t("Valmistettava määrä") ?></th>
<th><?php echo t("Ylityötunnit") ?></th>
</tr>
<?php foreach($valmistus->tuotteet() as $valmiste) { ?>
<tr>
<td><?php echo $valmiste['nimitys'] ?></td>
<td><?php echo $valmiste['varattu'] ?></td>
<td><input type='text' name='valmisteet[<?php echo $valmiste['tuoteno'] ?>][maara]' value='<?php echo $valmiste['varattu'] ?>'></td>
<td><input type='text' name='valmisteet[<?php echo $valmiste['tuoteno'] ?>][tunnit]'></td>
</tr>
<?php } ?>
</table>
<a href='valmistuslinjojen_tyojonot.php'><?php echo t("Takaisin") ?></a>
<input type='submit' value='<?php echo t("Valmis") ?>'>
</form>