에스크로 결제를 사용할 때만 주문내역 리스트에 적용되도록 수정

This commit is contained in:
chicpro
2013-11-07 13:13:59 +09:00
parent d17fa482ed
commit 0f505298b7

View File

@ -185,8 +185,10 @@ $listall = '<a href="'.$_SERVER['PHP_SELF'].'" class="ov_listall">전체목록</
<label for="od_misu04">포인트주문</label>
<input type="checkbox" name="od_coupon" value="Y" id="od_misu05" <?php echo get_checked($od_coupon, 'Y'); ?>>
<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'); ?>>
<label for="od_misu06">에스크로</label>
<?php } ?>
</div>
<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'];
$tr_bg = 'tr_bg'.($i%2);
if($row['od_escrow'])
if($default['de_escrow_use'] && $row['od_escrow'])
$tr_bg .= 'escrow';
?>
<tr class="orderlist<?php echo ' '.$tr_bg; ?>">