Initial Commit of AgileBill Open Source

This commit is contained in:
unknown
2008-11-26 14:50:40 -08:00
parent ae5a0fc25e
commit 02306ccc47
2954 changed files with 410976 additions and 0 deletions

174
modules/tax/tax.inc.php Normal file
View File

@@ -0,0 +1,174 @@
<?php
/**
* AgileBill - Open Billing Software
*
* This body of work is free software; you can redistribute it and/or
* modify it under the terms of the Open AgileBill License
* License as published at http://www.agileco.com/agilebill/license1-4.txt
*
* For questions, help, comments, discussion, etc., please join the
* Agileco community forums at http://forum.agileco.com/
*
* @link http://www.agileco.com/
* @copyright 2004-2008 Agileco, LLC.
* @license http://www.agileco.com/agilebill/license1-4.txt
* @author Tony Landis <tony@agileco.com>
* @package AgileBill
* @version 1.4.93
*/
class tax
{
/**
* Calculate all applicable taxes for a given product
* @return Array
*/
function calculate($taxable_amount, $country_id, $zone)
{
$arr=false;
$db = &DB();
$result = $db->Execute(sqlSelect($db,"tax","id,description,rate",
"(zone = '' OR zone IS NULL OR zone = ::*:: OR zone = ::$zone::) AND
(country_id = ::$country_id:: OR country_id = '' OR country_id IS NULL)","zone"));
if(!$result || $result->RecordCount() == 0) {
return false;
} else {
while(!$result->EOF) {
$arr[] = Array( 'rate' => round($result->fields["rate"] * $taxable_amount,2),
'name' => $result->fields["description"],
'id' => $result->fields["id"]);
$result->MoveNext();
}
}
return $arr;
}
/**
* Insert invoice_item_tax Records
*/
function invoice_item($invoice_id, $invoice_item_id, $account_id, $tax_arr) {
$db =& DB();
if(!is_array($tax_arr)) return false;
foreach($tax_arr as $tax) {
$sql="INSERT INTO ".AGILE_DB_PREFIX."invoice_item_tax SET id=".sqlGenID($db,"invoice_item_tax").", site_id=".DEFAULT_SITE.", date_orig=".time().", invoice_id={$invoice_id}, invoice_item_id={$invoice_item_id}, account_id={$account_id}, tax_id={$tax["id"]}, amount=".$db->qstr($tax["rate"]);
$db->Execute($sql);
}
}
/**
* Generate the HTML for tax id collection on account creation/update form
*/
function get_tax_ids() {
$db=&DB();
$rs=$db->Execute($sql=sqlSelect($db,"tax","*","tax_id_collect=1 AND zone=::*::"));
if($rs && $rs->RecordCount()) {
while(!$rs->EOF) {
$arr[$rs->fields["tax_id_name"]] = $rs->fields;
$rs->MoveNext();
}
} else {
return false;
}
foreach($arr as $val) $ret[] = $val;
global $smarty;
$smarty->assign('tax_ids', $ret);
}
/**
* Validate inputted tax id on account addition/update
*/
function TaxIdsValidate($country_id, $tax_id, $exempt=false) {
$db=&DB();
$rs=$db->Execute(sqlSelect($db,"tax","*","country_id=$country_id AND zone=::*:: AND tax_id_collect=1 AND tax_id_req=1"));
if($rs && $rs->RecordCount()) {
$this->errField = $rs->fields['tax_id_name'];
if(empty($tax_id))
if($rs->fields['tax_id_exempt'] && $exempt)
return true;
else
return false;
if(!empty($rs->fields['tax_id_regex'])) {
$regex=$rs->fields['tax_id_regex'];
if(!ereg("$regex", trim($tax_id))) return false;
}
}
return true;
}
function tax_construct() {
$this->module = "tax";
$this->xml_construct = PATH_MODULES . "" . $this->module . "/" . $this->module . "_construct.xml";
$C_xml = new CORE_xml;
$construct = $C_xml->xml_to_array($this->xml_construct);
$this->method = $construct["construct"]["method"];
$this->trigger = $construct["construct"]["trigger"];
$this->field = $construct["construct"]["field"];
$this->table = $construct["construct"]["table"];
$this->module = $construct["construct"]["module"];
$this->cache = $construct["construct"]["cache"];
$this->order_by = $construct["construct"]["order_by"];
$this->limit = $construct["construct"]["limit"];
}
function add($VAR) {
$this->tax_construct();
$type = "add";
$this->method["$type"] = split(",", $this->method["$type"]);
$db = new CORE_database;
$db->add($VAR, $this, $type);
}
function view($VAR) {
$this->tax_construct();
$type = "view";
$this->method["$type"] = split(",", $this->method["$type"]);
$db = new CORE_database;
$db->view($VAR, $this, $type);
}
function update($VAR) {
$this->tax_construct();
$type = "update";
$this->method["$type"] = split(",", $this->method["$type"]);
$db = new CORE_database;
$db->update($VAR, $this, $type);
}
function delete($VAR) {
$this->tax_construct();
$db = new CORE_database;
$db->mass_delete($VAR, $this, "");
}
function search_form($VAR) {
$this->tax_construct();
$type = "search";
$this->method["$type"] = split(",", $this->method["$type"]);
$db = new CORE_database;
$db->search_form($VAR, $this, $type);
}
function search($VAR) {
$this->tax_construct();
$type = "search";
$this->method["$type"] = split(",", $this->method["$type"]);
$db = new CORE_database;
$db->search($VAR, $this, $type);
}
function search_show($VAR) {
$this->tax_construct();
$type = "search";
$this->method["$type"] = split(",", $this->method["$type"]);
$db = new CORE_database;
$db->search_show($VAR, $this, $type);
}
}
?>

View File

@@ -0,0 +1,82 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<construct>
<!-- define the module name -->
<module>tax</module>
<!-- define the module table name -->
<table>tax</table>
<!-- define the module dependancy(s) -->
<dependancy>setup</dependancy>
<!-- define the DB cache in seconds -->
<cache>0</cache>
<!-- define the default order_by field for SQL queries -->
<order_by>zone</order_by>
<!-- define the methods -->
<limit>25</limit>
<!-- define database indexes -->
<index>
<country>country_id</country>
<zone>zone</zone>
</index>
<!-- define the fields -->
<field>
<id>
<type>I4</type>
<unique>1</unique>
<index>1</index>
</id>
<site_id>
<type>I4</type>
<index>1</index>
</site_id>
<country_id>
<type>I4</type>
<asso_table>country</asso_table>
<asso_field>name</asso_field>
<validate>any</validate>
</country_id>
<zone>
<type>C(128)</type>
<min_len>1</min_len>
<max_len>128</max_len>
</zone>
<description>
<type>C(255)</type>
<min_len>1</min_len>
<max_len>255</max_len>
<validate>any</validate>
</description>
<rate>
<type>F</type>
<min_len>2</min_len>
<max_len>6</max_len>
<validate>any</validate>
</rate>
<tax_id_collect>
<type>L</type>
</tax_id_collect>
<tax_id_name>
<type>C(32)</type>
</tax_id_name>
<tax_id_req>
<type>L</type>
</tax_id_req>
<tax_id_exempt>
<type>L</type>
</tax_id_exempt>
<tax_id_regex>
<type>C(255)</type>
</tax_id_regex>
</field>
<!-- define all the methods for this class, and the fields they have access to, if applicable. -->
<method>
<add>id,site_id,country_id,zone,description,rate,tax_id_collect,tax_id_name,tax_id_req,tax_id_exempt,tax_id_regex</add>
<update>id,site_id,country_id,zone,description,rate,tax_id_collect,tax_id_name,tax_id_req,tax_id_exempt,tax_id_regex</update>
<delete>id,site_id,country_id,zone,description,rate,tax_id_collect,tax_id_name,tax_id_req,tax_id_exempt,tax_id_regex</delete>
<view>id,site_id,country_id,zone,description,rate,tax_id_collect,tax_id_name,tax_id_req,tax_id_exempt,tax_id_regex</view>
<search>id,site_id,country_id,zone,description,rate,tax_id_collect,tax_id_name,tax_id_req,tax_id_exempt,tax_id_regex</search>
</method>
<!-- define the method triggers -->
<trigger>0</trigger>
</construct>

View File

@@ -0,0 +1,40 @@
<install>
<module_properties>
<name>tax</name>
<parent>setup</parent>
<notes><![CDATA[Setup tax zones and rates for your taxable products.]]></notes>
<menu_display>1</menu_display>
<dependancy>setup</dependancy>
</module_properties>
<sql_inserts>
<module_method>
<add>
<name>add</name>
<page><![CDATA[%%:add]]></page>
<menu_display>1</menu_display>
</add>
<update>
<name>update</name>
</update>
<delete>
<name>delete</name>
</delete>
<view>
<name>view</name>
<page><![CDATA[core:search&module=%%&_escape=1&_next_page_one=view]]></page>
<menu_display>1</menu_display>
</view>
<search>
<name>search</name>
</search>
<search_form>
<name>search_form</name>
<notes><![CDATA[Allow users to view the search form]]></notes>
</search_form>
<search_show>
<name>search_show</name>
<notes><![CDATA[Allow users to view the search results]]></notes>
</search_show>
</module_method>
</sql_inserts>
</install>