odoo/addons/account_sequence/account_sequence_installer.py

60 lines
2.5 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from osv import fields, osv
class account_sequence_installer(osv.osv_memory):
_name = 'account.sequence.installer'
_inherit = 'res.config.installer'
_columns = {
'internal_sequence': fields.many2one('ir.sequence', 'Internal Sequence', help="This sequence will be used on Journals to maintain internal number for accounting entries."),
}
def _get_internal_sequence(self, cr, uid, context):
mod_obj = self.pool.get('ir.model.data')
result = mod_obj.get_object_reference(cr, uid, 'account_sequence', 'internal_sequence_journal')
res = result and result[1] or False
return res
def execute(self, cr, uid, ids, context):
if context is None:
context = {}
res = super(account_sequence_installer, self).execute(cr, uid, ids, context=context)
jou_obj = self.pool.get('account.journal')
obj_sequence = self.pool.get('ir.sequence')
journal_ids = jou_obj.search(cr, uid, [])
for line in self.browse(cr, uid, ids):
for journal in jou_obj.browse(cr, uid, journal_ids):
if not journal.internal_sequence:
for seq in obj_sequence.browse(cr, uid, [line.internal_sequence.id]):
if seq.id:
jou_obj.write(cr, uid, [journal.id], {'internal_sequence': seq.id})
return res
_defaults = {
'internal_sequence': _get_internal_sequence
}
account_sequence_installer()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: