tax.php

来自「this the oscommerce 3.0 aplha 4」· PHP 代码 · 共 133 行

PHP
133
字号
<?php/*  $Id: tax.php 1498 2007-03-29 14:04:50Z hpdl $  osCommerce, Open Source E-Commerce Solutions  http://www.oscommerce.com  Copyright (c) 2006 osCommerce  This program is free software; you can redistribute it and/or modify  it under the terms of the GNU General Public License v2 (1991)  as published by the Free Software Foundation.*/  class osC_Tax {    var $tax_rates;// class constructor    function osC_Tax() {      $this->tax_rates = array();    }// class methods    function getTaxRate($class_id, $country_id = -1, $zone_id = -1) {      global $osC_Database, $osC_ShoppingCart;      if ( ($country_id == -1) && ($zone_id == -1) ) {        $country_id = $osC_ShoppingCart->getTaxingAddress('country_id');        $zone_id = $osC_ShoppingCart->getTaxingAddress('zone_id');      }      if (isset($this->tax_rates[$class_id][$country_id][$zone_id]['rate']) == false) {        $Qtax = $osC_Database->query('select sum(tax_rate) as tax_rate from :table_tax_rates tr left join :table_zones_to_geo_zones za on (tr.tax_zone_id = za.geo_zone_id) left join :table_geo_zones tz on (tz.geo_zone_id = tr.tax_zone_id) where (za.zone_country_id is null or za.zone_country_id = 0 or za.zone_country_id = :zone_country_id) and (za.zone_id is null or za.zone_id = 0 or za.zone_id = :zone_id) and tr.tax_class_id = :tax_class_id group by tr.tax_priority');        $Qtax->bindTable(':table_tax_rates', TABLE_TAX_RATES);        $Qtax->bindTable(':table_zones_to_geo_zones', TABLE_ZONES_TO_GEO_ZONES);        $Qtax->bindTable(':table_geo_zones', TABLE_GEO_ZONES);        $Qtax->bindInt(':zone_country_id', $country_id);        $Qtax->bindInt(':zone_id', $zone_id);        $Qtax->bindInt(':tax_class_id', $class_id);        $Qtax->execute();        if ($Qtax->numberOfRows()) {          $tax_multiplier = 1.0;          while ($Qtax->next()) {            $tax_multiplier *= 1.0 + ($Qtax->value('tax_rate') / 100);          }          $tax_rate = ($tax_multiplier - 1.0) * 100;        } else {          $tax_rate = 0;        }        $this->tax_rates[$class_id][$country_id][$zone_id]['rate'] = $tax_rate;      }      return $this->tax_rates[$class_id][$country_id][$zone_id]['rate'];    }    function getTaxRateDescription($class_id, $country_id, $zone_id) {      global $osC_Database, $osC_Language;      if (isset($this->tax_rates[$class_id][$country_id][$zone_id]['description']) == false) {        $Qtax = $osC_Database->query('select tax_description from :table_tax_rates tr left join :table_zones_to_geo_zones za on (tr.tax_zone_id = za.geo_zone_id) left join :table_geo_zones tz on (tz.geo_zone_id = tr.tax_zone_id) where (za.zone_country_id is null or za.zone_country_id = 0 or za.zone_country_id = :zone_country_id) and (za.zone_id is null or za.zone_id = 0 or za.zone_id = :zone_id) and tr.tax_class_id = :tax_class_id group by tr.tax_priority');        $Qtax->bindTable(':table_tax_rates', TABLE_TAX_RATES);        $Qtax->bindTable(':table_zones_to_geo_zones', TABLE_ZONES_TO_GEO_ZONES);        $Qtax->bindTable(':table_geo_zones', TABLE_GEO_ZONES);        $Qtax->bindInt(':zone_country_id', $country_id);        $Qtax->bindInt(':zone_id', $zone_id);        $Qtax->bindInt(':tax_class_id', $class_id);        $Qtax->execute();        if ($Qtax->numberOfRows()) {          $tax_description = '';          while ($Qtax->next()) {            $tax_description .= $Qtax->value('tax_description') . ' + ';          }          $this->tax_rates[$class_id][$country_id][$zone_id]['description'] = substr($tax_description, 0, -3);        } else {          $this->tax_rates[$class_id][$country_id][$zone_id]['description'] = $osC_Language->get('tax_rate_unknown');        }      }      return $this->tax_rates[$class_id][$country_id][$zone_id]['description'];    }    function calculate($price, $tax_rate) {      global $osC_Currencies;      return osc_round($price * $tax_rate / 100, $osC_Currencies->currencies[DEFAULT_CURRENCY]['decimal_places']);    }    function displayTaxRateValue($value, $padding = null) {      if (!is_numeric($padding)) {        $padding = TAX_DECIMAL_PLACES;      }      if (strpos($value, '.') !== false) {        while (true) {          if (substr($value, -1) == '0') {            $value = substr($value, 0, -1);          } else {            if (substr($value, -1) == '.') {              $value = substr($value, 0, -1);            }            break;          }        }      }      if ($padding > 0) {        if (($decimal_pos = strpos($value, '.')) !== false) {          $decimals = strlen(substr($value, ($decimal_pos+1)));          for ($i=$decimals; $i<$padding; $i++) {            $value .= '0';          }        } else {          $value .= '.';          for ($i=0; $i<$padding; $i++) {            $value .= '0';          }        }      }      return $value . '%';    }  }?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?