[IMP] stock: set the field in wizard_partial_picking

bzr revid: sbh@tinyerp.com-20100323083134-t8fc4bi9orbpzy6x
This commit is contained in:
sbh (Open ERP) 2010-03-23 14:01:34 +05:30
parent c42e730bab
commit b473ba6e15
2 changed files with 4 additions and 4 deletions

View File

@ -104,7 +104,7 @@
<para style="terp_default_Centre_9">E-mail : [[ address and address.email ]]</para>
<para style="terp_default_Centre_9">Shop : [[ o.shop_id.name ]]</para>
<para style="terp_default_Centre_9">Vendeur : [[ o.user_id1.name ]]</para>
<para style="terp_default_Centre_9">Date : [[ o.date_order ]]</para>
<para style="terp_default_Centre_9">Date : [[ formatLang(o.date_order,date = True) ]]</para>
<para style="P4">
<font color="white"> </font>
</para>

View File

@ -72,7 +72,7 @@ def _get_moves(self, cr, uid, data, context):
_moves_fields['date%s' % pick.id] ={'string':'Date',
'type':'date', 'required' : '1','default': make_default(pick.date)}
_moves_arch_lst.append('<newline/>')
_moves_arch_lst.append('<separator string="Product Detail" colspan="4"/>')
_moves_arch_lst.append('<separator string="Delivery Detail" colspan="4"/>')
_moves_arch_lst.append('<label string="Product" align="0.0" />')
_moves_arch_lst.append('<label string="Quantity" align="10.0" />')
_moves_arch_lst.append('<label string="UOM" align="10.0" />')
@ -88,7 +88,7 @@ def _get_moves(self, cr, uid, data, context):
_moves_arch_lst.append('<field name="name%s" nolabel="1" />' % (m.id,))
_moves_fields['name%s' % m.id] = {
'string': 'Product',
'type' : 'char', 'required' : True, 'default' : make_default(m.name)}
'type' : 'many2one', 'relation': 'product.product', 'required' : True, 'default' : make_default(m.product_id.id)}
_moves_arch_lst.append('<field name="move%s" nolabel="1" />' % (m.id,))
_moves_fields['move%s' % m.id] = {
'string': 'Quantity',
@ -97,7 +97,7 @@ def _get_moves(self, cr, uid, data, context):
_moves_arch_lst.append('<field name="uom%s" nolabel="1"/>'% (m.id,))
_moves_fields['uom%s' % m.id] = {'string': 'UOM', 'type': 'many2one',
'relation': 'product.uom', 'required': True,
'relation': 'product.uom', 'readonly':True,'required': True,
'default': make_default(m.product_uom.id)}
_moves_arch_lst.append('</group>')