에스크로 표시방법 변경으로 인한 주문상품 레이어 출력되지 않는 오류 수정
This commit is contained in:
@ -117,8 +117,8 @@ $listall = '<a href="'.$_SERVER['PHP_SELF'].'" class="ov_listall">전체목록</
|
|||||||
|
|
||||||
<div class="local_ov01 local_ov">
|
<div class="local_ov01 local_ov">
|
||||||
<?php echo $listall; ?>
|
<?php echo $listall; ?>
|
||||||
전체 주문내역 <?php echo $total_count; ?>건
|
전체 주문내역 <?php echo number_format($total_count); ?>건
|
||||||
<?php if($od_status == '준비') { ?>
|
<?php if($od_status == '준비' && $total_count > 0) { ?>
|
||||||
<a href="./orderdelivery.php" id="order_delivery">엑셀배송처리</a>
|
<a href="./orderdelivery.php" id="order_delivery">엑셀배송처리</a>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
@ -471,7 +471,7 @@ $(function(){
|
|||||||
var $this = $(this);
|
var $this = $(this);
|
||||||
var od_id = $this.text().replace(/[^0-9]/g, "");
|
var od_id = $this.text().replace(/[^0-9]/g, "");
|
||||||
|
|
||||||
if($this.next().size())
|
if($this.next("#orderitemlist").size())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
$("#orderitemlist").remove();
|
$("#orderitemlist").remove();
|
||||||
@ -480,7 +480,7 @@ $(function(){
|
|||||||
"./ajax.orderitem.php",
|
"./ajax.orderitem.php",
|
||||||
{ od_id: od_id },
|
{ od_id: od_id },
|
||||||
function(data) {
|
function(data) {
|
||||||
$this.parent().append("<div id=\"orderitemlist\"><div class=\"itemlist\"></div></div>");
|
$this.after("<div id=\"orderitemlist\"><div class=\"itemlist\"></div></div>");
|
||||||
$("#orderitemlist .itemlist")
|
$("#orderitemlist .itemlist")
|
||||||
.html(data)
|
.html(data)
|
||||||
.append("<div id=\"orderitemlist_close\"><button type=\"button\" id=\"orderitemlist-x\" class=\"btn_frmline\">닫기</button></div>");
|
.append("<div id=\"orderitemlist_close\"><button type=\"button\" id=\"orderitemlist-x\" class=\"btn_frmline\">닫기</button></div>");
|
||||||
|
|||||||
Reference in New Issue
Block a user