~unifield-team/unifield-wm/us-826

« back to all changes in this revision

Viewing changes to specific_rules/specific_rules.py

  • Committer: chloups208
  • Date: 2011-08-23 14:55:18 UTC
  • mto: This revision was merged to the branch mainline in revision 264.
  • Revision ID: chloups208@chloups208-laptop-20110823145518-uq30nhspzaaz0wba
[UF-372]first commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright (C) 2011 MSF, TeMPO Consulting
 
5
#
 
6
#    This program is free software: you can redistribute it and/or modify
 
7
#    it under the terms of the GNU Affero General Public License as
 
8
#    published by the Free Software Foundation, either version 3 of the
 
9
#    License, or (at your option) any later version.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU Affero General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU Affero General Public License
 
17
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
##############################################################################
 
20
 
 
21
from datetime import datetime, timedelta, date
 
22
from dateutil.relativedelta import relativedelta, relativedelta
 
23
from osv import osv, fields
 
24
from osv.orm import browse_record, browse_null
 
25
from tools.translate import _
 
26
 
 
27
import decimal_precision as dp
 
28
import netsvc
 
29
import pooler
 
30
import time
 
31
 
 
32
class sale_order_line(osv.osv):
 
33
    '''
 
34
    override to add message at sale order creation and update
 
35
    '''
 
36
    _inherit = 'sale.order.line'
 
37
    
 
38
#    def create(self, cr, uid, vals, context=None):
 
39
#        '''
 
40
#        display message for short shelf life things
 
41
#        '''
 
42
#        sol_id = super(sale_order_line, self).create(cr, uid, vals, context=context)
 
43
#        sol = self.browse(cr, uid, sol_id, context=context)
 
44
#        # log the message
 
45
#        if sol.product_id.short_shelf_life:
 
46
#            self.log(cr, uid, sol_id, 'Product with short shelf life, check the accuracy of the order quantity, frequency and mode of transport.', context=context)
 
47
#        
 
48
#        return sol_id
 
49
    
 
50
#    def write(self, cr, uid, ids, vals, context=None):
 
51
#        '''
 
52
#        display message for short shelf life things
 
53
#        '''
 
54
#        if isinstance(ids, (int, long)):
 
55
#            ids = [ids]
 
56
#            
 
57
#        result = super(sale_order_line, self).write(cr, uid, ids, vals, context=context)
 
58
#            
 
59
#        for sol in self.browse(cr, uid, ids, context=context):
 
60
#            # log the message
 
61
#            if sol.product_id.short_shelf_life:
 
62
#                # log the message
 
63
#                self.log(cr, uid, sol.id, 'Product with short shelf life, check the accuracy of the order quantity, frequency and mode of transport.', context=context)
 
64
#            
 
65
#        return result
 
66
    
 
67
sale_order_line()
 
68
 
 
69
class sale_order(osv.osv):
 
70
    '''
 
71
    
 
72
    '''
 
73
    _inherit = 'sale.order'
 
74
    
 
75
    def write(self, cr, uid, ids, vals, context=None):
 
76
        '''
 
77
        display message if contains short shelf life
 
78
        '''
 
79
        if isinstance(ids, (int, long)):
 
80
            ids = [ids]
 
81
            
 
82
        for obj in self.browse(cr, uid, ids, context=context):
 
83
            for line in obj.order_line:
 
84
                # log the message
 
85
                if line.product_id.short_shelf_life:
 
86
                    # log the message
 
87
                    self.log(cr, uid, obj.id, 'Product with Short Shelf Life, check the accuracy of the order quantity, frequency and mode of transport.', context=context)
 
88
        
 
89
        return super(sale_order, self).write(cr, uid, ids, vals, context=context)
 
90
    
 
91
sale_order()
 
92
 
 
93
 
 
94
class purchase_order(osv.osv):
 
95
    '''
 
96
    
 
97
    '''
 
98
    _inherit = 'purchase.order'
 
99
    
 
100
#    def wkf_confirm_order(self, cr, uid, ids, context=None):
 
101
#        '''
 
102
#        
 
103
#        '''
 
104
#        result = super(purchase_order, self).wkf_confirm_order(cr, uid, ids, context=context)
 
105
#        
 
106
#        # display message
 
107
#        
 
108
#        return result
 
109
    
 
110
    def write(self, cr, uid, ids, vals, context=None):
 
111
        '''
 
112
        display message if contains short shelf life
 
113
        '''
 
114
        if isinstance(ids, (int, long)):
 
115
            ids = [ids]
 
116
            
 
117
        for obj in self.browse(cr, uid, ids, context=context):
 
118
            for line in obj.order_line:
 
119
                # log the message
 
120
                if line.product_id.short_shelf_life:
 
121
                    # log the message
 
122
                    self.log(cr, uid, obj.id, 'Product with Short Shelf Life, check the accuracy of the order quantity, frequency and mode of transport.', context=context)
 
123
        
 
124
        return super(purchase_order, self).write(cr, uid, ids, vals, context=context)
 
125
    
 
126
purchase_order()
 
127