[Tep-j-general] Re: ゆうパックでの送料の設定について

Back to archive index

TAMURA Toshihiko tamur****@bitsc*****
2004年 5月 12日 (水) 16:38:50 JST


こんにちは、田村です。

kono さん:

> ゆうパックで、送料を一律500円、但し、沖縄・北海道は1000円
> とかの設定をしたいと思っています。

catalog/includes/classes/_yuupack.php の中の
function GetQuote() {...} の部分を、
以下のように変更すればいいと思います。

----------------------------------------
  function GetQuote() {
    // JIS都道府県コード => 配送料金
    $a_price = array(
      '01'=>1000,  // 北海道
      '47'=>1000,  // 沖縄県
      'all'=>500   // その他
    );

    if ( $this->OriginCountryCode == 'JP' && $this->DestCountryCode == 'JP' ) {
      $this->quote['cost'] = $a_price[$this->DestZone]
        ? $a_price[$this->DestZone]
        : $a_price['all'];
    } else {
      $this->quote['error'] = MODULE_SHIPPING_YUUPACK_TEXT_NOTAVAILABLE
       . ' (' . $this->OriginCountryCode . '=>' . $this->DestCountryCode . ')';
    }

    return $this->quote;
  }
----------------------------------------

-- 
田村敏彦 / 株式会社ビットスコープ
E-mail:tamur****@bitsc*****
http://www.bitscope.co.jp/





Tep-j-general メーリングリストの案内
Back to archive index