add 小组服务团队-入股任务提交

This commit is contained in:
chenbo 2023-11-15 15:16:37 +08:00
parent 7761d9f08f
commit 880d4ef27a

View File

@ -717,12 +717,12 @@ class TaskController extends BaseApiController
public function commit_service_group_task()
{
try {
$parmas = $this->request->param(); // id annex
$parmas = $this->request->param(); // id annex amount
$task = TaskLogic::detail($parmas);
if (empty($task)) {
$this->fail('任务不存在');
}
$extend = ['is_commit'=>1, 'annex'=>$parmas['annex']];
$extend = ['is_commit'=>1, 'annex'=>$parmas['annex'], 'amount'=>$parmas['amount']];
Task::where(['id' => $parmas['id']])->update(['extend' => json_encode($extend), 'update_time' => time(), 'director_uid' => $this->userId]); // director_uid 指派人
@ -734,9 +734,10 @@ class TaskController extends BaseApiController
$approveModel->admin_id = 0; // 后台发起人id 暂时为0
$approveModel->user_id = $this->userId; // 前台发起人用户id
$approveModel->task_id = $task['id']; // 任务id
$approveModel->department_id = '0';
$approveModel->department_id = $this->userInfo['company_id']; // 公司id
$approveModel->check_status = 1; // 状态 0待审核,1审核中,2审核通过,3审核不通过,4撤销审核
$approveModel->other_type = 6;
$approveModel->amount = $parmas['amount']; // 入股金额
$approveModel->extend = json_encode($extend);
$approveModel->create_time = time();
$approveModel->update_time = time();