Changeset 22974


Ignore:
Timestamp:
2013/07/20 16:14:52 (11 years ago)
Author:
AMUAMU
Message:

#1730 (税率変更に対応できない)
#2191 (税率対応に向けて、税率管理画面を作成する)
#2235 (越境ECを想定した機能の追加)
関係の修正一部

Location:
branches/version-2_13-dev/html/install/sql
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/html/install/sql/create_table_mysql.sql

    r22843 r22974  
    7474    zip01 text, 
    7575    zip02 text, 
     76    zipcode text, 
    7677    country_id int, 
    7778    pref smallint, 
     
    8990    law_zip01 text, 
    9091    law_zip02 text, 
     92    law_zipcode text, 
    9193    law_country_id int, 
    9294    law_pref smallint, 
     
    480482    name01 text NOT NULL, 
    481483    name02 text NOT NULL, 
    482     kana01 text NOT NULL, 
    483     kana02 text NOT NULL, 
     484    kana01 text, 
     485    kana02 text, 
    484486    zip01 text, 
    485487    zip02 text, 
     488    zipcode text, 
    486489    country_id int, 
    487490    pref smallint, 
     
    538541    order_zip01 text, 
    539542    order_zip02 text, 
     543    order_zipcode text, 
    540544    order_country_id int, 
    541545    order_pref smallint, 
     
    554558    birth_point numeric NOT NULL DEFAULT 0, 
    555559    tax numeric, 
    556     order_tax_rate numeric, 
    557     order_tax_rule smallint, 
    558560    total numeric, 
    559561    payment_total numeric, 
     
    598600    order_zip01 text, 
    599601    order_zip02 text, 
     602    order_zipcode text, 
    600603    order_country_id int, 
    601604    order_pref smallint, 
     
    614617    birth_point numeric NOT NULL DEFAULT 0, 
    615618    tax numeric, 
    616     order_tax_rate numeric, 
    617     order_tax_rule smallint, 
    618619    total numeric, 
    619620    payment_total numeric, 
     
    661662    shipping_zip01 text, 
    662663    shipping_zip02 text, 
     664    shipping_zipcode text, 
    663665    shipping_addr01 text, 
    664666    shipping_addr02 text, 
     
    697699    zip01 text, 
    698700    zip02 text, 
     701    zipcode text, 
    699702    country_id int, 
    700703    pref smallint, 
  • branches/version-2_13-dev/html/install/sql/create_table_pgsql.sql

    r22843 r22974  
    7474    zip01 text, 
    7575    zip02 text, 
     76    zipcode text, 
    7677    country_id int, 
    7778    pref smallint, 
     
    8990    law_zip01 text, 
    9091    law_zip02 text, 
     92    law_zipcode text, 
    9193    law_country_id int, 
    9294    law_pref smallint, 
     
    480482    name01 text NOT NULL, 
    481483    name02 text NOT NULL, 
    482     kana01 text NOT NULL, 
    483     kana02 text NOT NULL, 
     484    kana01 text, 
     485    kana02 text, 
    484486    zip01 text, 
    485487    zip02 text, 
     488    zipcode text, 
    486489    country_id int, 
    487490    pref smallint, 
     
    538541    order_zip01 text, 
    539542    order_zip02 text, 
     543    order_zipcode text, 
    540544    order_country_id int, 
    541545    order_pref smallint, 
     
    554558    birth_point numeric NOT NULL DEFAULT 0, 
    555559    tax numeric, 
    556     order_tax_rate numeric, 
    557     order_tax_rule smallint, 
    558560    total numeric, 
    559561    payment_total numeric, 
     
    598600    order_zip01 text, 
    599601    order_zip02 text, 
     602    order_zipcode text, 
    600603    order_country_id int, 
    601604    order_pref smallint, 
     
    614617    birth_point numeric NOT NULL DEFAULT 0, 
    615618    tax numeric, 
    616     order_tax_rate numeric, 
    617     order_tax_rule smallint, 
    618619    total numeric, 
    619620    payment_total numeric, 
     
    661662    shipping_zip01 text, 
    662663    shipping_zip02 text, 
     664    shipping_zipcode text, 
    663665    shipping_addr01 text, 
    664666    shipping_addr02 text, 
     
    697699    zip01 text, 
    698700    zip02 text, 
     701    zipcode text, 
    699702    country_id int, 
    700703    pref smallint, 
  • branches/version-2_13-dev/html/install/sql/insert_data.sql

    r22960 r22974  
    12571257INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('DEFAULT_COUNTRY_ID', 392, 1413, 'デフォルト国コード ISO_3166-1に準拠'); 
    12581258INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('USE_NORMALIZE_HOSTNAME', true, 1414, 'ホスト名を正規化するか (true:する false:しない)'); 
     1259INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('FORM_COUNTRY_ENABLE', 'false', 1414, '各種フォームで国の指定を有効にする(true:有効 false:無効)'); 
     1260INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('OPTION_PRODUCT_TAX_RULE', '0', 1415, '商品ごとの税率設定(軽減税率対応 有効:1 無効:0) '); 
     1261INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('TAX_RULE_PRIORITY', '"product_id,product_class_id,pref_id,country_id"', 1416, '複数箇所の税率設定時における優先度設定。カンマ区切りスペース不可で記述。後に書いてあるキーに一致するほど優先される。デフォルト:''product_id,product_class_id,pref_id,country_id''(国>地域(県)>規格単位>商品単位)'); 
    12591262 
    12601263 
Note: See TracChangeset for help on using the changeset viewer.