~serpent-consulting-services/openerp-usa/fix-shipping_api_ups_cc

« back to all changes in this revision

Viewing changes to account_salestax_avatax/__openerp__.py

  • Committer: npgllc
  • Date: 2012-08-02 17:13:27 UTC
  • Revision ID: npgllc-20120802171327-2xgyyjjb5d1kx26y
Removed all the 6.0 compatible modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*-
2
 
##############################################################################
3
 
#
4
 
#    OpenERP, Open Source Management Solution
5
 
#    Copyright (C) 2011 NovaPoint Group LLC (<http://www.novapointgroup.com>)
6
 
#    Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
7
 
#
8
 
#    This program is free software: you can redistribute it and/or modify
9
 
#    it under the terms of the GNU Affero General Public License as
10
 
#    published by the Free Software Foundation, either version 3 of the
11
 
#    License, or (at your option) any later version.
12
 
#
13
 
#    This program is distributed in the hope that it will be useful,
14
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
#    GNU Affero General Public License for more details.
17
 
#
18
 
#    You should have received a copy of the GNU Affero General Public License
19
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 
#
21
 
##############################################################################
22
 
 
23
 
{
24
 
    "name" : "Use AvaTax web service to calculate tax",
25
 
    "version" : "1.1",
26
 
    "author" : 'Novapoint Group LLC',
27
 
    "description": """ This module supports calculating sales and use taxes, validates addresses
28
 
using the AvaTax subscription service from AVALARA. www.avalara.com. It is targeted for the US, Canadian, and in the future the international markets
29
 
supported by AVALARA. Users of the module need to subscribe to a service plan from AVALARA and obtain the proper login credentials prior
30
 
to using this module. As the US and Canadian tax programs have more
31
 
than 22,000 unique tax jurisdictions based on a GEO-Location matrix segmented by product category,
32
 
and tax collection legislation continues to change in the US to include new
33
 
areas like internet transactions, we believe using a tax service from AvaTax to calculate applicable taxes due simplifies
34
 
a company's management, time and effort to be in compliance with tax rules.
35
 
 
36
 
It is intended that the tax calculation service is called whenever an existing tax calculation is calculated within OpenERP.
37
 
 
38
 
The process to setup the system is as follows:
39
 
A company would initially install the module.
40
 
A company would sign-up for the AVATAX service.
41
 
A company enter their AVATAX credentials in OpenERP.
42
 
A company then should setup their Chart of Accounts with the appropriate accounts to capture detailed tax information (see your accountant).
43
 
A company then sets up the AVATAX service to cater to the products and services they provide.
44
 
A company then configures OpenERP properly for tax processing with AVATAX.
45
 
A company then tests the AVATAX connection and service.
46
 
 
47
 
AVATAX also offers a service to manage the submission of taxes due to various tax jurisdictions electronically, and manually.
48
 
 
49
 
Please review the module documentation prior to installing the module for prerequisites.
50
 
 
51
 
NOTE: Use of this module is "at your own risk", and does not in any way make NovaPoint Group or OpenERP liable for any issues or construe any
52
 
obligation that calculations are correct, or that tax calculations are sufficient to meet regulatory or legislative requirements.
53
 
 
54
 
""",
55
 
    "category" : "Generic Modules/Accounting",
56
 
    "website" : "http://www.novapointgroup.com/",
57
 
    "depends" : ["sale_negotiated_shipping"],
58
 
    "init_xml" : [],
59
 
    "demo_xml" : [],
60
 
    "update_xml" : [
61
 
    "account_salestax_avatax_data.xml",
62
 
    "wizard/account_salestax_avatax_ping.xml",
63
 
    "wizard/account_salestax_avatax_address_validate.xml",
64
 
    "account_salestax_avatax_view.xml",
65
 
    "partner_view.xml",
66
 
    "product_view.xml",
67
 
    "account_invoice_workflow.xml",
68
 
    "account_invoice_view.xml",
69
 
    "security/account_salestax_avatax_security.xml",
70
 
    "security/ir.model.access.csv",
71
 
    ],
72
 
    "test" : [],
73
 
    "active": False,
74
 
    "installable": True,
75
 
}
76
 
 
77
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: