farhantock
8 months ago
13 changed files with 631 additions and 622 deletions
@ -1,160 +1,159 @@ |
|||||||
<?php |
<?php |
||||||
|
|
||||||
namespace App\Http\Controllers; |
namespace App\Http\Controllers; |
||||||
|
|
||||||
use Illuminate\Http\Request; |
use App\Models\{AssignMaterial,AssignTools,ToolsResource}; |
||||||
use App\Models\AssignTools; |
use Illuminate\Http\Request; |
||||||
use Datatables; |
use Yajra\Datatables\Datatables; |
||||||
use App\Models\ToolsResource; |
class AssignToolsController extends Controller |
||||||
class AssignToolsController extends Controller |
{ |
||||||
{ |
public function add(Request $request){ |
||||||
public function add(Request $request){ |
$this->validate($request, [ |
||||||
$this->validate($request, [ |
'activity_id' => 'required', |
||||||
'activity_id' => 'required', |
'tools_id' => 'required', |
||||||
'tools_id' => 'required', |
'qty_planning' => 'required', |
||||||
'qty_planning' => 'required', |
]); |
||||||
]); |
|
||||||
|
$checkStock = ToolsResource::where("id", $request->tools_id)->first(); |
||||||
$checkStock = ToolsResource::where("id", $request->tools_id)->first(); |
$currentStock = $checkStock->qty; |
||||||
$currentStock = $checkStock->qty; |
if((int)$currentStock < (int)$request->qty_planning){ |
||||||
if((int)$currentStock < (int)$request->qty_planning){ |
return response()->json(['status'=>'failed','message'=>'Not enough stock in warehouse!','code'=>400]); |
||||||
return response()->json(['status'=>'failed','message'=>'Not enough stock in warehouse!','code'=>400]); |
die(); |
||||||
die(); |
} |
||||||
} |
|
||||||
|
|
||||||
|
$data = $request->all(); |
||||||
$data = $request->all(); |
|
||||||
|
$data['created_by'] = $this->currentName; |
||||||
$data['created_by'] = $this->currentName; |
|
||||||
|
$result = AssignTools::create($data); |
||||||
$result = AssignTools::create($data); |
if($result){ |
||||||
if($result){ |
$checkStock = ToolsResource::find($request->tools_id); |
||||||
$checkStock = ToolsResource::find($request->tools_id); |
$newStock = (int)$checkStock->qty - (int)$request->qty_planning; |
||||||
$newStock = (int)$checkStock->qty - (int)$request->qty_planning; |
$dataUpdate = array( |
||||||
$dataUpdate = array( |
"qty"=>$newStock, |
||||||
"qty"=>$newStock, |
"updated_by"=>$this->currentName |
||||||
"updated_by"=>$this->currentName |
); |
||||||
); |
$checkStock->update($dataUpdate); |
||||||
$checkStock->update($dataUpdate); |
return response()->json(['status'=>'success','message'=>'Assign tools success!','code'=>200]); |
||||||
return response()->json(['status'=>'success','message'=>'Assign tools success!','code'=>200]); |
}else{ |
||||||
}else{ |
return response()->json(['status'=>'failed','message'=>'Assign tools failed','code'=>400]); |
||||||
return response()->json(['status'=>'failed','message'=>'Assign tools failed','code'=>400]); |
} |
||||||
} |
} |
||||||
} |
|
||||||
|
private function updateFromAdd($data){ |
||||||
private function updateFromAdd($data){ |
$assignTools = AssignTools::where("activity_id", $data->activity_id)->where("tools_id", $data->tools_id)->first(); |
||||||
$assignTools = AssignTools::where("activity_id", $data->activity_id)->where("tools_id", $data->tools_id)->first(); |
|
||||||
|
$newQty = (int)$assignTools->qty_planning + (int)$data->qty_planning; |
||||||
$newQty = (int)$assignTools->qty_planning + (int)$data->qty_planning; |
$dataUpdate = array( |
||||||
$dataUpdate = array( |
"qty_planning"=>$newQty, |
||||||
"qty_planning"=>$newQty, |
"updated_by"=>$this->currentName |
||||||
"updated_by"=>$this->currentName |
); |
||||||
); |
|
||||||
|
$dataWillUpdate = AssignMaterial::where("activity_id", $data->activity_id)->where("tools_id", $data->tools_id); |
||||||
$dataWillUpdate = AssignMaterial::where("activity_id", $data->activity_id)->where("tools_id", $data->tools_id); |
|
||||||
|
return $dataWillUpdate->update($dataUpdate); |
||||||
return $dataWillUpdate->update($dataUpdate); |
} |
||||||
} |
|
||||||
|
public function update(Request $request, $id){ |
||||||
public function update(Request $request, $id){ |
|
||||||
|
if(!$id || (int) $id < 0 || $id==""){ |
||||||
if(!$id || (int) $id < 0 || $id==""){ |
return response()->json(['status'=>'failed','message'=>'id is required!','code'=>400], 400); |
||||||
return response()->json(['status'=>'failed','message'=>'id is required!','code'=>400], 400); |
} |
||||||
} |
$data = AssignTools::find($id); |
||||||
$data = AssignTools::find($id); |
if($data){ |
||||||
if($data){ |
$result = $data->update($request->all()); |
||||||
$result = $data->update($request->all()); |
}else{ |
||||||
}else{ |
return response()->json(['status'=>'failed','message'=>'Data Assign tools not found!','code'=>400], 400); |
||||||
return response()->json(['status'=>'failed','message'=>'Data Assign tools not found!','code'=>400], 400); |
die(); |
||||||
die(); |
} |
||||||
} |
|
||||||
|
if($result){ |
||||||
if($result){ |
return response()->json(['status'=>'success','message'=>'Assign tools successfully updated!','code'=>200], 200); |
||||||
return response()->json(['status'=>'success','message'=>'Assign tools successfully updated!','code'=>200], 200); |
}else{ |
||||||
}else{ |
return response()->json(['status'=>'failed','message'=>'Assign tools failed updated!','code'=>400], 400); |
||||||
return response()->json(['status'=>'failed','message'=>'Assign tools failed updated!','code'=>400], 400); |
} |
||||||
} |
} |
||||||
} |
|
||||||
|
public function delete($id) |
||||||
public function delete($id) |
{ |
||||||
{ |
$data = AssignTools::find($id); |
||||||
$data = AssignTools::find($id); |
|
||||||
|
if($data){ |
||||||
if($data){ |
$id = $data->tools_id; |
||||||
$id = $data->tools_id; |
$stock = $data->qty_planning; |
||||||
$stock = $data->qty_planning; |
$toolsResource = ToolsResource::find($id); |
||||||
$toolsResource = ToolsResource::find($id); |
if($toolsResource){ |
||||||
if($toolsResource){ |
$oldStock = $toolsResource->qty; |
||||||
$oldStock = $toolsResource->qty; |
$newStock = $oldStock + $stock; |
||||||
$newStock = $oldStock + $stock; |
$dataUpdate = array( |
||||||
$dataUpdate = array( |
"qty"=>$newStock, |
||||||
"qty"=>$newStock, |
"updated_by"=>$this->currentName |
||||||
"updated_by"=>$this->currentName |
); |
||||||
); |
$toolsResource->update($dataUpdate); |
||||||
$toolsResource->update($dataUpdate); |
} |
||||||
} |
|
||||||
|
$delete = $data->delete(); |
||||||
$delete = $data->delete(); |
}else{ |
||||||
}else{ |
return response()->json(['status'=>'failed','message'=>'Data Assign tools not found!','code'=>400], 400); |
||||||
return response()->json(['status'=>'failed','message'=>'Data Assign tools not found!','code'=>400], 400); |
die(); |
||||||
die(); |
} |
||||||
} |
|
||||||
|
|
||||||
|
if($delete){ |
||||||
if($delete){ |
return response()->json(['status'=>'success','message'=>'Assign tools successfully deleted!','code'=>200], 200); |
||||||
return response()->json(['status'=>'success','message'=>'Assign tools successfully deleted!','code'=>200], 200); |
}else{ |
||||||
}else{ |
return response()->json(['status'=>'failed','message'=>'Assign tools failed deleted!','code'=>400], 400); |
||||||
return response()->json(['status'=>'failed','message'=>'Assign tools failed deleted!','code'=>400], 400); |
} |
||||||
} |
} |
||||||
} |
|
||||||
|
public function edit($id){ |
||||||
public function edit($id){ |
if(!$id || (int) $id < 0 || $id==""){ |
||||||
if(!$id || (int) $id < 0 || $id==""){ |
return response()->json(['status'=>'failed','message'=>'id is required!','code'=>400], 400); |
||||||
return response()->json(['status'=>'failed','message'=>'id is required!','code'=>400], 400); |
die(); |
||||||
die(); |
} |
||||||
} |
|
||||||
|
$result = AssignTools::find($id); |
||||||
$result = AssignTools::find($id); |
|
||||||
|
if($result){ |
||||||
if($result){ |
return response()->json(['status'=>'success','code'=>200,'data'=>$result], 200); |
||||||
return response()->json(['status'=>'success','code'=>200,'data'=>$result], 200); |
}else{ |
||||||
}else{ |
return response()->json(['status'=>'failed','message'=>'failed get data Assign tools, please try again later!','code'=>400], 400); |
||||||
return response()->json(['status'=>'failed','message'=>'failed get data Assign tools, please try again later!','code'=>400], 400); |
} |
||||||
} |
} |
||||||
} |
|
||||||
|
public function search(Request $request) |
||||||
public function search(Request $request) |
{ |
||||||
{ |
$payload = $request->all(); |
||||||
$payload = $request->all(); |
$dataBuilder = $this->setUpPayload($payload, 'assign_tools_to_activity'); |
||||||
$dataBuilder = $this->setUpPayload($payload, 'assign_tools_to_activity'); |
$builder = $dataBuilder['builder']; |
||||||
$builder = $dataBuilder['builder']; |
$countBuilder = $dataBuilder['count']; |
||||||
$countBuilder = $dataBuilder['count']; |
$dataGet = $builder->get(); |
||||||
$dataGet = $builder->get(); |
$totalRecord = $countBuilder->count(); |
||||||
$totalRecord = $countBuilder->count(); |
return response()->json(['status'=>'success','code'=>200,'data'=>$dataGet, 'totalRecord'=>$totalRecord], 200); |
||||||
return response()->json(['status'=>'success','code'=>200,'data'=>$dataGet, 'totalRecord'=>$totalRecord], 200); |
} |
||||||
} |
|
||||||
|
public function list() |
||||||
public function list() |
{ |
||||||
{ |
$data = AssignTools::all(); |
||||||
$data = AssignTools::all(); |
$countData = $data->count(); |
||||||
$countData = $data->count(); |
|
||||||
|
if($data){ |
||||||
if($data){ |
return response()->json(['status'=>'success','code'=>200,'data'=>$data, 'totalRecord'=>$countData], 200); |
||||||
return response()->json(['status'=>'success','code'=>200,'data'=>$data, 'totalRecord'=>$countData], 200); |
}else{ |
||||||
}else{ |
return response()->json(['status'=>'failed','message'=>'failed get Assign tools, please try again later!','code'=>400], 400); |
||||||
return response()->json(['status'=>'failed','message'=>'failed get Assign tools, please try again later!','code'=>400], 400); |
} |
||||||
} |
} |
||||||
} |
|
||||||
|
public function datatables(Request $request){ |
||||||
public function datatables(Request $request){ |
$id_activity = $request->query('idact'); |
||||||
$id_activity = $request->query('idact'); |
$data = AssignTools::select("assign_tools_to_activity.*","m.name as tools_name","m.uom as uom")->join("m_tools_resource as m", "m.id", "=", "assign_tools_to_activity.tools_id")->where('assign_tools_to_activity.activity_id', $id_activity)->get(); |
||||||
$data = AssignTools::select("assign_tools_to_activity.*","m.name as tools_name","m.uom as uom")->join("m_tools_resource as m", "m.id", "=", "assign_tools_to_activity.tools_id")->where('assign_tools_to_activity.activity_id', $id_activity)->get(); |
return Datatables::of($data) |
||||||
return Datatables::of($data) |
->addIndexColumn() |
||||||
->addIndexColumn() |
->addColumn('action', function($row){ |
||||||
->addColumn('action', function($row){ |
$actionBtn = '<a href="javascript:void(0)" data-id="'.$row->id.'" class="delete btn btn-danger btn-sm btn-tools-delete"><i class="fa fa-trash"></i></a>'; |
||||||
$actionBtn = '<a href="javascript:void(0)" data-id="'.$row->id.'" class="delete btn btn-danger btn-sm btn-tools-delete"><i class="fa fa-trash"></i></a>'; |
return $actionBtn; |
||||||
return $actionBtn; |
}) |
||||||
}) |
->rawColumns(['action'])->make(true); |
||||||
->rawColumns(['action'])->make(true); |
} |
||||||
} |
} |
||||||
} |
|
||||||
|
@ -1,140 +1,140 @@ |
|||||||
<?php |
<?php |
||||||
|
|
||||||
namespace App\Http\Controllers; |
namespace App\Http\Controllers; |
||||||
|
|
||||||
use Illuminate\Http\Request; |
use Illuminate\Http\Request; |
||||||
use App\Models\Holiday; |
use App\Models\Holiday; |
||||||
use Datatables; |
use Yajra\Datatables\Datatables; |
||||||
|
|
||||||
class HolidayController extends Controller |
class HolidayController extends Controller |
||||||
{ |
{ |
||||||
public function add(Request $request) |
public function add(Request $request) |
||||||
{ |
{ |
||||||
$this->validate($request, [ |
$this->validate($request, [ |
||||||
'proyek_id' => 'required', |
'proyek_id' => 'required', |
||||||
'version_gantt_id' => 'required', |
'version_gantt_id' => 'required', |
||||||
'date' => 'required' |
'date' => 'required' |
||||||
]); |
]); |
||||||
|
|
||||||
$data = $request->all(); |
$data = $request->all(); |
||||||
$duration = $request->duration; |
$duration = $request->duration; |
||||||
if(!$duration){ |
if(!$duration){ |
||||||
$data['duration'] = 1; |
$data['duration'] = 1; |
||||||
} |
} |
||||||
$data['created_by'] = $this->currentName; |
$data['created_by'] = $this->currentName; |
||||||
|
|
||||||
$result = Holiday::create($data); |
$result = Holiday::create($data); |
||||||
|
|
||||||
if($result){ |
if($result){ |
||||||
return response()->json(['status'=>'success','message'=>'add holiday successfully!','code'=>200], 200); |
return response()->json(['status'=>'success','message'=>'add holiday successfully!','code'=>200], 200); |
||||||
}else{ |
}else{ |
||||||
return response()->json(['status'=>'failed','message'=>'add holiday failed!','code'=>400], 400); |
return response()->json(['status'=>'failed','message'=>'add holiday failed!','code'=>400], 400); |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
public function edit($id){ |
public function edit($id){ |
||||||
if(!$id || (int) $id < 0 || $id==""){ |
if(!$id || (int) $id < 0 || $id==""){ |
||||||
return response()->json(['status'=>'failed','message'=>'id is required!','code'=>400], 400); |
return response()->json(['status'=>'failed','message'=>'id is required!','code'=>400], 400); |
||||||
die(); |
die(); |
||||||
} |
} |
||||||
|
|
||||||
$result = Holiday::find($id); |
$result = Holiday::find($id); |
||||||
|
|
||||||
if($result){ |
if($result){ |
||||||
return response()->json(['status'=>'success','code'=>200,'data'=>$result], 200); |
return response()->json(['status'=>'success','code'=>200,'data'=>$result], 200); |
||||||
}else{ |
}else{ |
||||||
return response()->json(['status'=>'failed','message'=>'failed get data holiday, please try again later!','code'=>400], 400); |
return response()->json(['status'=>'failed','message'=>'failed get data holiday, please try again later!','code'=>400], 400); |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
public function update(Request $request, $id) |
public function update(Request $request, $id) |
||||||
{ |
{ |
||||||
if(!$id || (int) $id < 0 || $id==""){ |
if(!$id || (int) $id < 0 || $id==""){ |
||||||
return response()->json(['status'=>'failed','message'=>'id is required!','code'=>400], 400); |
return response()->json(['status'=>'failed','message'=>'id is required!','code'=>400], 400); |
||||||
} |
} |
||||||
|
|
||||||
$data = Holiday::find($id); |
$data = Holiday::find($id); |
||||||
|
|
||||||
if($data){ |
if($data){ |
||||||
$result = $data->update($request->all()); |
$result = $data->update($request->all()); |
||||||
}else{ |
}else{ |
||||||
return response()->json(['status'=>'failed','message'=>'data holiday not found!','code'=>400], 400); |
return response()->json(['status'=>'failed','message'=>'data holiday not found!','code'=>400], 400); |
||||||
die(); |
die(); |
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
if($result){ |
if($result){ |
||||||
return response()->json(['status'=>'success','message'=>'data holiday successfully updated!','code'=>200], 200); |
return response()->json(['status'=>'success','message'=>'data holiday successfully updated!','code'=>200], 200); |
||||||
}else{ |
}else{ |
||||||
return response()->json(['status'=>'failed','message'=>'data holiday failed updated!','code'=>400], 400); |
return response()->json(['status'=>'failed','message'=>'data holiday failed updated!','code'=>400], 400); |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
public function delete($id) |
public function delete($id) |
||||||
{ |
{ |
||||||
$data = Holiday::find($id); |
$data = Holiday::find($id); |
||||||
|
|
||||||
if($data){ |
if($data){ |
||||||
$deletedData = $data; |
$deletedData = $data; |
||||||
$delete = $data->delete(); |
$delete = $data->delete(); |
||||||
}else{ |
}else{ |
||||||
return response()->json(['status'=>'failed','message'=>'data holiday not found!','code'=>400], 400); |
return response()->json(['status'=>'failed','message'=>'data holiday not found!','code'=>400], 400); |
||||||
die(); |
die(); |
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
if($delete){ |
if($delete){ |
||||||
return response()->json(['status'=>'success', 'data'=>$deletedData,'message'=>'data holiday successfully deleted!','code'=>200], 200); |
return response()->json(['status'=>'success', 'data'=>$deletedData,'message'=>'data holiday successfully deleted!','code'=>200], 200); |
||||||
}else{ |
}else{ |
||||||
return response()->json(['status'=>'failed','message'=>'data holiday failed deleted!','code'=>400], 400); |
return response()->json(['status'=>'failed','message'=>'data holiday failed deleted!','code'=>400], 400); |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
public function search(Request $request) |
public function search(Request $request) |
||||||
{ |
{ |
||||||
$payload = $request->all(); |
$payload = $request->all(); |
||||||
$dataBuilder = $this->setUpPayload($payload, 'm_holidays'); |
$dataBuilder = $this->setUpPayload($payload, 'm_holidays'); |
||||||
$builder = $dataBuilder['builder']; |
$builder = $dataBuilder['builder']; |
||||||
$countBuilder = $dataBuilder['count']; |
$countBuilder = $dataBuilder['count']; |
||||||
$dataGet = $builder->get(); |
$dataGet = $builder->get(); |
||||||
$totalRecord = $countBuilder->count(); |
$totalRecord = $countBuilder->count(); |
||||||
return response()->json(['status'=>'success','code'=>200,'data'=>$dataGet, 'totalRecord'=>$totalRecord], 200); |
return response()->json(['status'=>'success','code'=>200,'data'=>$dataGet, 'totalRecord'=>$totalRecord], 200); |
||||||
} |
} |
||||||
|
|
||||||
public function list() |
public function list() |
||||||
{ |
{ |
||||||
$data = Holiday::all(); |
$data = Holiday::all(); |
||||||
$countData = $data->count(); |
$countData = $data->count(); |
||||||
|
|
||||||
if($data){ |
if($data){ |
||||||
return response()->json(['status'=>'success','code'=>200,'data'=>$data, 'totalRecord'=>$countData], 200); |
return response()->json(['status'=>'success','code'=>200,'data'=>$data, 'totalRecord'=>$countData], 200); |
||||||
}else{ |
}else{ |
||||||
return response()->json(['status'=>'failed','message'=>'failed get list holiday, please try again later!','code'=>400], 400); |
return response()->json(['status'=>'failed','message'=>'failed get list holiday, please try again later!','code'=>400], 400); |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
public function datatables(Request $request){ |
public function datatables(Request $request){ |
||||||
$proyek_id = $request->query('proyek_id'); |
$proyek_id = $request->query('proyek_id'); |
||||||
$gantt_id = $request->query('gantt_id'); |
$gantt_id = $request->query('gantt_id'); |
||||||
|
|
||||||
$data = Holiday::where('proyek_id', $proyek_id)->where('version_gantt_id', $gantt_id)->get(); |
$data = Holiday::where('proyek_id', $proyek_id)->where('version_gantt_id', $gantt_id)->get(); |
||||||
|
|
||||||
return Datatables::of($data) |
return Datatables::of($data) |
||||||
->editColumn('date', function($row) { |
->editColumn('date', function($row) { |
||||||
$date = date_create($row->date); |
$date = date_create($row->date); |
||||||
$dateFormat = date_format($date,"d-m-Y"); |
$dateFormat = date_format($date,"d-m-Y"); |
||||||
return $dateFormat; |
return $dateFormat; |
||||||
}) |
}) |
||||||
->editColumn('duration', function($row) { |
->editColumn('duration', function($row) { |
||||||
$day = (int)$row->duration > 1 ? "days" : "day"; |
$day = (int)$row->duration > 1 ? "days" : "day"; |
||||||
return $row->duration." ".$day; |
return $row->duration." ".$day; |
||||||
}) |
}) |
||||||
->addIndexColumn() |
->addIndexColumn() |
||||||
->addColumn('action', function($row){ |
->addColumn('action', function($row){ |
||||||
$actionBtn = '<a href="javascript:void(0)" data-id="'.$row->id.'" class="delete btn btn-danger btn-sm btn-holiday-delete"><i class="fa fa-trash"></i></a>'; |
$actionBtn = '<a href="javascript:void(0)" data-id="'.$row->id.'" class="delete btn btn-danger btn-sm btn-holiday-delete"><i class="fa fa-trash"></i></a>'; |
||||||
return $actionBtn; |
return $actionBtn; |
||||||
}) |
}) |
||||||
|
|
||||||
->rawColumns(['action'])->make(true); |
->rawColumns(['action'])->make(true); |
||||||
} |
} |
||||||
} |
} |
||||||
|
@ -1,17 +1,17 @@ |
|||||||
<?php |
<?php |
||||||
|
|
||||||
namespace App\Models; |
namespace App\Models; |
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model; |
use Illuminate\Database\Eloquent\Model; |
||||||
|
|
||||||
class ProjectRole extends Model |
class ProjectRole extends Model |
||||||
{ |
{ |
||||||
protected $table = 'm_role_proyek'; |
protected $table = 'm_role_proyek'; |
||||||
|
|
||||||
const CREATED_AT = 'created_at'; |
const CREATED_AT = 'created_at'; |
||||||
const UPDATED_AT = 'updated_at'; |
const UPDATED_AT = 'updated_at'; |
||||||
|
|
||||||
protected $fillable = [ |
protected $fillable = [ |
||||||
'name', 'description', 'created_at', 'created_by', 'updated_at', 'updated_by' |
'name', 'description', 'created_at', 'created_by', 'updated_at', 'company_id', 'updated_by' |
||||||
]; |
]; |
||||||
} |
} |
||||||
|
@ -1,198 +1,198 @@ |
|||||||
<?php |
<?php |
||||||
|
|
||||||
namespace App\Models; |
namespace App\Models; |
||||||
|
|
||||||
use Tymon\JWTAuth\Contracts\JWTSubject; |
use Tymon\JWTAuth\Contracts\JWTSubject; |
||||||
use Illuminate\Auth\Authenticatable; |
use Illuminate\Auth\Authenticatable; |
||||||
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract; |
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract; |
||||||
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract; |
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract; |
||||||
use Illuminate\Database\Eloquent\Factories\HasFactory; |
use Illuminate\Database\Eloquent\Factories\HasFactory; |
||||||
use Illuminate\Database\Eloquent\Model; |
use Illuminate\Database\Eloquent\Model; |
||||||
use Laravel\Lumen\Auth\Authorizable; |
use Laravel\Lumen\Auth\Authorizable; |
||||||
use Carbon\Carbon; |
use Carbon\Carbon; |
||||||
|
|
||||||
class User extends Model implements AuthenticatableContract, AuthorizableContract, JWTSubject |
class User extends Model implements AuthenticatableContract, AuthorizableContract, JWTSubject |
||||||
{ |
{ |
||||||
use Authenticatable, Authorizable, HasFactory; |
use Authenticatable, Authorizable, HasFactory; |
||||||
|
|
||||||
protected $table = 'm_users'; |
protected $table = 'm_users'; |
||||||
/** |
/** |
||||||
* The attributes that are mass assignable. |
* The attributes that are mass assignable. |
||||||
* |
* |
||||||
* @var array |
* @var array |
||||||
*/ |
*/ |
||||||
protected $fillable = [ |
protected $fillable = [ |
||||||
'name', 'email', 'role_id', 'username', 'session_login', 'phone_number', 'email', 'address', |
'name', 'email', 'role_id', 'username', 'session_login', 'phone_number', 'email', 'address', |
||||||
'fcm_token', 'gender', 'birth_place', 'birth_date', 'blood_type', 'ktp_number', 'working_hours', |
'fcm_token', 'gender', 'birth_place', 'birth_date', 'blood_type', 'ktp_number', 'working_hours', |
||||||
'created_at', 'created_by', 'updated_at', 'updated_by', 'status_resource', 'discount_id' |
'created_at', 'created_by', 'updated_at', 'updated_by', 'status_resource', 'discount_id','company_id' |
||||||
]; |
]; |
||||||
|
|
||||||
const CREATED_AT = 'created_at'; |
const CREATED_AT = 'created_at'; |
||||||
const UPDATED_AT = 'updated_at'; |
const UPDATED_AT = 'updated_at'; |
||||||
|
|
||||||
const DEFAULT_TZ = 'Asia/Jakarta'; |
const DEFAULT_TZ = 'Asia/Jakarta'; |
||||||
const INSIDE = "INSIDE"; |
const INSIDE = "INSIDE"; |
||||||
const OUTSIDE = "OUTSIDE"; |
const OUTSIDE = "OUTSIDE"; |
||||||
const HOLIDAY = "HOLIDAY"; |
const HOLIDAY = "HOLIDAY"; |
||||||
|
|
||||||
/** |
/** |
||||||
* The attributes excluded from the model's JSON form. |
* The attributes excluded from the model's JSON form. |
||||||
* |
* |
||||||
* @var array |
* @var array |
||||||
*/ |
*/ |
||||||
protected $hidden = [ |
protected $hidden = [ |
||||||
'password', |
'password', |
||||||
]; |
]; |
||||||
|
|
||||||
/** |
/** |
||||||
* Get the identifier that will be stored in the subject claim of the JWT. |
* Get the identifier that will be stored in the subject claim of the JWT. |
||||||
* |
* |
||||||
* @return mixed |
* @return mixed |
||||||
*/ |
*/ |
||||||
public function getJWTIdentifier() |
public function getJWTIdentifier() |
||||||
{ |
{ |
||||||
return $this->getKey(); |
return $this->getKey(); |
||||||
} |
} |
||||||
|
|
||||||
/** |
/** |
||||||
* Return a key value array, containing any custom claims to be added to the JWT. |
* Return a key value array, containing any custom claims to be added to the JWT. |
||||||
* |
* |
||||||
* @return array |
* @return array |
||||||
*/ |
*/ |
||||||
public function getJWTCustomClaims() |
public function getJWTCustomClaims() |
||||||
{ |
{ |
||||||
return []; |
return []; |
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
/** |
/** |
||||||
* Get working hours for given timestamp |
* Get working hours for given timestamp |
||||||
* |
* |
||||||
* @return array of carbon or NULL in case HOLIDAY |
* @return array of carbon or NULL in case HOLIDAY |
||||||
*/ |
*/ |
||||||
|
|
||||||
public function getWorkingTime(Carbon $ts, $f = "08:00", $t = "17:00", $tz = self::DEFAULT_TZ) |
public function getWorkingTime(Carbon $ts, $f = "08:00", $t = "17:00", $tz = self::DEFAULT_TZ) |
||||||
{ |
{ |
||||||
$workingTime = array( |
$workingTime = array( |
||||||
"from" => Carbon::createFromTimeString($f, $tz), |
"from" => Carbon::createFromTimeString($f, $tz), |
||||||
"to" => Carbon::createFromTimeString($t, $tz) |
"to" => Carbon::createFromTimeString($t, $tz) |
||||||
); |
); |
||||||
|
|
||||||
$userShift = UserShift::where('user_id',) |
$userShift = UserShift::where('user_id',) |
||||||
->orderByDesc('from_date') |
->orderByDesc('from_date') |
||||||
->first(); |
->first(); |
||||||
|
|
||||||
$shift = null; |
$shift = null; |
||||||
if ($userShift !== null) { |
if ($userShift !== null) { |
||||||
$shiftId = null; |
$shiftId = null; |
||||||
switch ($ts->shortEnglishDayOfWeek) { |
switch ($ts->shortEnglishDayOfWeek) { |
||||||
case "Mon": |
case "Mon": |
||||||
$shiftId = $userShift->mon_shift_id; |
$shiftId = $userShift->mon_shift_id; |
||||||
break; |
break; |
||||||
case "Tue": |
case "Tue": |
||||||
$shiftId = $userShift->tue_shift_id; |
$shiftId = $userShift->tue_shift_id; |
||||||
break; |
break; |
||||||
case "Wed": |
case "Wed": |
||||||
$shiftId = $userShift->wed_shift_id; |
$shiftId = $userShift->wed_shift_id; |
||||||
break; |
break; |
||||||
case "Thu": |
case "Thu": |
||||||
$shiftId = $userShift->thu_shift_id; |
$shiftId = $userShift->thu_shift_id; |
||||||
break; |
break; |
||||||
case "Fri": |
case "Fri": |
||||||
$shiftId = $userShift->fri_shift_id; |
$shiftId = $userShift->fri_shift_id; |
||||||
break; |
break; |
||||||
case "Sat": |
case "Sat": |
||||||
$shiftId = $userShift->sat_shift_id; |
$shiftId = $userShift->sat_shift_id; |
||||||
break; |
break; |
||||||
case "Sun": |
case "Sun": |
||||||
$shiftId = $userShift->sun_shift_id; |
$shiftId = $userShift->sun_shift_id; |
||||||
break; |
break; |
||||||
} |
} |
||||||
|
|
||||||
if ($shiftId === null) { |
if ($shiftId === null) { |
||||||
return null; |
return null; |
||||||
} |
} |
||||||
|
|
||||||
$shift = Shift::where('id', $shiftId)->first(); |
$shift = Shift::where('id', $shiftId)->first(); |
||||||
} else { |
} else { |
||||||
$shift = Shift::where('is_non_shift', true) |
$shift = Shift::where('is_non_shift', true) |
||||||
->orderByDesc('created_at') |
->orderByDesc('created_at') |
||||||
->first(); |
->first(); |
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
if ($shift !== null) { |
if ($shift !== null) { |
||||||
$from = Carbon::createFromTimeString($shift->start_time, $tz) |
$from = Carbon::createFromTimeString($shift->start_time, $tz) |
||||||
->subMinutes($shift->flex_time_minute); |
->subMinutes($shift->flex_time_minute); |
||||||
$to = Carbon::createFromTimeString($shift->end_time, $tz) |
$to = Carbon::createFromTimeString($shift->end_time, $tz) |
||||||
->addMinutes($shift->flex_time_minute); |
->addMinutes($shift->flex_time_minute); |
||||||
|
|
||||||
/* |
/* |
||||||
if ($to->lessThan($from)) |
if ($to->lessThan($from)) |
||||||
{ |
{ |
||||||
$to->addDay(); |
$to->addDay(); |
||||||
} |
} |
||||||
*/ |
*/ |
||||||
$workingTime['from'] = $from; |
$workingTime['from'] = $from; |
||||||
$workingTime['to'] = $to; |
$workingTime['to'] = $to; |
||||||
} |
} |
||||||
|
|
||||||
return $workingTime; |
return $workingTime; |
||||||
} |
} |
||||||
|
|
||||||
/** |
/** |
||||||
* Get presence status |
* Get presence status |
||||||
*/ |
*/ |
||||||
public function presenceStatus(Carbon $at = null, $tz = self::DEFAULT_TZ) |
public function presenceStatus(Carbon $at = null, $tz = self::DEFAULT_TZ) |
||||||
{ |
{ |
||||||
|
|
||||||
$ts = $at; |
$ts = $at; |
||||||
if ($at !== null) { |
if ($at !== null) { |
||||||
$ts = Carbon::now($tz); |
$ts = Carbon::now($tz); |
||||||
} |
} |
||||||
$tsSec = $ts->secondsSinceMidnight(); |
$tsSec = $ts->secondsSinceMidnight(); |
||||||
|
|
||||||
$status = ""; |
$status = ""; |
||||||
$wt = $this->getWorkingTime($ts, $tz); |
$wt = $this->getWorkingTime($ts, $tz); |
||||||
if ($wt === null) { |
if ($wt === null) { |
||||||
$status = self::HOLIDAY; |
$status = self::HOLIDAY; |
||||||
} else { |
} else { |
||||||
$from = $wt->from; |
$from = $wt->from; |
||||||
$to = $wt->to; |
$to = $wt->to; |
||||||
$tsFrom = $from->secondsSinceMidnight(); |
$tsFrom = $from->secondsSinceMidnight(); |
||||||
$tsTo = $to->secondsSinceMidnight(); |
$tsTo = $to->secondsSinceMidnight(); |
||||||
|
|
||||||
if ($from->greaterThan($to)) { |
if ($from->greaterThan($to)) { |
||||||
$tsMid = 24 * 60 * 60 - $tsFrom; |
$tsMid = 24 * 60 * 60 - $tsFrom; |
||||||
if ($tsSec >= $tsFrom || $tsSec < $tsTo) { |
if ($tsSec >= $tsFrom || $tsSec < $tsTo) { |
||||||
$status = self::INSIDE; |
$status = self::INSIDE; |
||||||
} else { |
} else { |
||||||
$status = self::OUTSIDE; |
$status = self::OUTSIDE; |
||||||
} |
} |
||||||
} else { |
} else { |
||||||
if ($tsSec < $tsFrom || $tsSec > $tsTo) { |
if ($tsSec < $tsFrom || $tsSec > $tsTo) { |
||||||
$status = self::OUTSIDE; |
$status = self::OUTSIDE; |
||||||
} else { |
} else { |
||||||
$status = self::INSIDE; |
$status = self::INSIDE; |
||||||
} |
} |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
$clockIn = null; |
$clockIn = null; |
||||||
$clockOut = null; |
$clockOut = null; |
||||||
$inout = Presence::where('user_id', $this->id) |
$inout = Presence::where('user_id', $this->id) |
||||||
->orderByDesc('clock_in') |
->orderByDesc('clock_in') |
||||||
->first(); |
->first(); |
||||||
if ($inout !== null) { |
if ($inout !== null) { |
||||||
$clockIn = Carbon::parse($inout->clock_in, $tz); |
$clockIn = Carbon::parse($inout->clock_in, $tz); |
||||||
$clockOut = Carbon::parse($inout->clock_out, $tz); |
$clockOut = Carbon::parse($inout->clock_out, $tz); |
||||||
} |
} |
||||||
|
|
||||||
return array( |
return array( |
||||||
"status" => $status, |
"status" => $status, |
||||||
"ts" => $ts, |
"ts" => $ts, |
||||||
"clock_in" => $clockIn, |
"clock_in" => $clockIn, |
||||||
"clock_out" => $clockOut |
"clock_out" => $clockOut |
||||||
); |
); |
||||||
} |
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue