[REM] account: Removed unnecessary arguments from name_search.
[odoo/odoo.git] / addons / account / wizard / account_subscription_generate.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 import time
23
24 from osv import fields, osv
25
26 class account_subscription_generate(osv.osv_memory):
27
28     _name = "account.subscription.generate"
29     _description = "Subscription Compute"
30     _columns = {
31        'date': fields.date('Date', required=True),
32     }
33     _defaults = {
34         'date': lambda *a: time.strftime('%Y-%m-%d'),
35     }
36     def action_generate(self, cr, uid, ids, context=None):
37         mod_obj = self.pool.get('ir.model.data')
38         act_obj = self.pool.get('ir.actions.act_window')
39         moves_created=[]
40         for data in  self.read(cr, uid, ids, context=context):
41             cr.execute('select id from account_subscription_line where date<%s and move_id is null', (data['date'],))
42             line_ids = map(lambda x: x[0], cr.fetchall())
43             moves = self.pool.get('account.subscription.line').move_create(cr, uid, line_ids, context=context)
44             moves_created.extend(moves)
45         result = mod_obj.get_object_reference(cr, uid, 'account', 'action_move_line_form')
46         id = result and result[1] or False
47         result = act_obj.read(cr, uid, [id], context=context)[0]
48         result['domain'] = str([('id','in',moves_created)])
49         return result
50
51 account_subscription_generate()
52
53 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: