[FIX]pos: fix error when trying to duplicate point of sale

bzr revid: csn@openerp.com-20130318105304-3g7qlb8lrjr0e5rw
This commit is contained in:
Cedric Snauwaert 2013-03-18 11:53:04 +01:00
parent 9485c49f4f
commit 87908c8b58
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class pos_config(osv.osv):
'sequence_id' : False,
}
d.update(default)
return super(pos_order, self).copy(cr, uid, id, d, context=context)
return super(pos_config, self).copy(cr, uid, id, d, context=context)
def name_get(self, cr, uid, ids, context=None):