관리자 경로 수정 작업 중

This commit is contained in:
chicpro
2013-03-15 17:20:21 +09:00
parent fecde18782
commit 79cbd300f9
24 changed files with 812 additions and 812 deletions

View File

@ -1,14 +1,14 @@
<?
$sub_menu = "500110";
include_once("./_common.php");
$sub_menu = '500110';
include_once('./_common.php');
auth_check($auth[$sub_menu], "r");
$g4[title] = "매출현황";
include_once ("$g4[admin_path]/admin.head.php");
$g4['title'] = '매출현황';
include_once (G4_ADMIN_PATH.'/admin.head.php');
?>
<?=subtitle($g4[title])?>
<?=subtitle($g4['title'])?>
<table cellpadding=0 cellspacing=0 border=0>
<colgroup width=150></colgroup>
@ -18,7 +18,7 @@ include_once ("$g4[admin_path]/admin.head.php");
<form name=frm_sale_today action='./sale1today.php'>
<td>당일 매출현황</td>
<td align=right>
<input type=text name=date size=8 maxlength=8 value='<? echo date("Ymd", $g4['server_time']) ?>' class=ed>
<input type=text name=date size=8 maxlength=8 value='<? echo date("Ymd", G4_SERVER_TIME) ?>' class=ed>
일 하루
<input type=submit class=btn1 value=' 확 인 '>
</td>
@ -29,9 +29,9 @@ include_once ("$g4[admin_path]/admin.head.php");
<form name=frm_sale_date action='./sale1date.php'>
<td>일별 매출현황</td>
<td align=right>
<input type=text name=fr_date size=8 maxlength=8 value='<? echo date("Ym01", $g4['server_time']) ?>' class=ed>
<input type=text name=fr_date size=8 maxlength=8 value='<? echo date("Ym01", G4_SERVER_TIME) ?>' class=ed>
일 부터
<input type=text name=to_date size=8 maxlength=8 value='<? echo date("Ymd", $g4['server_time']) ?>' class=ed>
<input type=text name=to_date size=8 maxlength=8 value='<? echo date("Ymd", G4_SERVER_TIME) ?>' class=ed>
일 까지
<input type=submit class=btn1 value=' 확 인 '>
</td>
@ -42,9 +42,9 @@ include_once ("$g4[admin_path]/admin.head.php");
<form name=frm_sale_month action='./sale1month.php'>
<td>월별 매출현황</td>
<td align=right>
<input type=text name=fr_date size=6 maxlength=6 value='<? echo date("Y01", $g4['server_time']) ?>' class=ed>
<input type=text name=fr_date size=6 maxlength=6 value='<? echo date("Y01", G4_SERVER_TIME) ?>' class=ed>
월 부터
<input type=text name=to_date size=6 maxlength=6 value='<? echo date("Ym", $g4['server_time']) ?>' class=ed>
<input type=text name=to_date size=6 maxlength=6 value='<? echo date("Ym", G4_SERVER_TIME) ?>' class=ed>
월 까지
<input type=submit class=btn1 value=' 확 인 '>
</td>
@ -55,9 +55,9 @@ include_once ("$g4[admin_path]/admin.head.php");
<form name=frm_sale_year action='./sale1year.php'>
<td>연별 매출현황</td>
<td align=right>
<input type=text name=fr_date size=4 maxlength=4 value='<? echo date("Y", $g4['server_time'])-1 ?>' class=ed>
<input type=text name=fr_date size=4 maxlength=4 value='<? echo date("Y", G4_SERVER_TIME)-1 ?>' class=ed>
년 부터
<input type=text name=to_date size=4 maxlength=4 value='<? echo date("Y", $g4['server_time']) ?>' class=ed>
<input type=text name=to_date size=4 maxlength=4 value='<? echo date("Y", G4_SERVER_TIME) ?>' class=ed>
년 까지
<input type=submit class=btn1 value=' 확 인 '>
</td>
@ -67,5 +67,5 @@ include_once ("$g4[admin_path]/admin.head.php");
</table>
<?
include_once ("$g4[admin_path]/admin.tail.php");
include_once (G4_ADMIN_PATH.'/admin.tail.php');
?>