주문상품 개수 수정 기능 추가

This commit is contained in:
chicpro
2013-07-16 16:25:36 +09:00
parent 05e556abc3
commit 8191a4b8d5
5 changed files with 162 additions and 84 deletions

View File

@ -382,4 +382,10 @@ if(!sql_query(" select rq_id from {$g4['shop_request_table']} limit 1 ", false))
PRIMARY KEY (`rq_id`)
) ", false);
}
// 수량변경 history 기록
if(!sql_query(" select od_mod_history from {$g4['shop_order_table']} limit 1 ", false)) {
sql_query(" ALTER TABLE `{$g4['shop_order_table']}`
ADD `od_mod_history` TEXT NOT NULL AFTER `od_shop_memo` ", true);
}
?>