~21-openerp/+junk/hr6.1

« back to all changes in this revision

Viewing changes to account_asset/wizard/wizard_asset_compute.py

  • Committer: Carlos
  • Date: 2012-10-22 09:57:54 UTC
  • Revision ID: carlos@viavansi-desktop-20121022095754-5f3atcrs1b5975ly
vacaciones y activos, inicial

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#    
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (C) 2004-2009 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
from osv import osv, fields
 
23
from tools.translate import _
 
24
 
 
25
class asset_depreciation_confirmation_wizard(osv.osv_memory):
 
26
    _name = "asset.depreciation.confirmation.wizard"
 
27
    _description = "asset.depreciation.confirmation.wizard"
 
28
    _columns = {
 
29
       'period_id': fields.many2one('account.period', 'Period', required=True, help="Choose the period for which you want to automatically post the depreciation lines of running assets"),
 
30
    }
 
31
   
 
32
    def _get_period(self, cr, uid, context=None):
 
33
        periods = self.pool.get('account.period').find(cr, uid)
 
34
        if periods:
 
35
            return periods[0]
 
36
        return False
 
37
 
 
38
    _defaults = {
 
39
        'period_id': _get_period,
 
40
    }
 
41
 
 
42
    def asset_compute(self, cr, uid, ids, context):
 
43
        ass_obj = self.pool.get('account.asset.asset')
 
44
        asset_ids = ass_obj.search(cr, uid, [('state','=','open')], context=context)
 
45
        data = self.browse(cr, uid, ids, context=context)
 
46
        period_id = data[0].period_id.id
 
47
        created_move_ids = ass_obj._compute_entries(cr, uid, asset_ids, period_id, context=context)
 
48
        return {
 
49
            'name': _('Created Asset Moves'),
 
50
            'view_type': 'form',
 
51
            'view_mode': 'tree,form',
 
52
            'res_model': 'account.move',
 
53
            'view_id': False,
 
54
            'domain': "[('id','in',["+','.join(map(str,created_move_ids))+"])]",
 
55
            'type': 'ir.actions.act_window',
 
56
        }
 
57
 
 
58
asset_depreciation_confirmation_wizard()
 
59
 
 
60
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: