Changeset 21515 for branches/version-2_12-dev/data/class/SC_Fpdf.php
- Timestamp:
- 2012/02/15 20:18:09 (14 years ago)
- File:
-
- 1 edited
-
branches/version-2_12-dev/data/class/SC_Fpdf.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/SC_Fpdf.php
r21514 r21515 107 107 $this->lfText(125, 63, $arrInfo['law_url'], 8); //URL 108 108 $this->lfText(125, 68, $arrInfo['law_company'], 8); //会社名 109 $text = '〒 '.$arrInfo['law_zip01']. " - ".$arrInfo['law_zip02'];109 $text = '〒 '.$arrInfo['law_zip01'].' - '.$arrInfo['law_zip02']; 110 110 $this->lfText(125, 71, $text, 8); //郵便番号 111 111 $text = $this->arrPref[$arrInfo['law_pref']].$arrInfo['law_addr01']; … … 113 113 $this->lfText(125, 77, $arrInfo['law_addr02'], 8); //住所2 114 114 115 $text = 'TEL: '.$arrInfo['law_tel01']. "-".$arrInfo['law_tel02']."-".$arrInfo['law_tel03'];115 $text = 'TEL: '.$arrInfo['law_tel01'].'-'.$arrInfo['law_tel02'].'-'.$arrInfo['law_tel03']; 116 116 //FAX番号が存在する場合、表示する 117 117 if (strlen($arrInfo['law_fax01']) > 0) { 118 $text .= ' FAX: '.$arrInfo['law_fax01']. "-".$arrInfo['law_fax02']."-".$arrInfo['law_fax03'];118 $text .= ' FAX: '.$arrInfo['law_fax01'].'-'.$arrInfo['law_fax02'].'-'.$arrInfo['law_fax03']; 119 119 } 120 120 $this->lfText(125, 80, $text, 8); //TEL・FAX … … 135 135 $this->lfText(27, 74, $this->arrData['msg2'], 8); //メッセージ2 136 136 $this->lfText(27, 78, $this->arrData['msg3'], 8); //メッセージ3 137 $text = '作成日: '.$this->arrData['year']. "年".$this->arrData['month']."月".$this->arrData['day']."日";137 $text = '作成日: '.$this->arrData['year'].'年'.$this->arrData['month'].'月'.$this->arrData['day'].'日'; 138 138 $this->lfText(158, 288, $text, 8); //作成日 139 139 } … … 144 144 145 145 // 購入者情報 146 $text = '〒 '.$this->arrDisp['order_zip01']. " - ".$this->arrDisp['order_zip02'];146 $text = '〒 '.$this->arrDisp['order_zip01'].' - '.$this->arrDisp['order_zip02']; 147 147 $this->lfText(23, 43, $text, 10); //購入者郵便番号 148 148 $text = $this->arrPref[$this->arrDisp['order_pref']] . $this->arrDisp['order_addr01']; 149 149 $this->lfText(27, 47, $text, 10); //購入者都道府県+住所1 150 150 $this->lfText(27, 51, $this->arrDisp['order_addr02'], 10); //購入者住所2 151 $text = $this->arrDisp['order_name01'].' '.$this->arrDisp['order_name02']. " 様";151 $text = $this->arrDisp['order_name01'].' '.$this->arrDisp['order_name02'].' 様'; 152 152 $this->lfText(27, 59, $text, 11); //購入者氏名 153 153 … … 189 189 $arrOrder[$i][0] .= ' ]'; 190 190 } else { 191 $arrOrder[$i][0] .= $this->lfConvSjis(' * '.$this->arrDisp['classcategory_name2'][$i]. " ]");191 $arrOrder[$i][0] .= $this->lfConvSjis(' * '.$this->arrDisp['classcategory_name2'][$i].' ]'); 192 192 } 193 193 } … … 271 271 if ($this->pdf_download == 1) { 272 272 if ($this->PageNo() == 1) { 273 $filename = 'nouhinsyo-No'.$this->arrData['order_id']. ".pdf";273 $filename = 'nouhinsyo-No'.$this->arrData['order_id'].'.pdf'; 274 274 } else { 275 275 $filename = 'nouhinsyo.pdf';
Note: See TracChangeset
for help on using the changeset viewer.
