@@ -227,7 +227,7 @@ class WithdrawLogLogic
private function isShowReturnServiceMoney($id)
{
$key = 'WITHDRAWLOGRETURNSERVICEMONEY_' . $id;
- if (Cache::has($key) && 1 == 2) {
+ if (Cache::has($key)) {
return Cache::get($key);
}
@@ -24,7 +24,7 @@ class MoneyLog extends BaseDao
return Db::table(self::$table)
->where([
- 'type' => 14,
+ 'type' => 12,
'state' => 1,
'withdraw_log_id' => $id,
])