Ignore:
Timestamp:
2013/01/04 16:31:37 (11 years ago)
Author:
habu
Message:

#1730 税率変更に対応できない

Location:
branches/version-2_12-dev/data/class
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_CartSession.php

    r21997 r22197  
    626626        $results['deliv_fee'] = 0; 
    627627 
     628        $arrInfo = SC_Helper_DB_Ex::sfGetBasisData(); 
     629        $results['order_tax_rate'] = $arrInfo['tax']; 
     630        $results['order_tax_rule'] = $arrInfo['tax_rule']; 
     631 
    628632        // 商品ごとの送料を加算 
    629633        if (OPTION_PRODUCT_DELIV_FEE == 1) { 
  • branches/version-2_12-dev/data/class/SC_Fpdf.php

    r22053 r22197  
    178178 
    179179            // 税込金額(単価) 
    180             $data[1] = SC_Helper_DB_Ex::sfCalcIncTax($this->arrDisp['price'][$i]); 
     180            $data[1] = SC_Helper_DB_Ex::sfCalcIncTax($this->arrDisp['price'][$i], $this->arrDisp['tax_rate'][$i], $this->arrDisp['tax_rule'][$i]); 
    181181 
    182182            // 小計(商品毎) 
     
    331331    function lfGetOrderDetail($order_id) { 
    332332        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    333         $col = 'product_id, product_class_id, product_code, product_name, classcategory_name1, classcategory_name2, price, quantity, point_rate'; 
     333        $col = 'product_id, product_class_id, product_code, product_name, classcategory_name1, classcategory_name2, price, quantity, point_rate, tax_rate, tax_rule'; 
    334334        $where = 'order_id = ?'; 
    335335        $objQuery->setOrder('order_detail_id'); 
  • branches/version-2_12-dev/data/class/helper/SC_Helper_DB.php

    r22012 r22197  
    14101410        // 店舗基本情報を取得 
    14111411        $CONF = SC_Helper_DB_Ex::sfGetBasisData(); 
    1412  
    1413         return SC_Utils_Ex::sfCalcIncTax($price, $CONF['tax'], $CONF['tax_rule']); 
     1412        $tax      = $tax      === null ? $CONF['tax']      : $tax; 
     1413        $tax_rule = $tax_rule === null ? $CONF['tax_rule'] : $tax_rule; 
     1414 
     1415        return SC_Utils_Ex::sfCalcIncTax($price, $tax, $tax_rule); 
    14141416    } 
    14151417 
  • branches/version-2_12-dev/data/class/helper/SC_Helper_Purchase.php

    r22089 r22197  
    857857            $arrDetail[$i]['price'] = $item['price']; 
    858858            $arrDetail[$i]['quantity'] = $item['quantity']; 
     859            $arrDetail[$i]['tax_rate'] = $orderParams['order_tax_rate']; 
     860            $arrDetail[$i]['tax_rule'] = $orderParams['order_tax_rule']; 
    859861 
    860862            // 在庫の減少処理 
     
    993995            T2.quantity, 
    994996            T2.point_rate, 
     997            T2.tax_rate, 
     998            T2.tax_rule, 
    995999__EOS__; 
    9961000        if ($has_order_status) { 
  • branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Disp.php

    r21867 r22197  
    194194        $objFormParam->addParam('メモ', 'note', MTEXT_LEN, 'KVa', array('MAX_LENGTH_CHECK')); 
    195195        $objFormParam->addParam('削除用項番', 'delete_no', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); 
     196        $objFormParam->addParam('消費税率', 'tax_rate'); 
     197        $objFormParam->addParam('課税規則', 'tax_rule'); 
    196198 
    197199        // DB読込用 
  • branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php

    r21981 r22197  
    9898        $this->arrDeliv = SC_Helper_DB_Ex::sfGetIDValueList('dtb_deliv', 'deliv_id', 'name'); 
    9999 
     100        $this->arrInfo = SC_Helper_DB_Ex::sfGetBasisData(); 
     101 
    100102        $this->httpCacheControl('nocache'); 
    101103    } 
     
    261263        $this->arrDelivTime = $objPurchase->getDelivTime($objFormParam->getValue('deliv_id')); 
    262264        $this->tpl_onload .= $this->getAnchorKey($objFormParam); 
    263         $this->arrInfo = SC_Helper_DB_Ex::sfGetBasisData(); 
    264265        if ($arrValuesBefore['payment_id']) 
    265266            $this->arrPayment[$arrValuesBefore['payment_id']] = $arrValuesBefore['payment_method']; 
     
    330331        $objFormParam->addParam('規格名1', 'classcategory_name1'); 
    331332        $objFormParam->addParam('規格名2', 'classcategory_name2'); 
     333        $objFormParam->addParam('税率', 'tax_rate'); 
     334        $objFormParam->addParam('課税規則', 'tax_rule'); 
    332335        $objFormParam->addParam('メモ', 'note', MTEXT_LEN, 'KVa', array('MAX_LENGTH_CHECK')); 
    333336        $objFormParam->addParam('削除用項番', 'delete_no', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); 
     
    351354        $objFormParam->addParam('入金日', 'payment_date'); 
    352355        $objFormParam->addParam('端末種別', 'device_type_id'); 
     356        $objFormParam->addParam('税率', 'order_tax_rate'); 
     357        $objFormParam->addParam('課税規則', 'order_tax_rule'); 
    353358 
    354359        // 複数情報 
     
    577582        for ($i = 0; $i < $max; $i++) { 
    578583            // 小計の計算 
    579             $subtotal += SC_Helper_DB_Ex::sfCalcIncTax($arrValues['price'][$i]) * $arrValues['quantity'][$i]; 
     584            $subtotal += SC_Helper_DB_Ex::sfCalcIncTax($arrValues['price'][$i], $arrValues['tax_rate'][$i], $arrValues['tax_rule'][$i]) * $arrValues['quantity'][$i]; 
    580585            // 小計の計算 
    581             $totaltax += SC_Helper_DB_Ex::sfTax($arrValues['price'][$i]) * $arrValues['quantity'][$i]; 
     586            $totaltax += SC_Utils_Ex::sfTax($arrValues['price'][$i], $arrValues['tax_rate'][$i], $arrValues['tax_rule'][$i]) * $arrValues['quantity'][$i]; 
    582587            // 加算ポイントの計算 
    583588            $totalpoint += SC_Utils_Ex::sfPrePoint($arrValues['price'][$i], $arrValues['point_rate'][$i]) * $arrValues['quantity'][$i]; 
     
    672677                'classcategory_name1', 
    673678                'classcategory_name2', 
     679                'tax_rate', 
     680                'tax_rule' 
    674681        )); 
    675682 
     
    808815            $arrProduct['quantity'] = 1; 
    809816            $arrProduct['price'] = $arrProduct['price02']; 
     817            $arrProduct['tax_rate'] = $objFormParam->getValue('order_tax_rate') == '' ? $this->arrInfo['tax']      : $objFormParam->getValue('order_tax_rate'); 
     818            $arrProduct['tax_rule'] = $objFormParam->getValue('order_tax_rule') == '' ? $this->arrInfo['tax_rule'] : $objFormParam->getValue('order_tax_rule'); 
    810819            $arrProduct['product_name'] = $arrProduct['name']; 
    811820 
     
    813822                'product_id', 'product_class_id', 'product_type_id', 'point_rate', 
    814823                'product_code', 'product_name', 'classcategory_name1', 'classcategory_name2', 
    815                 'quantity', 'price', 
     824                'quantity', 'price', 'tax_rate', 'tax_rule' 
    816825            ); 
    817826            foreach ($arrUpdateKeys as $key) { 
     
    850859            'product_id', 'product_class_id', 'product_type_id', 'point_rate', 
    851860            'product_code', 'product_name', 'classcategory_name1', 'classcategory_name2', 
    852             'quantity', 'price', 
     861            'quantity', 'price', 'tax_rate', 'tax_rule' 
    853862        ); 
    854863        foreach ($arrDeleteKeys as $key) { 
Note: See TracChangeset for help on using the changeset viewer.