~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to pxgo_cash_statement_analytic/__init__.py

  • Committer: Borja L.S.
  • Date: 2010-06-18 08:47:07 UTC
  • Revision ID: borjals@pexego.es-20100618084707-q2cf4nczjaqbx6fl
[ADD] pxgo_cash_statement_analytic: New module to create analytic entries from cash statements.

Extends the Cash Statements* to add support for analytic accounting.

(* See pxgo_cash_statement module)

A analytic account field will be added to cash statement line types, allowing
the user to preset analytic accounts for the line types.
Extends the Bank Statements to add support for analytic accounting.

Thanks to Igalia (http://www.igalia.com/) for sponsoring this module :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright (C) 2004-2010 Pexego Sistemas Informáticos. All Rights Reserved
 
5
#
 
6
#    This program is free software: you can redistribute it and/or modify
 
7
#    it under the terms of the GNU General Public License as published by
 
8
#    the Free Software Foundation, either version 3 of the License, or
 
9
#    (at your option) any later version.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU General Public License
 
17
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
##############################################################################
 
20
"""
 
21
Pexego - Analytic in Cash Statements
 
22
"""
 
23
 
 
24
__authors__ = [
 
25
    "Borja López Soilán (Pexego) <borjals@pexego.es>"
 
26
]
 
27
 
 
28
import cash_statement
 
29