Skip to content

Commit 35dde33

Browse files
Update ProcessRosterInactivity.php
1 parent 7332303 commit 35dde33

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/Jobs/ProcessRosterInactivity.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public function handle()
9898
if($roster->certification == "certified" && $roster->active && Carbon::now()->format('d/m') == "01/11" && $roster->currency < 1) {
9999
$active_status = 0;
100100

101-
$first_names[] = $name;
101+
$first_names[] = $name ."(". $roster->currency ." hrs)";
102102

103103
$first_notice++;
104104

@@ -109,7 +109,7 @@ public function handle()
109109
if($roster->certification == "certified" && Carbon::now()->format('d/m') == "01/12" && $roster->currency < 1){
110110
$active_status = 0;
111111

112-
$second_names[] = $name;
112+
$second_names[] = $name ."(". $roster->currency ." hrs)";
113113

114114
$second_notice++;
115115

@@ -120,7 +120,7 @@ public function handle()
120120
if($roster->certification == "certified" && Carbon::now()->format('d/m') == "24/12" && $roster->currency < 1){
121121
$active_status = 0;
122122

123-
$third_names[] = $name;
123+
$third_names[] = $name ."(". $roster->currency ." hrs)";
124124

125125
$third_notice++;
126126

@@ -132,7 +132,7 @@ public function handle()
132132

133133
// User to be terminated
134134
if($roster->currency < 1){
135-
$termination_names[] = $name;
135+
$termination_names[] = $name ."(". $roster->currency ." hrs)";
136136

137137
$termination_notice++;
138138
}

0 commit comments

Comments
 (0)