wproduct list 去除operation过滤

This commit is contained in:
caoqianming 2021-12-02 16:37:07 +08:00
parent 2cf91c2a0e
commit 87ac88a62f
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ class WProductViewSet(ListModelMixin, GenericViewSet):
半成品
"""
perms_map={'*':'*'}
queryset = WProduct.objects.select_related('step', 'material').filter(is_hidden=False, operation=None)
queryset = WProduct.objects.select_related('step', 'material').filter(is_hidden=False)
serializer_class = WProductListSerializer
filterset_fields = ['step', 'subproduction_plan', 'material', 'step__process', 'act_state']
search_fields = ['number']