From 5fbe8478014bd62165966ac7f21513c1618b1839 Mon Sep 17 00:00:00 2001 From: Cedric Collins Date: Tue, 20 Sep 2022 11:23:30 -0500 Subject: [PATCH] [FIX] sale_payment_web: add explicit dependency on `payment_fix_register_token` 10887 --- sale_payment_web/__manifest__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sale_payment_web/__manifest__.py b/sale_payment_web/__manifest__.py index 87a26bd9..8b4192e7 100755 --- a/sale_payment_web/__manifest__.py +++ b/sale_payment_web/__manifest__.py @@ -15,6 +15,7 @@ Electronic payments will create transactions and automatically reconcile on the """, 'depends': [ 'payment', + 'payment_fix_register_token', 'sale', ], 'auto_install': False,