where(['store_id' => $storeId])->whereDay('create_time')->where('status', 0)->find(); if ($find) { $find->cash_price = bcadd($find->cash_price, $amount, 2); $find->receivable = bcadd($find->receivable, $amount, 2); if($source_mark){ $find->source_mark =$find->source_mark.','.$source_mark; } $find->save(); } else { $model->store_id = $storeId; $model->cash_price = $amount; $model->receivable = $amount; $model->remark = '银行转账请备注:'.mt_rand(1000, 9999); $model->source_mark = $source_mark; $model->status = YesNoEnum::NO; //收银台收了默认算完成了 $model->save(); } } }