1
0
forked from erp-dev/erp

fix: current_state has been changed to a computed property

This commit is contained in:
2025-11-19 10:23:17 +08:00
parent 7f822b0064
commit 400c0db6db
14 changed files with 964 additions and 87 deletions

View File

@@ -22,7 +22,6 @@ class BusinessObjectFilterSet(django_filters.FilterSet):
process_name = django_filters.CharFilter(field_name='process__name', lookup_expr='icontains')
overall_status = django_filters.ChoiceFilter(
choices=[
('not_started', '未开始'),
('in_progress', '进行中'),
('completed', '已完成')
],