~openerp-commiter/openobject-addons/trunk-extra-addons

« back to all changes in this revision

Viewing changes to sale_supplier_direct_delivery/stock.py

account_indian is a branch of the trunk addons
make account_indian up to date with the trunk-extra-addons

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from osv import fields,osv
 
2
 
 
3
class stock_picking(osv.osv):
 
4
    _inherit = "stock.picking"
 
5
    
 
6
    _columns = {
 
7
        'is_supplier_direct_delivery': fields.boolean('Is Direct Delivery?'),
 
8
    }
 
9
    
 
10
stock_picking()
 
 
b'\\ No newline at end of file'