$params['org_id'], 'dept_id' => $params['dept_id'], 'project_id' => $params['project_id'], 'customer_demand_id' => $params['customer_demand_id'], 'estimate_source' => $params['estimate_source'], 'contact_id' => $params['contact_id'], 'create_user' => $params['create_user'], 'quotation_date' => strtotime($params['quotation_date']), 'invoice_type' => $params['invoice_type'], 'technician' => $params['technician'], 'estimate_amount' => $params['estimate_amount'], 'ask' => $params['ask'], 'annex' => $params['annex'] ]); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); self::setError($e->getMessage()); return false; } } /** * @notes 编辑项目概算 * @param array $params * @return bool * @author likeadmin * @date 2023/11/24 21:42 */ public static function edit(array $params): bool { Db::startTrans(); try { ProjectEstimate::where('id', $params['id'])->update([ 'org_id' => $params['org_id'], 'dept_id' => $params['dept_id'], 'project_id' => $params['project_id'], 'customer_demand_id' => $params['customer_demand_id'], 'estimate_source' => $params['estimate_source'], 'contact_id' => $params['contact_id'], 'create_user' => $params['create_user'], 'quotation_date' => strtotime($params['quotation_date']), 'invoice_type' => $params['invoice_type'], 'technician' => $params['technician'], 'estimate_amount' => $params['estimate_amount'], 'ask' => $params['ask'], 'annex' => $params['annex'] ]); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); self::setError($e->getMessage()); return false; } } /** * @notes 删除项目概算 * @param array $params * @return bool * @author likeadmin * @date 2023/11/24 21:42 */ public static function delete(array $params): bool { return ProjectEstimate::destroy($params['id']); } /** * @notes 获取项目概算详情 * @param $params * @return array * @author likeadmin * @date 2023/11/24 21:42 */ public static function detail($params): array { $field = 'id,org_id,dept_id,project_id,customer_demand_id,contact_id,estimate_source,create_user,quotation_date,invoice_type,technician,estimate_amount,ask,annex'; $data = ProjectEstimate::field($field)->findOrEmpty($params['id']); $data['quotation_date'] = date('Y-m-d H:i:s',$data['quotation_date']); $data['estimate_source_text'] = $data->estimate_source_text; $data['invoice_type_text'] = $data->invoice_type_text; $org = Orgs::field('name')->where('id',$data['org_id'])->findOrEmpty(); $dept = Dept::field('name')->where('id',$data['dept_id'])->findOrEmpty(); $project = Project::field('name,project_code,custom_id')->where('id',$data['project_id'])->findOrEmpty(); $custom = Custom::field('name')->where('id',$project['custom_id'])->findOrEmpty(); $demand = CustomerDemand::field('theme')->where('id',$data['customer_demand_id'])->findOrEmpty(); $contract = CustomContacts::field('name,phone')->where('id',$data['contact_id'])->findOrEmpty(); $technician = Admin::field('name')->where('id',$data['technician'])->findOrEmpty(); $data['org_name'] = $org['name']; $data['dept_name'] = $dept['name']; $data['project_name'] = $project['name']; $data['project_code'] = $project['project_code']; $data['custom_name'] = $custom['name']; $data['customer_demand_name'] = $demand['theme']; $data['contact_name'] = $contract['name']; $data['contact_phone'] = $contract['phone']; $data['technician_name'] = $technician['name']; return $data->toArray(); } }