Skip to content

Commit

Permalink
Merge pull request #187 from bcgov/jp-0003
Browse files Browse the repository at this point in the history
S40(24) Dev - eForm change log [jp-0003]
  • Loading branch information
jp-Telus authored May 31, 2023
2 parents 6b2b82d + fbd020f commit f7229ac
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ public function status(Request $request){
}


BankDepositForm::where("id",$request->submission_id)->update(['approved' => $request->status]);
BankDepositForm::where("id",$request->submission_id)->update([
'approved' => $request->status,
'approved_by_id' => Auth::id(),
'approved_at' => now(),
]);
$year = intval(date("Y")) + 1;
do{
$campaign_year = CampaignYear::where('calendar_year', $year)->first();
Expand Down

0 comments on commit f7229ac

Please sign in to comment.