Skip to content

Commit

Permalink
fix: 2178 - supp report ldv sales value + error upon issuance (#2179)
Browse files Browse the repository at this point in the history
  • Loading branch information
tim738745 authored Jun 4, 2024
1 parent 4016324 commit 3213e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/api/services/model_year_report_ldv_sales.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def get_most_recent_ldv_sales(model_year_report):
ModelYearReportLDVSales.objects.filter(
model_year=model_year_report.model_year, model_year_report=model_year_report
)
.order_by("-create_timestamp")
.order_by("-update_timestamp")
.only("ldv_sales")
.first()
)
Expand Down

0 comments on commit 3213e8a

Please sign in to comment.