~avanzosc-manufactuaring-team/avanzosc/mrp-6.1

« back to all changes in this revision

Viewing changes to mrp_production_bysumqty/mrp_production_operation_real_ext.py

  • Committer: alfredo
  • Date: 2013-09-20 09:27:35 UTC
  • Revision ID: alfredodelafuente@avanzosc.es-20130920092735-ea2vguanz9n6yelr
[MOD mrp_production_bysumqty]

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Avanzosc - Avanced Open Source Consulting
 
5
#    Copyright (C) 2011 - 2013 Avanzosc <http://www.avanzosc.com>
 
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
from osv import osv
 
22
from osv import fields
 
23
import decimal_precision as dp
 
24
from tools.translate import _
 
25
 
 
26
class mrp_production_operation_real(osv.osv):
 
27
    
 
28
    _name = 'mrp.production.operation.real'
 
29
    _inherit = 'mrp.production.operation.real'
 
30
    
 
31
    def action_partial_produce_bysumqty(self, cr, uid, ids, context=None):
 
32
        val=True
 
33
        for real_operation in self.browse(cr,uid,ids,context):
 
34
            if real_operation.production_id.with_generate_bysumqty == False:
 
35
                context.update({'active_ids':[real_operation.id],
 
36
                                'active_model': 'mrp.production.operation.real'})
 
37
                #llamada al wizard
 
38
                val = {
 
39
                        'name':'Produce',
 
40
                        'type':'ir.actions.act_window',
 
41
                        'res_model':'partial.produce',
 
42
                        'view_type':'form',
 
43
                        'view_mode':'form',
 
44
                        'nodestroy':True,
 
45
                        'target':'new',
 
46
                        'context':context,
 
47
                       }
 
48
            else:
 
49
                if real_operation.production_id.bom_id.generate_bysumqty == False:
 
50
                    context.update({'active_ids':[real_operation.id],
 
51
                                    'active_model': 'mrp.production.operation.real'})
 
52
                    #llamada al wizard
 
53
                    val = {
 
54
                            'name':'Produce',
 
55
                            'type':'ir.actions.act_window',
 
56
                            'res_model':'partial.produce',
 
57
                            'view_type':'form',
 
58
                            'view_mode':'form',
 
59
                            'nodestroy':True,
 
60
                            'target':'new',
 
61
                            'context':context,
 
62
                           }
 
63
                else:
 
64
                    context.update({'operation_real_id':real_operation.id})
 
65
                    #llamada al wizard
 
66
                    val = {
 
67
                            'name':'Produce',
 
68
                            'type':'ir.actions.act_window',
 
69
                            'res_model':'produce.bysumqty',
 
70
                            'view_type':'form',
 
71
                            'view_mode':'form',
 
72
                            'nodestroy':True,
 
73
                            'target':'new',
 
74
                            'context':context,
 
75
                           }
 
76
                
 
77
                        
 
78
        return val
 
79
    
 
80
    
 
81
    
 
82
    
 
83
    
 
84
    action_partial_produce_bysumqty
 
85
 
 
86
mrp_production_operation_real()