주문일괄처리 수정중, 주문상태를 상수에서 직접값으로 처리 예를 들어 G5_OD_STATUS_SETTLE 결제완료 -> 입금
This commit is contained in:
@ -159,7 +159,7 @@ if(!$default['de_card_test']) {
|
||||
$sql = " update {$g5['g5_shop_order_table']}
|
||||
set od_receipt_price = od_receipt_price + '$ipgm_mnyx',
|
||||
od_receipt_time = '$tx_tm',
|
||||
od_status = '".G5_OD_STATUS_SETTLE."',
|
||||
od_status = '입금',
|
||||
od_shop_memo = concat(od_shop_memo, \"\\n개인결제 ".$row['pp_id']." 로 결제완료 - ".$receipt_time."\")
|
||||
where od_id = '{$row['od_id']}' ";
|
||||
sql_query($sql, FALSE);
|
||||
@ -169,7 +169,7 @@ if(!$default['de_card_test']) {
|
||||
$sql = " update {$g5['g5_shop_order_table']}
|
||||
set od_receipt_price = '$ipgm_mnyx',
|
||||
od_receipt_time = '$tx_tm',
|
||||
od_status = '".G5_OD_STATUS_SETTLE."'
|
||||
od_status = '입금'
|
||||
where od_id = '$order_no'
|
||||
and od_tno = '$tno' ";
|
||||
sql_query($sql, FALSE);
|
||||
|
||||
Reference in New Issue
Block a user