[FIX] typo in super()

This commit is contained in:
Stéphane Bidoul
2014-02-21 23:29:26 +01:00
parent 46a4e2ea64
commit 05086d91fa

View File

@@ -32,7 +32,7 @@ class payment_order_create(orm.TransientModel):
def extend_payment_order_domain(
self, cr, uid, payment_order, domain, context=None):
super(self, payment_order_create).extend_payment_order_domain(
super(payment_order_create, self).extend_payment_order_domain(
cr, uid, payment_order, domain, context=context)
# apply payment term filter
if payment_order.mode.payment_term_ids: