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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
<?php require_once "inc/configure.php";
$row = null;
$custcode = setDefaultReqVar("custcode", ''); $row['custgroup'] = substr($custcode, 0, 2); $row['loccode'] = substr($custcode, 2, 1);
$row['custname_en'] = setDefaultReqVar("custname", ''); $row['custname_sc'] = setDefaultReqVar("custname", '');
?> <!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><?=$system_var['COMPANY_NAME']?></title> <link rel="stylesheet" type="text/css" href="css/style.css" /> <?php require_once "inc/jsheader.php"; ?> </head> <body> <form action="master_customer_express_add.php" method="post"> <input type="hidden" name="action" value="customer_express_addform" /> <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="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <!--<td 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="c3_bg"><table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="20" class="separator"><input type="image" src="image/icon_save.jpg" width="20" height="20" class="pressnhide2" /></td> <td width="20" class="separator"><a href="<?=basename($_SERVER['REQUEST_URI'])?>"><img src="image/icon_undo.jpg" width="20" height="20" /></a></td> <!--<td width="20" class="separator"><img src="image/icon_redo.jpg" width="20" height="20" /></td> <td width="20" class="separator"><img src="image/icon_delete.jpg" width="20" height="20" /></td>--> <td class="separator stext1"><?=CUSTOMER?> - <span> <?=ADD?> </span></td> <!--<td class="separator etext1"><?=$row['itemno']?> - <span><?=$row['name']?></span></td>--> <!--<td width="200" align="right" class="separator etext2">Last Modified: <?=$row['lastupdate']?></td>--> <!--<td width="80" align="right" class="separator etext2"><a href="master_customer_index.php?act=resume"><img src="image/icon_close.jpg" width="20" height="20" align="absmiddle" /><?=CLOSE?></a></td>--> </tr> </table></td> </tr> <tr> <td valign="top" class="c2_bg" style="height:50px"><!--main form--> <table width="100%" border="0" cellpadding="0" cellspacing="0" > <tr> <td align="left" class="title1"><?=CUSTOMER?></td> <td align="left"> </td> </tr> <tr> <td align="left" class="form_text"><?=CUSTOMER?> <?=WS?> <?=GROUP?> :</td> <td align="left" class="form form_w"><input type="text" name="custgroup" value="<?=$row['custgroup']?>" maxlength="2"/></td> </tr> <tr> <td align="left" class="form_text"><?=CUSTOMER?> <?=WS?> <?=LOCATION?> :</td> <td align="left" class="form form_w"><select name="loccode" size="1" id="loccode"> <?=master_option("CUST_LOC", $row['loccode'], true);?> </select></td> </tr> <tr> <td align="left" class="form_text"><?=CUSTOMER?> <?=WS?> <?=NAME?> :</td> <td align="left" class="form form_w"><input type="text" name="custname_en" value="<?=$row['custname_en']?>"/></td> </tr> <tr> <td align="left" class="form_text"><?=CUSTOMER?> <?=WS?> <?=NAME?> ( <?=CHINESE?> ):</td> <td align="left" class="form form_w"><input type="text" name="custname_sc" value="<?=$row['custname_sc']?>"/></td> </tr> <tr> <td align="left" class="form_text"><?=CURRENCY?>:</td> <td align="left" class="form form_w"><select name="uom_cy"><?=master_option("UOM_CY", $row['uom_cy'], true)?></select></td> </tr> </table> <!-- end of mainform--></td> </tr> </table></td> </tr> </table></td> </tr> </table> </form> </body> </html>
|