#235 복합과세 설정 추가

This commit is contained in:
chicpro
2013-06-18 10:19:52 +09:00
parent 91a91cb538
commit 8ba2a84198
6 changed files with 41 additions and 4 deletions

View File

@ -296,7 +296,8 @@ CREATE TABLE IF NOT EXISTS `shop_default` (
`de_taxsave_use` tinyint(4) NOT NULL,
`de_guest_privacy` text NOT NULL,
`de_hp_use` tinyint(4) NOT NULL DEFAULT '0',
`de_escrow_use` tinyint(4) NOT NULL DEFAULT '0'
`de_escrow_use` tinyint(4) NOT NULL DEFAULT '0',
`de_tax_flag_use` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
@ -418,6 +419,7 @@ CREATE TABLE IF NOT EXISTS `shop_item` (
`it_price` int(11) NOT NULL DEFAULT '0',
`it_point` int(11) NOT NULL DEFAULT '0',
`it_point_type` tinyint(4) NOT NULL DEFAULT '0',
`it_notax` tinyint(4) NOT NULL DEFAULT '0',
`it_sell_email` varchar(255) NOT NULL DEFAULT '',
`it_use` tinyint(4) NOT NULL DEFAULT '0',
`it_stock_qty` int(11) NOT NULL DEFAULT '0',