From 22fee0269b059528873e02a96a737d046cf1624f Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Sat, 30 Sep 2017 18:34:34 +0200 Subject: [PATCH] [FIX] account_payment_order: OU script - inbound --- account_payment_order/migrations/9.0.1.0.0/pre-migration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_payment_order/migrations/9.0.1.0.0/pre-migration.py b/account_payment_order/migrations/9.0.1.0.0/pre-migration.py index 33c0b1caa..5e4b655f3 100644 --- a/account_payment_order/migrations/9.0.1.0.0/pre-migration.py +++ b/account_payment_order/migrations/9.0.1.0.0/pre-migration.py @@ -118,7 +118,7 @@ def migrate_payment_mode_types(env): 'name': row[1], 'code': row[2], 'payment_type': ( - 'outbound' if row[3] == 'payment' else 'outbound' + 'outbound' if row[3] == 'payment' else 'inbound' ), 'active': row[4], })