This commit is contained in:
chenbo 2023-11-20 17:51:18 +08:00
parent 92f2abfc11
commit c9d14e48cb

View File

@ -1723,8 +1723,12 @@ class TaskLogic extends BaseLogic
'type_id' => 10
];
$result = ShopRequestLogic::getGeneralMerchantCount($param);
Log::error('查询供应链商户统计接口失败'.ShopRequestLogic::getError());
$count = $result['data']['count'];
if ($result['status'] == 200) {
$count = $result['data']['count'];
} else {
$count = 0;
}
if ($count >= $target) {
$taskMoney = $totalMoney;
return $taskMoney;