[FIX] delivery

bzr revid: fp@tinyerp.com-20111002160804-wmr1usci1x7m9g2z
This commit is contained in:
Fabien Pinckaers 2011-10-02 18:08:04 +02:00
parent 709bdcf3e9
commit 751bb006c9
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ class define_delivery_steps(osv.osv_memory):
_name = 'delivery.define.delivery.steps.wizard'
_columns = {
'picking_policy' : fields.selection([('direct', 'Deliver each product when available'), ('one', 'Deliver all products at once'),],
'picking_policy' : fields.selection([('direct', 'Deliver each product when available'), ('one', 'Deliver all products at once')], 'Picking Policy'),
}
_defaults = {
'picking_policy': lambda s,c,u,ctx: s.pool.get('sale.order').default_get(c,u,['picking_policy'],context=ctx)['picking_policy']