Changeset 9894 for temp/trunk


Ignore:
Timestamp:
2006/11/30 17:18:40 (20 years ago)
Author:
kakinaka
Message:

blank

Location:
temp/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/lib/slib.php

    r9893 r9894  
    10581058 
    10591059/* ÀǶâ·×»» */ 
    1060 function sfTax($price, $tax, $tax_rule, $digit = 1) { 
     1060function sfTax($price, $tax, $tax_rule) { 
    10611061    $real_tax = $tax / 100; 
    10621062    $ret = $price * $real_tax; 
     
    10831083 
    10841084/* ÀǶâÉÕÍ¿ */ 
    1085 function sfPreTax($price, $tax, $tax_rule, $digit = 1) { 
     1085function sfPreTax($price, $tax, $tax_rule) { 
    10861086    $real_tax = $tax / 100; 
    10871087    $ret = $price * (1 + $real_tax); 
  • temp/trunk/html/admin/basis/index.php

    r9541 r9894  
    100100        "tax_rule", 
    101101        "free_rule", 
    102         "digit",        //Í­¸ú·å¿ô 
    103102        "good_traded", 
    104103        "message" 
     
    163162    $arrConvList['tax'] = "n"; 
    164163    $arrConvList['free_rule'] = "n"; 
    165     $arrConvList['digit'] = "n";        //Í­¸ú·å¿ô 
    166164    $arrConvList['business_hour'] = "KVa"; 
    167165    $arrConvList['good_traded'] = ""; 
     
    205203    $objErr->doFunc(array("¾ÃÈñÀÇΨ", "tax", PERCENTAGE_LEN), array("EXIST_CHECK", "NUM_CHECK", "MAX_LENGTH_CHECK")); 
    206204    $objErr->doFunc(array("Á÷ÎÁ̵ÎÁ¾ò·ï", "free_rule", PRICE_LEN), array("NUM_CHECK", "MAX_LENGTH_CHECK")); 
    207     $objErr->doFunc(array("Í­¸ú·å¿ô", "digit", INT_LEN), array("EXIST_CHECK", "NUM_CHECK", "MAX_LENGTH_CHECK")); 
    208205    $objErr->doFunc(array("ŹÊޱĶȻþ´Ö", "business_hour", STEXT_LEN), array("MAX_LENGTH_CHECK")); 
    209206 
Note: See TracChangeset for help on using the changeset viewer.