django中两个计算注释的总和

发布于 2025-01-11 05:18:43 字数 786 浏览 0 评论 0原文

.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_timecompleted_total_time 中,当字段之一 tooling_timeprocessing_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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我的黑色迷你裙 2025-01-18 05:18:43

最后的解决方案是使用 serializers.SerializerMethodField() 计算序列化器中的两个字段

The solution at the end was to calculate that two fields in the serializer with serializers.SerializerMethodField()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文