Ignore:
Timestamp:
2013/01/07 18:03:31 (11 years ago)
Author:
m_uehara
Message:

#2004 郵便番号を2カラムから1カラムに変更しました。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/SC_Fpdf.php

    r22100 r22205  
    106106        $this->lfText(125, 68, $arrInfo['law_company'], 8); 
    107107        // 郵便番号 
    108         $text = '〒 ' . $arrInfo['law_zip01'] . ' - ' . $arrInfo['law_zip02']; 
     108//        $text = '〒 ' . $arrInfo['law_zip01'] . ' - ' . $arrInfo['law_zip02']; 
     109        $text = '〒 ' . $arrInfo['law_zipcode']; 
    109110        $this->lfText(125, 71, $text, 8); 
    110111        // 都道府県+所在地 
     
    150151 
    151152        // 購入者情報 
    152         $text = '〒 '.$this->arrDisp['order_zip01'].' - '.$this->arrDisp['order_zip02']; 
     153//        $text = '〒 '.$this->arrDisp['order_zip01'].' - '.$this->arrDisp['order_zip02']; 
     154        $text = '〒 '.$this->arrDisp['order_zipcode']; 
    153155        $this->lfText(23, 43, $text, 10); //購入者郵便番号 
    154156        $text = $this->arrPref[$this->arrDisp['order_pref']] . $this->arrDisp['order_addr01']; 
Note: See TracChangeset for help on using the changeset viewer.