Skip to content

Commit 7d8aec0

Browse files
author
Bruno M. Villasanti
committedJan 20, 2012
Initial release
0 parents  commit 7d8aec0

12 files changed

+1849
-0
lines changed
 

‎CHANGELOG

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Version 2.0.1 - 2011-10-05
2+
* Initial release

‎COPYRIGHT

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Copyright (C) 2011 Bruno M. Villasanti.
2+
Copyright (C) 2011 Thymbra - Torre de Hanoi.
3+
4+
This program is free software: you can redistribute it and/or modify
5+
it under the terms of the GNU General Public License as published by
6+
the Free Software Foundation, either version 3 of the License, or
7+
(at your option) any later version.
8+
9+
This program is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
GNU General Public License for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with this program. If not, see <http://www.gnu.org/licenses/>.

‎INSTALL

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Installing trytond_account_ar
2+
=============================
3+
4+
Prerequisites
5+
-------------
6+
7+
* Python 2.4 or later (http://www.python.org/)
8+
* trytond (http://www.tryton.org/)
9+
* trytond_account (http://www.tryton.org/)
10+
11+
Installation
12+
------------
13+
14+
Once you've downloaded and unpacked the trytond_account_ar source release, enter the
15+
directory where the archive was unpacked, and run:
16+
17+
python setup.py install
18+
19+
Note that you may need administrator/root privileges for this step, as
20+
this command will by default attempt to install module to the Python
21+
site-packages directory on your system.
22+
23+
For advanced options, please refer to the easy_install and/or the distutils
24+
documentation:
25+
26+
http://peak.telecommunity.com/DevCenter/EasyInstall
27+
http://docs.python.org/inst/inst.html
28+
29+
To use without installation, extract the archive into ``trytond/modules`` with
30+
the directory name account_ar.

‎LICENSE

+674
Large diffs are not rendered by default.

‎MANIFEST.in

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
include INSTALL
2+
include README
3+
include TODO
4+
include COPYRIGHT
5+
include CHANGELOG
6+
include LICENSE
7+
include *.xml
8+
include *.odt
9+
include *.csv

‎README

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
trytond_account_ar
2+
==================
3+
4+
The account_ar module of the Tryton application platform.
5+
See __tryton__.py
6+
7+
Installing
8+
----------
9+
10+
See INSTALL
11+
12+
Support
13+
-------
14+
15+
If you encounter any problems with Tryton, please don't hesitate to ask
16+
questions on the Tryton bug tracker, mailing list, wiki or IRC channel:
17+
18+
http://bugs.tryton.org/
19+
http://groups.tryton.org/
20+
http://wiki.tryton.org/
21+
irc://irc.freenode.net/tryton
22+
irc://irc.freenode.net/tryton-es
23+
24+
License
25+
-------
26+
27+
See LICENSE
28+
29+
Copyright
30+
---------
31+
32+
See COPYRIGHT
33+
34+
35+
For more information please visit the Tryton web site:
36+
37+
http://www.tryton.org/

‎TODO

Whitespace-only changes.

‎__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#This file is part of Tryton. The COPYRIGHT file at the top level of
2+
#this repository contains the full copyright notices and license terms.

‎__tryton__.py

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#This file is part of Tryton. The COPYRIGHT file at the top level of
2+
#this repository contains the full copyright notices and license terms.
3+
{
4+
'name': 'Account Argentina',
5+
'name_es_AR': 'Plan de cuentas Argentino Demo',
6+
'name_es_ES': 'Plan de cuentas Argentino Demo',
7+
'version': '2.0.1',
8+
'author': 'Thymbra - Torre de Hanoi',
9+
'email': 'bvillasanti@thymbra.com',
10+
'website': 'http://www.thymbra.com/',
11+
'description': '''Define an account chart template for Argentina.
12+
Usefull to create a Argentinian account chart with the wizard in
13+
"Financial Management>Configuration>General Account>Create Chart of Account from Template".
14+
''',
15+
'description_es_AR': '''Define una plantilla de plan de cuentas para Argentina.
16+
Útil para crear un plan de cuentas Argentino con el wizard en
17+
"Gestión financiera>Configuración>Contabilidad general>Crear plan contable desde una plantilla"
18+
''',
19+
'description_es_ES': '''Define una plantilla de plan de cuentas para Argentina.
20+
Útil para crear un plan de cuentas Argentino con el wizard en
21+
"Gestión financiera>Configuración>Contabilidad general>Crear plan contable desde una plantilla"
22+
''',
23+
'depends': [
24+
'account',
25+
],
26+
'xml': [
27+
'account_ar.xml',
28+
'tax_ar.xml',
29+
],
30+
}

0 commit comments

Comments
 (0)