2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 04:25:42 +00:00

Fixes required for v3.2 compatibility

- Specify DEFAULT_AUTO_FIELD
- Specify output_field for annotations
This commit is contained in:
Oliver Walters
2021-04-20 09:14:08 +10:00
parent 12f1fb9526
commit 6b9145ae56
4 changed files with 19 additions and 7 deletions

View File

@ -807,7 +807,13 @@ class Build(MPTTModel):
allocations = self.allocatedItems(part, output)
allocated = allocations.aggregate(q=Coalesce(Sum('quantity'), 0))
allocated = allocations.aggregate(
q=Coalesce(
Sum('quantity'),
0,
output_field=models.DecimalField(),
)
)
return allocated['q']