[MERGE] forward port of branch 7.0 up to 65d92da
[odoo/odoo.git] / addons / account_bank_statement_extensions / account_bank_statement.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #
6 #    Copyright (c) 2011 Noviat nv/sa (www.noviat.be). All rights reserved.
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 import time
24 from openerp.osv import fields, osv
25 import openerp.addons.decimal_precision as dp
26 from openerp.tools.translate import _
27
28 class account_bank_statement(osv.osv):
29     _inherit = 'account.bank.statement'
30
31     def write(self, cr, uid, ids, vals, context=None):
32         if context is None:
33             context = {}
34         # bypass obsolete statement line resequencing
35         if vals.get('line_ids', False) or context.get('ebanking_import', False):
36             res = super(osv.osv, self).write(cr, uid, ids, vals, context=context)
37         else:
38             res = super(account_bank_statement, self).write(cr, uid, ids, vals, context=context)
39         return res
40
41     def button_confirm_bank(self, cr, uid, ids, context=None):
42         super(account_bank_statement, self).button_confirm_bank(cr, uid, ids, context=context)
43         for st in self.browse(cr, uid, ids, context=context):
44             if st.line_ids:
45                 cr.execute("UPDATE account_bank_statement_line  \
46                     SET state='confirm' WHERE id in %s ",
47                     (tuple([x.id for x in st.line_ids]),))
48         return True
49
50     def button_cancel(self, cr, uid, ids, context=None):
51         super(account_bank_statement, self).button_cancel(cr, uid, ids, context=context)
52         for st in self.browse(cr, uid, ids, context=context):
53             if st.line_ids:
54                 cr.execute("UPDATE account_bank_statement_line  \
55                     SET state='draft' WHERE id in %s ",
56                     (tuple([x.id for x in st.line_ids]),))
57         return True
58
59
60 class account_bank_statement_line_global(osv.osv):
61     _name = 'account.bank.statement.line.global'
62     _description = 'Batch Payment Info'
63
64     _columns = {
65         'name': fields.char('OBI', size=128, required=True, help="Originator to Beneficiary Information"),
66         'code': fields.char('Code', size=64, required=True),
67         'parent_id': fields.many2one('account.bank.statement.line.global', 'Parent Code', ondelete='cascade'),
68         'child_ids': fields.one2many('account.bank.statement.line.global', 'parent_id', 'Child Codes'),
69         'type': fields.selection([
70             ('iso20022', 'ISO 20022'),
71             ('coda', 'CODA'),
72             ('manual', 'Manual'),
73             ], 'Type', required=True),
74         'amount': fields.float('Amount', digits_compute=dp.get_precision('Account')),
75         'bank_statement_line_ids': fields.one2many('account.bank.statement.line', 'globalisation_id', 'Bank Statement Lines'),
76     }
77     _rec_name = 'code'
78     _defaults = {
79         'code': lambda s,c,u,ctx={}: s.pool.get('ir.sequence').get(c, u, 'account.bank.statement.line.global'),
80         'name': '/',
81     }
82     _sql_constraints = [
83         ('code_uniq', 'unique (code)', 'The code must be unique !'),
84     ]
85
86     def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=100):
87         if not args:
88             args = []
89         ids = []
90         if name:
91             ids = self.search(cr, user, [('code', 'ilike', name)] + args, limit=limit)
92             if not ids:
93                 ids = self.search(cr, user, [('name', operator, name)] + args, limit=limit)
94             if not ids and len(name.split()) >= 2:
95                 #Separating code and name for searching
96                 operand1, operand2 = name.split(' ', 1) #name can contain spaces
97                 ids = self.search(cr, user, [('code', 'like', operand1), ('name', operator, operand2)] + args, limit=limit)
98         else:
99             ids = self.search(cr, user, args, context=context, limit=limit)
100         return self.name_get(cr, user, ids, context=context)
101
102
103 class account_bank_statement_line(osv.osv):
104     _inherit = 'account.bank.statement.line'
105     _columns = {
106         'val_date': fields.date('Value Date', states={'confirm': [('readonly', True)]}),
107         'globalisation_id': fields.many2one('account.bank.statement.line.global', 'Globalisation ID',
108             states={'confirm': [('readonly', True)]},
109             help="Code to identify transactions belonging to the same globalisation level within a batch payment"),
110         'globalisation_amount': fields.related('globalisation_id', 'amount', type='float',
111             relation='account.bank.statement.line.global', string='Glob. Amount', readonly=True),
112         'state': fields.selection([('draft', 'Draft'), ('confirm', 'Confirmed')],
113             'Status', required=True, readonly=True),
114         'counterparty_name': fields.char('Counterparty Name', size=35),
115         'counterparty_bic': fields.char('Counterparty BIC', size=11),
116         'counterparty_number': fields.char('Counterparty Number', size=34),
117         'counterparty_currency': fields.char('Counterparty Currency', size=3),
118     }
119     _defaults = {
120         'state': 'draft',
121     }
122
123     def unlink(self, cr, uid, ids, context=None):
124         if context is None:
125             context = {}
126         if context.get('block_statement_line_delete', False):
127             raise osv.except_osv(_('Warning!'), _('Delete operation not allowed. \
128             Please go to the associated bank statement in order to delete and/or modify bank statement line.'))
129         return super(account_bank_statement_line, self).unlink(cr, uid, ids, context=context)
130
131
132 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: