From a02cf81dc7d3dfae7731ac4ded2b33d0df091216 Mon Sep 17 00:00:00 2001 From: Kevin Kempf Date: Fri, 19 Aug 2022 08:05:41 +0000 Subject: [PATCH] Remove the computed url to define the correct url for the service --- ebill_paynet/models/paynet_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebill_paynet/models/paynet_service.py b/ebill_paynet/models/paynet_service.py index fe1de4f..8439602 100644 --- a/ebill_paynet/models/paynet_service.py +++ b/ebill_paynet/models/paynet_service.py @@ -26,7 +26,7 @@ class PaynetService(models.Model): _description = "Paynet service configuration" name = fields.Char(required=True) - url = fields.Char(compute="_compute_url") + url = fields.Char() username = fields.Char() password = fields.Char() client_pid = fields.Char(string="Paynet ID", size=17, required=True)