~vauxoo/addons-vauxoo/7.0_test_hr_expense_dev_jorge

« back to all changes in this revision

Viewing changes to m321_customization/stock.py

  • Committer: Jose Antonio
  • Date: 2012-06-06 21:36:12 UTC
  • Revision ID: jose@vauxoo.com-20120606213612-6hhgt93qz3zb4arg

[IMP] Added new page to view stock future for product selected

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
        return True
89
89
        
90
90
inherited_stock()
 
91
 
 
92
 
 
93
 
 
94
class stock_move(osv.osv):
 
95
    
 
96
    
 
97
    _inherit = 'stock.move'
 
98
    _columns = {
 
99
        'id_sale':fields.many2one('sale.order','Sale Order'),
 
100
    
 
101
    }
 
102
    
 
103
stock_move()
 
104
 
 
105
 
 
106
 
 
107
 
 
108
 
 
109
 
 
110
 
 
111
 
 
112