소스 검색

compound pdf

master
Siti Rahayu 5 년 전
부모
커밋
83ac6caf67
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5
    0
      app/Http/Controllers/Main/TaskController.php

+ 5
- 0
app/Http/Controllers/Main/TaskController.php 파일 보기

@@ -169,6 +169,11 @@ class TaskController extends Controller
$site = SiteSetting::first();
$compound = Compound::with('ConfidentialFile','Attachment','CompoundInvestigation')->where('kpd', $kpd)->first();
if(empty($compound))
{
$kpd = (int)$kpd;
$compound = Compound::with('ConfidentialFile','Attachment','CompoundInvestigation')->where('kpd', $kpd)->first();
}
$file = ConfidentialFile::with(['Memo' => function($q){
$q->orderBy('updated_at','ASC');
}],['Investigation' => function($q){

Loading…
취소
저장