django中两个计算注释的总和
.annotate(
waste=Sum("processings__chunks__waste"),
completed_waste=models.Task.get_completed_waste_annotation(),
tooling_time=Sum("processings__chunks__tooling_time"),
completed_tooling_time=models.Task.get_completed_tooling_time_annotation(),
processing_time=Sum("processings__chunks__processing_time"),
completed_processing_time=models.Task.get_completed_processing_time_annotation(),
total_time=F("tooling_time") + F("processing_time"),
completed_total_time=F("completed_tooling_time") + F("completed_processing_time"),
)
我有这个注释,问题出在最后两个字段 total_time
和 completed_total_time
中,当字段之一 tooling_time
、processing_time
是 None,我在两个字段中都没有。
.annotate(
waste=Sum("processings__chunks__waste"),
completed_waste=models.Task.get_completed_waste_annotation(),
tooling_time=Sum("processings__chunks__tooling_time"),
completed_tooling_time=models.Task.get_completed_tooling_time_annotation(),
processing_time=Sum("processings__chunks__processing_time"),
completed_processing_time=models.Task.get_completed_processing_time_annotation(),
total_time=F("tooling_time") + F("processing_time"),
completed_total_time=F("completed_tooling_time") + F("completed_processing_time"),
)
I've this annotate, the problem is in the last two fields total_time
and completed_total_time
, when one of the fields tooling_time
, processing_time
is None, I get None in both of the fields.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后的解决方案是使用
serializers.SerializerMethodField()
计算序列化器中的两个字段The solution at the end was to calculate that two fields in the serializer with
serializers.SerializerMethodField()