fix: 完善负数校验2

This commit is contained in:
caoqianming 2025-04-24 16:12:38 +08:00
parent ca7d56a462
commit 84380931fd
1 changed files with 1 additions and 1 deletions

View File

@ -691,7 +691,7 @@ class MlogbInSerializer(CustomModelSerializer):
'wm_in': {'required': True, "allow_empty": False}}
def validate(self, attrs):
if attrs["count_use"] < 0 or attrs.get("count_pn_jgqbl", 0) < 0 or attrs["count_break"] < 0:
if attrs["count_use"] < 0 or attrs.get("count_pn_jgqbl", 0) < 0 or attrs.get("count_break", 0) < 0:
raise ParseError('存在负数!')
mlog:Mlog = attrs['mlog']
is_fix = mlog.is_fix