Remove the computed url to define the correct url for the service

This commit is contained in:
Kevin Kempf 2022-08-19 08:05:41 +00:00
parent 0bb7627196
commit a02cf81dc7

View File

@ -26,7 +26,7 @@ class PaynetService(models.Model):
_description = "Paynet service configuration" _description = "Paynet service configuration"
name = fields.Char(required=True) name = fields.Char(required=True)
url = fields.Char(compute="_compute_url") url = fields.Char()
username = fields.Char() username = fields.Char()
password = fields.Char() password = fields.Char()
client_pid = fields.Char(string="Paynet ID", size=17, required=True) client_pid = fields.Char(string="Paynet ID", size=17, required=True)