#209 주문폼에 쿠폰 선택 기능 추가 작업

This commit is contained in:
chicpro
2013-06-07 18:04:35 +09:00
parent b6aa16deac
commit b304aa143b
10 changed files with 1310 additions and 114 deletions

View File

@ -63,6 +63,7 @@ CREATE TABLE IF NOT EXISTS `shop_cart` (
`ct_history` text NOT NULL,
`ct_price` int(11) NOT NULL DEFAULT '0',
`ct_point` int(11) NOT NULL DEFAULT '0',
`cp_amount` int(11) NOT NULL DEFAULT '0',
`ct_point_use` tinyint(4) NOT NULL DEFAULT '0',
`ct_stock_use` tinyint(4) NOT NULL DEFAULT '0',
`ct_option` varchar(255) NOT NULL DEFAULT '',
@ -588,6 +589,7 @@ CREATE TABLE IF NOT EXISTS `shop_order` (
`od_b_addr2` varchar(100) NOT NULL DEFAULT '',
`od_memo` text NOT NULL,
`od_send_cost` int(11) NOT NULL DEFAULT '0',
`od_send_coupon` int(11) NOT NULL DEFAULT '0',
`od_temp_bank` int(11) NOT NULL DEFAULT '0',
`od_temp_card` int(11) NOT NULL DEFAULT '0',
`od_temp_hp` int(11) NOT NULL,
@ -602,6 +604,7 @@ CREATE TABLE IF NOT EXISTS `shop_order` (
`od_hp_time` datetime NOT NULL,
`od_cancel_card` int(11) NOT NULL DEFAULT '0',
`od_dc_amount` int(11) NOT NULL DEFAULT '0',
`od_coupon` int(11) NOT NULL DEFAULT '0',
`od_refund_amount` int(11) NOT NULL DEFAULT '0',
`od_shop_memo` text NOT NULL,
`dl_id` int(11) NOT NULL DEFAULT '0',