소스 검색

计算利润或者营业额

linhaohong 1 년 전
부모
커밋
dff1257e4c
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      AdminController/CloudServiceManage/AgentDeviceController.py

+ 1 - 2
AdminController/CloudServiceManage/AgentDeviceController.py

@@ -165,8 +165,7 @@ class AgentDeviceView(View):
 
             # 根据利润类型计算利润或者直接使用营业额
             if metric_type == 1:  # 利润
-                profit = package.profit if package.profit_type == 1 else order.profit_amount * package.profit / Decimal(
-                    '100.00')
+                profit = order.profit
             else:  # 营业额
                 profit = order.profit_amount