[FIX] procurement: change SQL query to be compatible with both postgres 8.4 and 9.3
authorMartin Trigaux <mat@openerp.com>
Mon, 21 Oct 2013 09:57:35 +0000 (11:57 +0200)
committerMartin Trigaux <mat@openerp.com>
Mon, 21 Oct 2013 09:57:35 +0000 (11:57 +0200)
bzr revid: mat@openerp.com-20131021095735-yz9pb5pphfdgl44j

addons/procurement/procurement.py

index f5d4761..6602425 100644 (file)
@@ -140,7 +140,7 @@ class procurement_order(osv.osv):
             if not proc.note or '_first_pass_done_' not in proc.note or proc.state not in ('confirmed', 'exception'):
                 super(procurement_order, self).message_track(cr, uid, [proc.id], tracked_fields, initial_values, context=context)
                 if proc.state == 'exception':
-                    cr.execute("""UPDATE procurement_order set note = CONCAT(note, %s) WHERE id = %s""", ('_first_pass_done_',proc.id))
+                    cr.execute("""UPDATE procurement_order set note = TRIM(both E'\n' FROM COALESCE(note, '') || %s) WHERE id = %s""", ('\n\n_first_pass_done_',proc.id))
 
         return True