From f6e58f229cec77eee1994a98840bf2afecd76a56 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Thu, 14 Mar 2024 14:49:29 +0530 Subject: [PATCH] fix: child table rating fields (#25433) --- frappe/model/document.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/model/document.py b/frappe/model/document.py index 3a3b07d4c9..e3b96c6745 100644 --- a/frappe/model/document.py +++ b/frappe/model/document.py @@ -591,6 +591,7 @@ class Document(BaseDocument): d._validate_selects() d._validate_non_negative() d._validate_length() + d._fix_rating_value() d._validate_code_fields() d._sync_autoname_field() d._extract_images_from_text_editor()