From 90f79a7c993bde7da247757dde18fbb8fcab9996 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Tue, 7 Feb 2023 21:08:57 +0800 Subject: [PATCH] =?UTF-8?q?wf=E6=8A=A5=E9=94=99=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/wf/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/wf/services.py b/apps/wf/services.py index 84128f29..32d27639 100755 --- a/apps/wf/services.py +++ b/apps/wf/services.py @@ -204,7 +204,7 @@ class WfService(object): # user_queryset = user_queryset.filter(depts__in=depts) destination_participant = list(user_queryset.values_list('id', flat=True)) if destination_participant_type != 0 and (not destination_participant): - raise ParseError('未找到处理人,工单无法继续') + raise ParseError('下一步未找到处理人,工单无法继续') if type(destination_participant) == list: destination_participant_type = State.PARTICIPANT_TYPE_MULTI destination_participant = list(set(destination_participant))