[FIX] Fixed wrong var name due to copy and paste.

bzr revid: tde@openerp.com-20120418150026-mxct64r1cuoq5131
This commit is contained in:
Thibault Delavallée 2012-04-18 17:00:26 +02:00
parent 5b89f73e3e
commit fab959eda8
1 changed files with 1 additions and 1 deletions

View File

@ -943,7 +943,7 @@ class sale_order(osv.osv):
# convert datetime field to a datetime, using server format, then
# convert it to the user TZ and re-render it with %Z to add the timezone
picking_datetime = fields.DT.datetime.strptime(picking.min_date, DEFAULT_SERVER_DATETIME_FORMAT)
picking_date_str = fields.datetime.context_timestamp(cr, uid, meeting_datetime, context=context).strftime(DATETIME_FORMATS_MAP['%+'] + " (%Z)")
picking_date_str = fields.datetime.context_timestamp(cr, uid, picking_datetime, context=context).strftime(DATETIME_FORMATS_MAP['%+'] + " (%Z)")
self.message_append_note(cr, uid, [order.id], body=_("Delivery Order <em>%s</em> <b>scheduled</b> for %s.") % (picking.name, picking_date_str), context=context)
def delivery_end_send_note(self, cr, uid, ids, context=None):