|
...
|
...
|
@@ -27,6 +27,7 @@ use App\Services\ProjectServer; |
|
|
|
use Hashids\Hashids;
|
|
|
|
use App\Models\User\User as UserModel;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ProjectLogic
|
|
...
|
...
|
@@ -275,8 +276,8 @@ class ProjectLogic extends BaseLogic |
|
|
|
'plan' => $param['deploy_build']['plan'],
|
|
|
|
// 'api_no' => $param['id'], //改手动填
|
|
|
|
'amount' => $param['payment']['amount'],
|
|
|
|
'contract' => json_encode($param['payment']['files']),
|
|
|
|
'bill' => json_encode($param['payment']['images']),
|
|
|
|
'contract' => json_encode($param['payment']['contract']),
|
|
|
|
'bill' => json_encode($param['payment']['bill']),
|
|
|
|
];
|
|
|
|
$renewModel = new ProjectRenew();
|
|
|
|
$renewModel->add($data);
|
...
|
...
|
|