Ignore:
Timestamp:
2008/04/07 20:38:10 (16 years ago)
Author:
satou
Message:

納品書発行機能 by Yammy (merge r17182)

File:
1 copied

Legend:

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

    r17182 r17232  
    2323 
    2424/*---------------------------------------------------------------------- 
    25  * [名称] GC_Fpdf 
     25 * [名称] SC_Fpdf 
    2626 * [概要] pdfファイルを表示する。 
    2727 *---------------------------------------------------------------------- 
     
    3030require(DATA_PATH . 'pdf/japanese.php'); 
    3131define('PDF_TEMPLATE_DIR', DATA_PATH . 'pdf/'); 
     32define('PDF_IMG_DIR', HTML_PATH. USER_DIR. USER_PACKAGE_DIR. TEMPLATE_NAME. '/img/pdf/'); 
    3233 
    3334class SC_Fpdf { 
    34        
    3535    function SC_Fpdf($arrData, $tpl_pdf = "template_nouhin01.pdf") { 
    3636        $this->arrData = $arrData; 
     
    9292 
    9393        //ロゴ画像 
    94         $this->pdf->Image(PDF_TEMPLATE_DIR . 'logo.png', 124, 46, 60); 
     94        $this->pdf->Image(PDF_IMG_DIR. 'logo.png', 124, 46, 60); 
    9595 
    9696        $this->createPdf(); 
     
    162162 
    163163        $monetary_unit = $this->sjis_conv("円"); 
    164         $point_unit = $this->sjis_conv("ポイント"); 
     164        $point_unit = $this->sjis_conv("pt"); 
    165165 
    166166        // 購入商品情報 
Note: See TracChangeset for help on using the changeset viewer.