fix: wmaterial 返回count_working

This commit is contained in:
caoqianming 2024-09-12 11:26:39 +08:00
parent de42dfc75f
commit 8f0e512654
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class WMaterial(CommonBDModel):
@property
def count_working(self):
return Mlogb.objects.filter(wm_in=self, mlog__work_end_time__isnull=True).aggregate(count=Sum('count'))['count'] or 0
return Mlogb.objects.filter(wm_in=self, mlog__work_end_time__isnull=True).aggregate(count=Sum('count_use'))['count'] or 0
class Fmlog(CommonADModel):
route = models.ForeignKey(Route, verbose_name='生产路线', on_delete=models.SET_NULL, null=True, blank=True)