瀏覽代碼

Merge remote-tracking branch 'origin/master'

# Conflicts:
#	apps/customer/views.py
wushaodong 4 年之前
父節點
當前提交
727336ee20
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      apps/customer/views.py

+ 1 - 1
apps/customer/views.py

@@ -421,7 +421,7 @@ class ReviewViewSet(CustomModelViewSet):
                 instance.check_time = timezone.now()
                 instance.save()
                 instance.customer.status = NewCustomer.ABANDONED
-                # 如果客户已下单,把工单状态改成放弃
+                # TODO 如果客户已下单,把工单状态改成放弃
                 Order.objects.filter(customer=instance.customer).update(status=Order.ABANDONED)
             NewCustomerRemind.filter(customer=instance.customer, remind_user=instance.customer.track_user).update(next_time=next_time)
         except CustomError as e: