Skip to content
Snippets Groups Projects

:sparkles: Added Writeonly converter. (features & fixes)

Merged Vincent Hatakeyama requested to merge topic/18.0/new-and-fix into branch/18.0
Files
4
+ 1
1
@@ -133,7 +133,7 @@
# do not include value if already the same
if instance and instance is not Newinstance:
value = self.odoo_to_message(instance)
if value is Skip or value == message_value:
if isinstance(value, SkipType) or value == message_value:
return {}
if self._odoo_formatter:
message_value = self._odoo_formatter(message_value)
Loading