mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
80 lines
3.0 KiB
Python
80 lines
3.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Copyright Camptocamp SA
|
|
# Author Joel Grand-Guillaume
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
|
|
import datetime
|
|
from .file_parser import FileParser
|
|
from openerp.addons.account_statement_base_import.parser.file_parser import (
|
|
float_or_zero
|
|
)
|
|
from openerp.tools import ustr
|
|
|
|
|
|
class GenericFileParser(FileParser):
|
|
"""Standard parser that use a define format in csv or xls to import into a
|
|
bank statement. This is mostely an example of how to proceed to create a
|
|
new parser, but will also be useful as it allow to import a basic flat
|
|
file.
|
|
"""
|
|
|
|
def __init__(self, parse_name, ftype='csv', **kwargs):
|
|
conversion_dict = {
|
|
'ref': ustr,
|
|
'label': ustr,
|
|
'date': datetime.datetime,
|
|
'amount': float_or_zero,
|
|
}
|
|
super(GenericFileParser, self).__init__(
|
|
parse_name, ftype=ftype,
|
|
extra_fields=conversion_dict,
|
|
**kwargs)
|
|
|
|
@classmethod
|
|
def parser_for(cls, parser_name):
|
|
"""Used by the new_bank_statement_parser class factory. Return true if
|
|
the providen name is generic_csvxls_so
|
|
"""
|
|
return parser_name == 'generic_csvxls_so'
|
|
|
|
def get_st_line_vals(self, line, *args, **kwargs):
|
|
"""
|
|
This method must return a dict of vals that can be passed to create
|
|
method of statement line in order to record it. It is the
|
|
responsibility of every parser to give this dict of vals, so each one
|
|
can implement his own way of recording the lines.
|
|
:param: line: a dict of vals that represent a line of
|
|
result_row_list
|
|
:return: dict of values to give to the create method of statement
|
|
line, it MUST contain at least:
|
|
{
|
|
'name':value,
|
|
'date':value,
|
|
'amount':value,
|
|
'ref':value,
|
|
'label':value,
|
|
}
|
|
"""
|
|
return {
|
|
'name': line.get('label', line.get('ref', '/')),
|
|
'date': line.get('date', datetime.datetime.now().date()),
|
|
'amount': line.get('amount', 0.0),
|
|
'ref': line.get('ref', '/'),
|
|
'label': line.get('label', ''),
|
|
}
|