Hey,
I'm trying to have the following code working in my python module on Odoo17:
```python
class ftp_client(models.Model):
host = fields.Char()
def connect(self):
_logger.info(f"Connecting to host: {self.host}")
class ResConfigSettings(models.TransientModel):
_inherit = 'res.config.settings'
ftp_client = fields.Many2one('ftp_client')
def some_action(self):
self.ftp_client.connect()
```
When I trigger "some_action" from a Scheduled Actions, I don't have any values in ftp_client.host: I get the following log: "Connecting to host: False"
Thanks for you help!