전자결제 내역이 있는 개인결제는 노출되지 않도록 수정

This commit is contained in:
chicpro
2013-09-10 16:47:22 +09:00
parent bd5e3fdd67
commit a61215ad14
4 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ include_once(G4_MSHOP_PATH.'/_head.php');
$sql_common = " from {$g4['shop_personalpay_table']}
where pp_use = '1'
and pp_receipt_amount = '0' ";
and pp_tno = '' ";
// 총몇개 = 한줄에 몇개 * 몇줄
$items = $list_mod;

View File

@ -7,7 +7,7 @@ $pp = sql_fetch($sql);
if(!$pp['pp_id'])
alert('개인결제 정보가 존재하지 않습니다.');
if($pp['pp_receipt_amount'] > 0)
if($pp['pp_tno'])
alert('이미 결제하신 개인결제 내역입니다.');
$g4['title'] = $pp['pp_name'].'님 개인결제';

View File

@ -25,7 +25,7 @@ include_once('./_head.php');
$sql_common = " from {$g4['shop_personalpay_table']}
where pp_use = '1'
and pp_receipt_amount = '0' ";
and pp_tno = '' ";
// 총몇개 = 한줄에 몇개 * 몇줄
$items = $list_mod * $list_row;

View File

@ -12,7 +12,7 @@ $pp = sql_fetch($sql);
if(!$pp['pp_id'])
alert('개인결제 정보가 존재하지 않습니다.');
if($pp['pp_receipt_amount'] > 0)
if($pp['pp_tno'])
alert('이미 결제하신 개인결제 내역입니다.');
$g4['title'] = $pp['pp_name'].'님 개인결제';