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
77
78
79
80
81
82
|
<?php require_once "inc/configure.php"; $row = null; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>ENZA</title> <link rel="stylesheet" type="text/css" href="css/style.css" /> <?php require_once "inc/jsheader.php"; ?> </head> <body> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td valign="top" class="top"><?php require"mod_webhead.php"; ?></td> </tr> <tr> <td><table width="1000" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="200" valign="top" class="menu_bg"><?php require"mod_menu.php"; ?></td> <td valign="top" class="padding1"><table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr></tr> <tr> <td class="c1_bg"><table width="100%" border="0" cellpadding="0" cellspacing="0" class="search"> <tr> <td width="80" valign="top" ><span class="stext1"><?=SERVICES?> <?=COST?>:</span></td> <td width="400" valign="top"></td> <td align="right" valign="top"><a href="master_svc_addform.php"><img src="image/btn_new.jpg" width="52" height="20" /></a></td></tr> </table></td> </tr> <tr>
<td valign="top" class="c2_bg"> <!-- content--> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0" class="tablelist"> <!-- <tr> <th align="left">ModifyForm</th> <th align="left">Table</th> </tr>--> <tr> <td valign="top"><!--master add form-->
<form action="master_svc_add.php" method="post"> <input type="hidden" name="refid" value="<?=$row['refid']?>" /> <table> <tr> <th colspan="2"><?=ADD?><?=WS?><?=SERVICES?></th> </tr>
<tr> <td><?=CODE?></td> <td><input name="code" type="text" value="<?=$row['code']?>" /></td> </tr> <tr> <td><?=UNITPRICE?></td> <td><input name="unit_price" type="text" value="<?=$row['unit_price']?>"class="positive" /><select name="uom_cy"><?=master_option("UOM_CY", $row['uom_cy'])?></select>/<select name="uom_svc"><?=master_option("UOM_SVC", $row['uom_svc'])?></select></td> </tr> </table> <input name="submit" type="submit" /> <input type="hidden" name="action" value="master_svc_addform"/> <input name="Cancel" value="Cancel" type="button" onclick="location.href='master_svc_addform.php?typeid=<?=$row['typeid']?>'"/> </form> <!-- end of addform--></td> <td valign="top" align="right"><?=master_svc_table($row['refid'], true);?></td> </tr> </table></td> </tr> </table> <!-- end of content--> </td>
</tr> </table></td> </tr> </table></td> </tr> </table> </body> </html>
|