에스크로 결제를 사용할 때만 주문내역 리스트에 적용되도록 수정
This commit is contained in:
@ -185,8 +185,10 @@ $listall = '<a href="'.$_SERVER['PHP_SELF'].'" class="ov_listall">전체목록</
|
|||||||
<label for="od_misu04">포인트주문</label>
|
<label for="od_misu04">포인트주문</label>
|
||||||
<input type="checkbox" name="od_coupon" value="Y" id="od_misu05" <?php echo get_checked($od_coupon, 'Y'); ?>>
|
<input type="checkbox" name="od_coupon" value="Y" id="od_misu05" <?php echo get_checked($od_coupon, 'Y'); ?>>
|
||||||
<label for="od_misu05">쿠폰</label>
|
<label for="od_misu05">쿠폰</label>
|
||||||
|
<?php if($default['de_escrow_use']) { ?>
|
||||||
<input type="checkbox" name="od_escrow" value="Y" id="od_misu06" <?php echo get_checked($od_escrow, 'Y'); ?>>
|
<input type="checkbox" name="od_escrow" value="Y" id="od_misu06" <?php echo get_checked($od_escrow, 'Y'); ?>>
|
||||||
<label for="od_misu06">에스크로</label>
|
<label for="od_misu06">에스크로</label>
|
||||||
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="sch_last">
|
<div class="sch_last">
|
||||||
@ -286,7 +288,7 @@ $listall = '<a href="'.$_SERVER['PHP_SELF'].'" class="ov_listall">전체목록</
|
|||||||
$delivery_company = $row['od_delivery_company'] ? $row['od_delivery_company'] : $default['de_delivery_company'];
|
$delivery_company = $row['od_delivery_company'] ? $row['od_delivery_company'] : $default['de_delivery_company'];
|
||||||
|
|
||||||
$tr_bg = 'tr_bg'.($i%2);
|
$tr_bg = 'tr_bg'.($i%2);
|
||||||
if($row['od_escrow'])
|
if($default['de_escrow_use'] && $row['od_escrow'])
|
||||||
$tr_bg .= 'escrow';
|
$tr_bg .= 'escrow';
|
||||||
?>
|
?>
|
||||||
<tr class="orderlist<?php echo ' '.$tr_bg; ?>">
|
<tr class="orderlist<?php echo ' '.$tr_bg; ?>">
|
||||||
|
|||||||
Reference in New Issue
Block a user