1+ < include target ="__header.html " />
2+
3+ < h1 > 카트 목록</ h1 >
4+
5+ < div cond ="$XE_VALIDATOR_MESSAGE " class ="message {$XE_VALIDATOR_MESSAGE_TYPE} ">
6+ < p > {$XE_VALIDATOR_MESSAGE}</ p >
7+ </ div >
8+
9+ < div > </ div >
10+ < table id ="cartList " class ="x_table x_table-striped x_table-hover ">
11+ < caption >
12+ < strong > Total: {number_format($total_count)}, Page: {number_format($page)}/{number_format($total_page)}</ strong >
13+ </ caption >
14+ < thead >
15+ < tr >
16+ < th scope ="col "> 아이템 번호</ th >
17+ < th scope ="col "> 회원</ th >
18+ < th scope ="col "> 상품명</ th >
19+ < th scope ="col "> 상품 옵션</ th >
20+ < th scope ="col "> 수량</ th >
21+ < th scope ="col "> 금액</ th >
22+ < th scope ="col "> 카트 등록일</ th >
23+ < th scope ="col "> 상세</ th >
24+ </ tr >
25+ </ thead >
26+ < tbody >
27+ < tr loop ="$cart_item_list => $no,$val ">
28+ {@
29+ $member_data = MemberModel::getMemberInfoByMemberSrl($val-> member_srl);
30+ }
31+ < td class ="nowr "> {$val-> cart_item_srl}</ td >
32+ < td class ="nowr "> < a href ="#popup_menu_area " class ="member_{$val->member_srl} "> {$member_data-> nick_name}</ a > ({$val-> member_srl})</ td >
33+ < td class ="nowr "> {$val-> product_name}<!--@if($val->product_status != 'selling')--> (삭제됨)<!--@endif--> </ td >
34+ < td class ="nowr "> {$val-> option_title}</ td >
35+ < td class ="nowr "> {number_format($val-> quantity)}</ td >
36+ < td class ="nowr "> ₩{number_format($val-> option_price * (($val-> tax_rate/100) + 1))}</ td >
37+ < td class ="nowr "> {date('Y-m-d H:i:s', strtotime($val-> regdate))}</ td >
38+ < td class ="nowr "> < a href ="{getUrl('act','dispHotopayAdminModifyProduct','product_srl',$val->product_srl)} " title ="상품정보 "> 상품정보</ a > </ td >
39+ </ tr >
40+ < tr cond ="!$cart_item_list ">
41+ < td > {$lang-> msg_not_exist_data}</ td >
42+ </ tr >
43+ </ tbody >
44+ </ table >
45+
46+ < div class ="x_clearfix ">
47+ < form cond ="$page_navigation " action ="./ " class ="x_pagination x_pull-left " no-error-return-url ="true " style ="margin-top:0 ">
48+ < input loop ="$param => $key, $val " cond ="!in_array($key, array('mid', 'vid', 'act')) " type ="hidden " name ="{$key} " value ="{$val} " />
49+ < ul >
50+ < li class ="x_disabled "|cond ="!$page || $page == 1 "> < a href ="{getUrl('page', '')} "> « {$lang-> first_page}</ a > </ li >
51+ < block cond ="$page_navigation->first_page != 1 && $page_navigation->first_page + $page_navigation->page_count > $page_navigation->last_page - 1 && $page_navigation->page_count != $page_navigation->total_page ">
52+ {@$isGoTo = true}
53+ < li >
54+ < a href ="#goTo " data-toggle title ="{$lang->cmd_go_to_page} "> …</ a >
55+ < span cond ="$isGoTo " id ="goTo " class ="x_input-append ">
56+ < input type ="number " min ="1 " max ="{$page_navigation->last_page} " required name ="page " title ="{$lang->cmd_go_to_page} " />
57+ < button type ="submit " class ="x_add-on "> Go</ button >
58+ </ span >
59+ </ li >
60+ </ block >
61+ <!--@while($page_no = $page_navigation->getNextPage())-->
62+ {@$last_page = $page_no}
63+ < li class ="x_active "|cond ="$page_no == $page "> < a href ="{getUrl('page', $page_no)} "> {$page_no}</ a > </ li >
64+ <!--@end-->
65+ < block cond ="$last_page != $page_navigation->last_page && $last_page + 1 != $page_navigation->last_page ">
66+ {@$isGoTo = true}
67+ < li >
68+ < a href ="#goTo " data-toggle title ="{$lang->cmd_go_to_page} "> …</ a >
69+ < span cond ="$isGoTo " id ="goTo " class ="x_input-append ">
70+ < input type ="number " min ="1 " max ="{$page_navigation->last_page} " required name ="page " title ="{$lang->cmd_go_to_page} " />
71+ < button type ="submit " class ="x_add-on "> Go</ button >
72+ </ span >
73+ </ li >
74+ </ block >
75+ < li class ="x_disabled "|cond ="$page == $page_navigation->last_page "> < a href ="{getUrl('page', $page_navigation->last_page)} " title ="{$page_navigation->last_page} "> {$lang-> last_page} »</ a > </ li >
76+ </ ul >
77+ </ form >
78+ < a class ="x_pull-right x_btn x_btn-inverse " href ="{getUrl('','module','admin','act','dispHotopayAdminInsertBillingKey')} "> {$lang-> cmd_make}</ a >
79+ </ div >
80+ < form action ="./ " method ="get " class ="search center x_input-append " no-error-return-url ="true ">
81+ < input type ="hidden " name ="module " value ="{$module} " />
82+ < select name ="search_target " title ="{$lang->search_target} " style ="margin-right:4px ">
83+ < option value ="key_idx " selected ="selected "|cond ="$search_target=='key_idx' "> {$lang-> key_idx}</ option >
84+ </ select >
85+ < input type ="search " required name ="search_keyword " value ="{htmlspecialchars($search_keyword)} " />
86+ < button class ="x_btn x_btn-inverse " type ="submit "> {$lang-> cmd_search}</ button >
87+ < a class ="x_btn " href ="{getUrl('', 'module', $module, 'act', $act)} "> {$lang-> cmd_cancel}</ a >
88+ </ form >
0 commit comments