Files
2017-03-02 20:30:40 -06:00

52 lines
1.6 KiB
PHP

<?php
/*
+--------------------------------------------------------------------------
| CubeCart 4
| ========================================
| CubeCart is a registered trade mark of Devellion Limited
| Copyright Devellion Limited 2006. All rights reserved.
| Devellion Limited,
| 5 Bridge Street,
| Bishops Stortford,
| HERTFORDSHIRE.
| CM23 2JU
| UNITED KINGDOM
| http://www.devellion.com
| UK Private Limited Company No. 5323904
| ========================================
| Web: http://www.cubecart.com
| Email: info (at) cubecart (dot) com
| License Type: CubeCart is NOT Open Source Software and Limitations Apply
| Licence Info: http://www.cubecart.com/site/faq/license.php
+--------------------------------------------------------------------------
| calc.php
| ========================================
| Calculates shipping based on Percentage of Subtotal
+--------------------------------------------------------------------------
*/
// By Percent
function By_Precent() {
global $subTotal;
$moduleName = "By_Percent";
$module = fetchDbConfig($moduleName);
$taxVal = taxRate($module['tax']);
if ($module['status'] == true) {
$sum = sprintf("%.2f", $subTotal * (($module['percent'])/100));
if ($module['handling']>0) $sum = $sum + $module['handling'];
if ($taxVal>0) $shippingTax = ($taxVal / 100) * $sum;
$out[0]['value'] = $sum;
$out[0]['desc'] = priceFormat($sum, true);
$out[0]['method'] = $moduleName;
$out[0]['taxId'] = $module['tax'];
$out[0]['taxAmount'] = $shippingTax;
return $out;
}
return false;
}
$shipArray[] = By_Precent();
?>