mirror of
https://github.com/bringout/oca-ocb-hw.git
synced 2026-04-18 21:22:07 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
231 B
Python
10 lines
231 B
Python
from odoo import models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = "res.partner"
|
|
|
|
def test_fake_iot_input(self, value):
|
|
partner = self.browse(value)
|
|
partner.message_post(body=str(value))
|
|
return {}
|