@extends('layouts.app') @section('title', 'PCFMS → PMS Initialization') @section('contents')
@if (session('error'))
{{ session('error') }}
@endif @if (session('success'))
{{ session('success') }}
@endif
Initialize an existing PCFMS historical scheme into the existing PMS PC form workflow. You cannot force a workflow stage. The selected PMS actor is resolved through normal forward rules.

Search

Clear Fill any one or more fields.
@if ($has_search)

Results

@if (count($results) === 0)

No matching schemes found.

@else
@foreach ($results as $row) @endforeach
Scheme Name ADP Number UID BMS Project PMS Status PCFMS Status
{{ $row['scheme_name'] }} {{ $row['adp_number'] !== '' ? $row['adp_number'] : '—' }} {{ $row['sc_uid'] }} @if ($row['bms_matched']) #{{ $row['bms_project_id'] }} @else No BMS match @endif {{ $row['pms_status'] }} @if (!empty($row['pms_already_processed'])) Already processed @elseif ($row['pms_has_active_workflow']) Active workflow @endif {{ $row['pcfms_status'] !== '' ? $row['pcfms_status'] : '—' }} Open
@endif
@endif
@endsection