Procházet zdrojové kódy

added grouping for bills

Josh Kamau před 5 roky
rodič
revize
43a7ef915d

+ 36 - 0
app/Http/Controllers/bills_SINGLE_Controller.php

@@ -22,18 +22,36 @@ class bills_SINGLE_Controller extends Controller
 		return response()->view('pro/bills_SINGLE/ACTION_payHcpDifferentAmount', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
 	}
 
+	// GET /bills/view/{uid}/ACTION_payCmAmount
+	public function ACTION_payCmAmount(Request $request, $uid) {
+		$record = DB::table('bill')->where('uid', $uid)->first();
+		return response()->view('pro/bills_SINGLE/ACTION_payCmAmount', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
+	}
+
 	// GET /bills/view/{uid}/ACTION_payCmDifferentAmount
 	public function ACTION_payCmDifferentAmount(Request $request, $uid) {
 		$record = DB::table('bill')->where('uid', $uid)->first();
 		return response()->view('pro/bills_SINGLE/ACTION_payCmDifferentAmount', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
 	}
 
+	// GET /bills/view/{uid}/ACTION_payRmeAmount
+	public function ACTION_payRmeAmount(Request $request, $uid) {
+		$record = DB::table('bill')->where('uid', $uid)->first();
+		return response()->view('pro/bills_SINGLE/ACTION_payRmeAmount', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
+	}
+
 	// GET /bills/view/{uid}/ACTION_payRmeDifferentAmount
 	public function ACTION_payRmeDifferentAmount(Request $request, $uid) {
 		$record = DB::table('bill')->where('uid', $uid)->first();
 		return response()->view('pro/bills_SINGLE/ACTION_payRmeDifferentAmount', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
 	}
 
+	// GET /bills/view/{uid}/ACTION_payRmmAmount
+	public function ACTION_payRmmAmount(Request $request, $uid) {
+		$record = DB::table('bill')->where('uid', $uid)->first();
+		return response()->view('pro/bills_SINGLE/ACTION_payRmmAmount', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
+	}
+
 	// GET /bills/view/{uid}/ACTION_payRmmDifferentAmount
 	public function ACTION_payRmmDifferentAmount(Request $request, $uid) {
 		$record = DB::table('bill')->where('uid', $uid)->first();
@@ -46,6 +64,24 @@ class bills_SINGLE_Controller extends Controller
 		return response()->view('pro/bills_SINGLE/ACTION_signAsHcp', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
 	}
 
+	// GET /bills/view/{uid}/ACTION_signAsCm
+	public function ACTION_signAsCm(Request $request, $uid) {
+		$record = DB::table('bill')->where('uid', $uid)->first();
+		return response()->view('pro/bills_SINGLE/ACTION_signAsCm', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
+	}
+
+	// GET /bills/view/{uid}/ACTION_signAsRme
+	public function ACTION_signAsRme(Request $request, $uid) {
+		$record = DB::table('bill')->where('uid', $uid)->first();
+		return response()->view('pro/bills_SINGLE/ACTION_signAsRme', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
+	}
+
+	// GET /bills/view/{uid}/ACTION_signAsRmm
+	public function ACTION_signAsRmm(Request $request, $uid) {
+		$record = DB::table('bill')->where('uid', $uid)->first();
+		return response()->view('pro/bills_SINGLE/ACTION_signAsRmm', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
+	}
+
 	// GET /bills/view/{uid}/ACTION_markSubmitted
 	public function ACTION_markSubmitted(Request $request, $uid) {
 		$record = DB::table('bill')->where('uid', $uid)->first();

+ 35 - 0
generatecv/tree.txt

@@ -727,19 +727,54 @@ PRO
                 hcpPaymentAmount:number
             payHcpDifferentAmount
                 differentHcpPaymentAmount:number
+            payCmAmount
+                cmPaymentAmount:number
             payCmDifferentAmount
                 differentCmPaymentAmount:number
+            payRmeAmount
+                rmePaymentAmount:number
             payRmeDifferentAmount
                 differentRmePaymentAmount:number
+            payRmmAmount
+                rmmPaymentAmount:number
             payRmmDifferentAmount
                 differentRmmPaymentAmount:number
             signAsHcp
+            signAsCm
+            signAsRme
+            signAsRmm
             markSubmitted
             markCancelled
             putCollectedAmount
                 collectedAmount
         SUB
             dashboard
+                !grp:Info:bill_service_type,client_id,effective_date,code,modifier,number_of_units
+                !grp:Note:note_id,note_ally_id
+                !grp:Care Month:care_month_id
+                !grp:Pros:cm_or_rm,hcp_pro_id,cm_pro_id,rme_pro_id,rmm_pro_id
+                !grp:Service Location:service_location
+                !grp:Reasons:reason1,reason2,reason3
+                !grp:HCP Signature:is_signed_by_hcp,signed_by_hcp_at:Sign as HCP:circle=>/bills/view/$uid/ACTION_signAsHcp
+                !grp:CM Signature:is_signed_by_cm,signed_by_cm_at:Sign as CM:circle=>/bills/view/$uid/ACTION_signAsCm
+                !grp:RME Signature:is_signed_by_rme,signed_by_rme_at:Sign as RME:circle=>/bills/view/$uid/ACTION_signAsRme
+                !grp:RMM Signature:is_signed_by_rmm,signed_by_rmm_at:Sign as RMM:circle=>/bills/view/$uid/ACTION_signAsRmm
+                !grp:HCP Payment:hcp_expected_payment_amount,has_hcp_been_paid,hcp_payment_amount,hcp_payment_pro_transaction_id
+                !grp:CM Payment:cm_expected_payment_amount  ,has_cm_been_paid,cm_payment_amount,cm_payment_pro_transaction_id
+                !grp:RME Payment:rme_expected_payment_amount,has_rme_been_paid,rme_payment_amount,rme_payment_pro_transaction_id
+                !grp:RMM Payment:rmm_expected_payment_amount,has_rmm_been_paid,rmm_payment_amount,rmm_payment_pro_transaction_id
+                !grp:Cancelled?:is_cancelled,marked_cancelled_at:Cancel:circle=>/bills/view/$uid/ACTION_markCancelled
+                !grp:Submitted?:is_submitted,marked_submitted_at:Submit:circle=>/bills/view/$uid/ACTION_markSubmitted
+                !grp:Collected Amount:collected_amount:Put collected amount:circle=>/bills/view/$uid/ACTION_putCollectedAmount
+                !act:has_hcp_been_paid:Pay HCP Amount:circle=>/bills/view/$uid/ACTION_payHcpAmount
+                !act:has_hcp_been_paid:Pay HCP Different Amount:circle=>/bills/view/$uid/ACTION_payHcpDifferentAmount
+                !act:has_cm_been_paid:Pay CM Amount:circle=>/bills/view/$uid/ACTION_payCmAmount
+                !act:has_cm_been_paid:Pay CM Different Amount:circle=>/bills/view/$uid/ACTION_payCmDifferentAmount
+                !act:has_rmm_been_paid:Pay RMM Amount:circle=>/bills/view/$uid/ACTION_payRmmAmount
+                !act:has_rmm_been_paid:Pay RMM Different Amount:circle=>/bills/view/$uid/ACTION_payRmmDifferentAmount
+                !act:has_rme_been_paid:Pay RME Amount:circle=>/bills/view/$uid/ACTION_payRmeAmount
+                !act:has_rme_been_paid:Pay RME Different Amount:circle=>/bills/view/$uid/ACTION_payRmeDifferentAmount
+                !nal:
             transactions
                 id=pro_transaction.bill_id
             audit_log

+ 6 - 0
resources/views/pro/bills/actions.blade.php

@@ -1,9 +1,15 @@
 <a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payHcpAmount' class='d-block btn btn-sm btn-default mb-3'>Pay Hcp Amount</a>
 <a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payHcpDifferentAmount' class='d-block btn btn-sm btn-default mb-3'>Pay Hcp Different Amount</a>
+<a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payCmAmount' class='d-block btn btn-sm btn-default mb-3'>Pay Cm Amount</a>
 <a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payCmDifferentAmount' class='d-block btn btn-sm btn-default mb-3'>Pay Cm Different Amount</a>
+<a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payRmeAmount' class='d-block btn btn-sm btn-default mb-3'>Pay Rme Amount</a>
 <a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payRmeDifferentAmount' class='d-block btn btn-sm btn-default mb-3'>Pay Rme Different Amount</a>
+<a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payRmmAmount' class='d-block btn btn-sm btn-default mb-3'>Pay Rmm Amount</a>
 <a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payRmmDifferentAmount' class='d-block btn btn-sm btn-default mb-3'>Pay Rmm Different Amount</a>
 <a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_signAsHcp' class='d-block btn btn-sm btn-default mb-3'>Sign As Hcp</a>
+<a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_signAsCm' class='d-block btn btn-sm btn-default mb-3'>Sign As Cm</a>
+<a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_signAsRme' class='d-block btn btn-sm btn-default mb-3'>Sign As Rme</a>
+<a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_signAsRmm' class='d-block btn btn-sm btn-default mb-3'>Sign As Rmm</a>
 <a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_markSubmitted' class='d-block btn btn-sm btn-default mb-3'>Mark Submitted</a>
 <a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_markCancelled' class='d-block btn btn-sm btn-default mb-3'>Mark Cancelled</a>
 <a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_putCollectedAmount' class='d-block btn btn-sm btn-default mb-3'>Put Collected Amount</a>

+ 41 - 0
resources/views/pro/bills_SINGLE/ACTION_payCmAmount.blade.php

@@ -0,0 +1,41 @@
+@extends('pro.bills.view')
+@section('content-inner')
+
+    <div class="form-contents"><div class="failed-form-contents">
+
+    <h4 class="d-flex m-0 p-3 stag-heading stag-heading-modal">
+        <div>Pay Cm Amount</div>
+        <div class="ml-auto">
+            <a class="text-secondary" href="#" up-close>
+                <i class="fa fa-times"></i>
+            </a>
+        </div>
+    </h4>
+
+    <form action="/post-to-api"
+          up-target="#main-content" up-history="false" up-fail-target=".failed-form-contents" up-reveal="false"
+          method="post" enctype="multipart/form-data"
+          class="border-top px-3 pt-3 pb-1 custom-submit">
+        @csrf
+
+        @if (session('message'))
+            <div class="alert alert-danger">{{ session('message') }}</div>
+        @endif
+
+        <input type="hidden" name="_uid" value="{{ $record->uid }}">
+        <input type="hidden" name="_api" value="/api/bill/payCmAmount">
+        <input type="hidden" name="_success" value="{{route('bills-view', ['uid' => $record->uid])}}">
+        <input type="hidden" name="_return" value="{{route('bills_SINGLE-ACTION_payCmAmount', ['uid' => $record->uid])}}">
+        <div class='form-group mb-3'>
+<label class='control-label'>Cm Payment Amount </label>
+<input class='form-control' type='number' name='cmPaymentAmount' value='{{ old('cmPaymentAmount') ? old('cmPaymentAmount') : '' }}' >
+</div>
+        <div class="form-group mb-3 d-flex justify-content-center">
+            <button class="btn btn-sm btn-primary mr-3 px-5">Submit</button>
+            <a href="{{route('bills-view', ['uid' => $record->uid])}}" class="btn btn-sm btn-default px-5" up-close>Cancel</a>
+        </div>
+    </form>
+
+    </div></div>
+
+@endsection

+ 41 - 0
resources/views/pro/bills_SINGLE/ACTION_payRmeAmount.blade.php

@@ -0,0 +1,41 @@
+@extends('pro.bills.view')
+@section('content-inner')
+
+    <div class="form-contents"><div class="failed-form-contents">
+
+    <h4 class="d-flex m-0 p-3 stag-heading stag-heading-modal">
+        <div>Pay Rme Amount</div>
+        <div class="ml-auto">
+            <a class="text-secondary" href="#" up-close>
+                <i class="fa fa-times"></i>
+            </a>
+        </div>
+    </h4>
+
+    <form action="/post-to-api"
+          up-target="#main-content" up-history="false" up-fail-target=".failed-form-contents" up-reveal="false"
+          method="post" enctype="multipart/form-data"
+          class="border-top px-3 pt-3 pb-1 custom-submit">
+        @csrf
+
+        @if (session('message'))
+            <div class="alert alert-danger">{{ session('message') }}</div>
+        @endif
+
+        <input type="hidden" name="_uid" value="{{ $record->uid }}">
+        <input type="hidden" name="_api" value="/api/bill/payRmeAmount">
+        <input type="hidden" name="_success" value="{{route('bills-view', ['uid' => $record->uid])}}">
+        <input type="hidden" name="_return" value="{{route('bills_SINGLE-ACTION_payRmeAmount', ['uid' => $record->uid])}}">
+        <div class='form-group mb-3'>
+<label class='control-label'>Rme Payment Amount </label>
+<input class='form-control' type='number' name='rmePaymentAmount' value='{{ old('rmePaymentAmount') ? old('rmePaymentAmount') : '' }}' >
+</div>
+        <div class="form-group mb-3 d-flex justify-content-center">
+            <button class="btn btn-sm btn-primary mr-3 px-5">Submit</button>
+            <a href="{{route('bills-view', ['uid' => $record->uid])}}" class="btn btn-sm btn-default px-5" up-close>Cancel</a>
+        </div>
+    </form>
+
+    </div></div>
+
+@endsection

+ 41 - 0
resources/views/pro/bills_SINGLE/ACTION_payRmmAmount.blade.php

@@ -0,0 +1,41 @@
+@extends('pro.bills.view')
+@section('content-inner')
+
+    <div class="form-contents"><div class="failed-form-contents">
+
+    <h4 class="d-flex m-0 p-3 stag-heading stag-heading-modal">
+        <div>Pay Rmm Amount</div>
+        <div class="ml-auto">
+            <a class="text-secondary" href="#" up-close>
+                <i class="fa fa-times"></i>
+            </a>
+        </div>
+    </h4>
+
+    <form action="/post-to-api"
+          up-target="#main-content" up-history="false" up-fail-target=".failed-form-contents" up-reveal="false"
+          method="post" enctype="multipart/form-data"
+          class="border-top px-3 pt-3 pb-1 custom-submit">
+        @csrf
+
+        @if (session('message'))
+            <div class="alert alert-danger">{{ session('message') }}</div>
+        @endif
+
+        <input type="hidden" name="_uid" value="{{ $record->uid }}">
+        <input type="hidden" name="_api" value="/api/bill/payRmmAmount">
+        <input type="hidden" name="_success" value="{{route('bills-view', ['uid' => $record->uid])}}">
+        <input type="hidden" name="_return" value="{{route('bills_SINGLE-ACTION_payRmmAmount', ['uid' => $record->uid])}}">
+        <div class='form-group mb-3'>
+<label class='control-label'>Rmm Payment Amount </label>
+<input class='form-control' type='number' name='rmmPaymentAmount' value='{{ old('rmmPaymentAmount') ? old('rmmPaymentAmount') : '' }}' >
+</div>
+        <div class="form-group mb-3 d-flex justify-content-center">
+            <button class="btn btn-sm btn-primary mr-3 px-5">Submit</button>
+            <a href="{{route('bills-view', ['uid' => $record->uid])}}" class="btn btn-sm btn-default px-5" up-close>Cancel</a>
+        </div>
+    </form>
+
+    </div></div>
+
+@endsection

+ 38 - 0
resources/views/pro/bills_SINGLE/ACTION_signAsCm.blade.php

@@ -0,0 +1,38 @@
+@extends('pro.bills.view')
+@section('content-inner')
+
+    <div class="form-contents"><div class="failed-form-contents">
+
+    <h4 class="d-flex m-0 p-3 stag-heading stag-heading-modal">
+        <div>Sign As Cm</div>
+        <div class="ml-auto">
+            <a class="text-secondary" href="#" up-close>
+                <i class="fa fa-times"></i>
+            </a>
+        </div>
+    </h4>
+
+    <form action="/post-to-api"
+          up-target="#main-content" up-history="false" up-fail-target=".failed-form-contents" up-reveal="false"
+          method="post" enctype="multipart/form-data"
+          class="border-top px-3 pt-3 pb-1 custom-submit">
+        @csrf
+
+        @if (session('message'))
+            <div class="alert alert-danger">{{ session('message') }}</div>
+        @endif
+
+        <input type="hidden" name="_uid" value="{{ $record->uid }}">
+        <input type="hidden" name="_api" value="/api/bill/signAsCm">
+        <input type="hidden" name="_success" value="{{route('bills-view', ['uid' => $record->uid])}}">
+        <input type="hidden" name="_return" value="{{route('bills_SINGLE-ACTION_signAsCm', ['uid' => $record->uid])}}">
+        
+        <div class="form-group mb-3 d-flex justify-content-center">
+            <button class="btn btn-sm btn-primary mr-3 px-5">Submit</button>
+            <a href="{{route('bills-view', ['uid' => $record->uid])}}" class="btn btn-sm btn-default px-5" up-close>Cancel</a>
+        </div>
+    </form>
+
+    </div></div>
+
+@endsection

+ 38 - 0
resources/views/pro/bills_SINGLE/ACTION_signAsRme.blade.php

@@ -0,0 +1,38 @@
+@extends('pro.bills.view')
+@section('content-inner')
+
+    <div class="form-contents"><div class="failed-form-contents">
+
+    <h4 class="d-flex m-0 p-3 stag-heading stag-heading-modal">
+        <div>Sign As Rme</div>
+        <div class="ml-auto">
+            <a class="text-secondary" href="#" up-close>
+                <i class="fa fa-times"></i>
+            </a>
+        </div>
+    </h4>
+
+    <form action="/post-to-api"
+          up-target="#main-content" up-history="false" up-fail-target=".failed-form-contents" up-reveal="false"
+          method="post" enctype="multipart/form-data"
+          class="border-top px-3 pt-3 pb-1 custom-submit">
+        @csrf
+
+        @if (session('message'))
+            <div class="alert alert-danger">{{ session('message') }}</div>
+        @endif
+
+        <input type="hidden" name="_uid" value="{{ $record->uid }}">
+        <input type="hidden" name="_api" value="/api/bill/signAsRme">
+        <input type="hidden" name="_success" value="{{route('bills-view', ['uid' => $record->uid])}}">
+        <input type="hidden" name="_return" value="{{route('bills_SINGLE-ACTION_signAsRme', ['uid' => $record->uid])}}">
+        
+        <div class="form-group mb-3 d-flex justify-content-center">
+            <button class="btn btn-sm btn-primary mr-3 px-5">Submit</button>
+            <a href="{{route('bills-view', ['uid' => $record->uid])}}" class="btn btn-sm btn-default px-5" up-close>Cancel</a>
+        </div>
+    </form>
+
+    </div></div>
+
+@endsection

+ 38 - 0
resources/views/pro/bills_SINGLE/ACTION_signAsRmm.blade.php

@@ -0,0 +1,38 @@
+@extends('pro.bills.view')
+@section('content-inner')
+
+    <div class="form-contents"><div class="failed-form-contents">
+
+    <h4 class="d-flex m-0 p-3 stag-heading stag-heading-modal">
+        <div>Sign As Rmm</div>
+        <div class="ml-auto">
+            <a class="text-secondary" href="#" up-close>
+                <i class="fa fa-times"></i>
+            </a>
+        </div>
+    </h4>
+
+    <form action="/post-to-api"
+          up-target="#main-content" up-history="false" up-fail-target=".failed-form-contents" up-reveal="false"
+          method="post" enctype="multipart/form-data"
+          class="border-top px-3 pt-3 pb-1 custom-submit">
+        @csrf
+
+        @if (session('message'))
+            <div class="alert alert-danger">{{ session('message') }}</div>
+        @endif
+
+        <input type="hidden" name="_uid" value="{{ $record->uid }}">
+        <input type="hidden" name="_api" value="/api/bill/signAsRmm">
+        <input type="hidden" name="_success" value="{{route('bills-view', ['uid' => $record->uid])}}">
+        <input type="hidden" name="_return" value="{{route('bills_SINGLE-ACTION_signAsRmm', ['uid' => $record->uid])}}">
+        
+        <div class="form-group mb-3 d-flex justify-content-center">
+            <button class="btn btn-sm btn-primary mr-3 px-5">Submit</button>
+            <a href="{{route('bills-view', ['uid' => $record->uid])}}" class="btn btn-sm btn-default px-5" up-close>Cancel</a>
+        </div>
+    </form>
+
+    </div></div>
+
+@endsection

+ 291 - 31
resources/views/pro/bills_SINGLE/SUB_dashboard.blade.php

@@ -2,38 +2,298 @@
 @section('content-inner')
 
     <div class="row mt-3">
-    <div class="col-8">
-
-        <div class="table-responsive p-0 bg-white table-sm stag-table border-top">
-            <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
-                <thead>
-                <tr>
-                    <th colspan="2" class="px-2">Record Details</th>
-                </tr>
-                </thead>
-                <tbody>
-                <?php foreach($record as $k => $v): ?>
-                    <?php
-                    if($k === 'id' || $k === 'uid') continue;
-                    $displayValue = $record->$k;
-                    if(substr($k, -3) === '_at') {
-                        $displayValue = friendly_date_time($record->$k);
-                    }
-                    ?>
-                    <tr>
-                        <td class="px-2 text-secondary border-right w-50">{{ ucwords(str_replace("_", " ", $k)) }}</td>
-                        <td class="px-2 font-weight-bold w-50">{{ $displayValue }}</td>
-                    </tr>
-                <?php endforeach; ?>
-                </tbody>
-            </table>
-        </div>
+    <div class="col-12">
+
+        <div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">Info
+                <span class="ml-auto"><!-- __GROUP_ACTION__ --></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Bill Service Type</td><td class="w-75 px-2 font-weight-bold"><?= $record->bill_service_type ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Client Id</td><td class="w-75 px-2 font-weight-bold"><?= $record->client_id ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Effective Date</td><td class="w-75 px-2 font-weight-bold"><?= $record->effective_date ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Code</td><td class="w-75 px-2 font-weight-bold"><?= $record->code ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Modifier</td><td class="w-75 px-2 font-weight-bold"><?= $record->modifier ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Number Of Units</td><td class="w-75 px-2 font-weight-bold"><?= $record->number_of_units ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">Note
+                <span class="ml-auto"><!-- __GROUP_ACTION__ --></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Note Id</td><td class="w-75 px-2 font-weight-bold"><?= $record->note_id ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Note Ally Id</td><td class="w-75 px-2 font-weight-bold"><?= $record->note_ally_id ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">Care Month
+                <span class="ml-auto"><!-- __GROUP_ACTION__ --></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Care Month Id</td><td class="w-75 px-2 font-weight-bold"><?= $record->care_month_id ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">Pros
+                <span class="ml-auto"><!-- __GROUP_ACTION__ --></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Cm Or Rm</td><td class="w-75 px-2 font-weight-bold"><?= $record->cm_or_rm ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Hcp Pro Id</td><td class="w-75 px-2 font-weight-bold"><?= $record->hcp_pro_id ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Cm Pro Id</td><td class="w-75 px-2 font-weight-bold"><?= $record->cm_pro_id ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Rme Pro Id</td><td class="w-75 px-2 font-weight-bold"><?= $record->rme_pro_id ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Rmm Pro Id</td><td class="w-75 px-2 font-weight-bold"><?= $record->rmm_pro_id ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">Service Location
+                <span class="ml-auto"><!-- __GROUP_ACTION__ --></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Service Location</td><td class="w-75 px-2 font-weight-bold"><?= $record->service_location ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">Reasons
+                <span class="ml-auto"><!-- __GROUP_ACTION__ --></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Reason1</td><td class="w-75 px-2 font-weight-bold"><?= $record->reason1 ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Reason2</td><td class="w-75 px-2 font-weight-bold"><?= $record->reason2 ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Reason3</td><td class="w-75 px-2 font-weight-bold"><?= $record->reason3 ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">HCP Signature
+                <span class="ml-auto"><a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_signAsHcp' title='Sign as HCP'class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Sign As HCP</span></a></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Is Signed By Hcp</td><td class="w-75 px-2 font-weight-bold"><?= $record->is_signed_by_hcp ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Signed By Hcp At</td><td class="w-75 px-2 font-weight-bold"><?= friendly_date_time($record->signed_by_hcp_at) ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">CM Signature
+                <span class="ml-auto"><a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_signAsCm' title='Sign as CM'class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Sign As CM</span></a></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Is Signed By Cm</td><td class="w-75 px-2 font-weight-bold"><?= $record->is_signed_by_cm ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Signed By Cm At</td><td class="w-75 px-2 font-weight-bold"><?= friendly_date_time($record->signed_by_cm_at) ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">RME Signature
+                <span class="ml-auto"><a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_signAsRme' title='Sign as RME'class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Sign As RME</span></a></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Is Signed By Rme</td><td class="w-75 px-2 font-weight-bold"><?= $record->is_signed_by_rme ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Signed By Rme At</td><td class="w-75 px-2 font-weight-bold"><?= friendly_date_time($record->signed_by_rme_at) ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">RMM Signature
+                <span class="ml-auto"><a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_signAsRmm' title='Sign as RMM'class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Sign As RMM</span></a></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Is Signed By Rmm</td><td class="w-75 px-2 font-weight-bold"><?= $record->is_signed_by_rmm ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Signed By Rmm At</td><td class="w-75 px-2 font-weight-bold"><?= friendly_date_time($record->signed_by_rmm_at) ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">HCP Payment
+                <span class="ml-auto"><!-- __GROUP_ACTION__ --></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Hcp Expected Payment Amount</td><td class="w-75 px-2 font-weight-bold"><?= $record->hcp_expected_payment_amount ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Has Hcp Been Paid</td><td class="w-75 px-2 font-weight-bold"><?= $record->has_hcp_been_paid ?><a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payHcpAmount' title='Pay HCP Amount' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Pay HCP Amount</span></a>
+<a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payHcpDifferentAmount' title='Pay HCP Different Amount' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Pay HCP Different Amount</span></a></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Hcp Payment Amount</td><td class="w-75 px-2 font-weight-bold"><?= $record->hcp_payment_amount ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Hcp Payment Pro Transaction Id</td><td class="w-75 px-2 font-weight-bold"><?= $record->hcp_payment_pro_transaction_id ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">CM Payment
+                <span class="ml-auto"><!-- __GROUP_ACTION__ --></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Cm Expected Payment Amount  </td><td class="w-75 px-2 font-weight-bold"><?= $record->cm_expected_payment_amount   ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Has Cm Been Paid</td><td class="w-75 px-2 font-weight-bold"><?= $record->has_cm_been_paid ?><a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payCmAmount' title='Pay CM Amount' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Pay CM Amount</span></a>
+<a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payCmDifferentAmount' title='Pay CM Different Amount' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Pay CM Different Amount</span></a></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Cm Payment Amount</td><td class="w-75 px-2 font-weight-bold"><?= $record->cm_payment_amount ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Cm Payment Pro Transaction Id</td><td class="w-75 px-2 font-weight-bold"><?= $record->cm_payment_pro_transaction_id ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">RME Payment
+                <span class="ml-auto"><!-- __GROUP_ACTION__ --></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Rme Expected Payment Amount</td><td class="w-75 px-2 font-weight-bold"><?= $record->rme_expected_payment_amount ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Has Rme Been Paid</td><td class="w-75 px-2 font-weight-bold"><?= $record->has_rme_been_paid ?><a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payRmeAmount' title='Pay RME Amount' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Pay RME Amount</span></a>
+<a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payRmeDifferentAmount' title='Pay RME Different Amount' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Pay RME Different Amount</span></a></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Rme Payment Amount</td><td class="w-75 px-2 font-weight-bold"><?= $record->rme_payment_amount ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Rme Payment Pro Transaction Id</td><td class="w-75 px-2 font-weight-bold"><?= $record->rme_payment_pro_transaction_id ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">RMM Payment
+                <span class="ml-auto"><!-- __GROUP_ACTION__ --></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Rmm Expected Payment Amount</td><td class="w-75 px-2 font-weight-bold"><?= $record->rmm_expected_payment_amount ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Has Rmm Been Paid</td><td class="w-75 px-2 font-weight-bold"><?= $record->has_rmm_been_paid ?><a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payRmmAmount' title='Pay RMM Amount' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Pay RMM Amount</span></a>
+<a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_payRmmDifferentAmount' title='Pay RMM Different Amount' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Pay RMM Different Amount</span></a></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Rmm Payment Amount</td><td class="w-75 px-2 font-weight-bold"><?= $record->rmm_payment_amount ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Rmm Payment Pro Transaction Id</td><td class="w-75 px-2 font-weight-bold"><?= $record->rmm_payment_pro_transaction_id ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">Cancelled?
+                <span class="ml-auto"><a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_markCancelled' title='Cancel'class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Cancel</span></a></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Is Cancelled</td><td class="w-75 px-2 font-weight-bold"><?= $record->is_cancelled ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Marked Cancelled At</td><td class="w-75 px-2 font-weight-bold"><?= friendly_date_time($record->marked_cancelled_at) ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">Submitted?
+                <span class="ml-auto"><a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_markSubmitted' title='Submit'class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Submit</span></a></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Is Submitted</td><td class="w-75 px-2 font-weight-bold"><?= $record->is_submitted ?></td></tr>
+<tr><td class="w-25 px-2 text-secondary border-right">Marked Submitted At</td><td class="w-75 px-2 font-weight-bold"><?= friendly_date_time($record->marked_submitted_at) ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
+<div class="table-responsive p-0 bg-white table-sm mb-3">
+    <table class="table table-hover text-nowrap table-striped border-left border-right border-bottom">
+        <thead>
+        <tr>
+            <th colspan="2" class="px-2">Collected Amount
+                <span class="ml-auto"><a up-modal=".form-contents" up-width="800" up-history="false" href='/bills/view/<?= $record->uid ?>/ACTION_putCollectedAmount' title='Put collected amount'class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Put Collected Amount</span></a></span>
+            </th>
+        </tr>
+        </thead>
+        <tbody>
+            <tr><td class="w-25 px-2 text-secondary border-right">Collected Amount</td><td class="w-75 px-2 font-weight-bold"><?= $record->collected_amount ?></td></tr>
+        </tbody>
+    </table>
+</div>
+
 
-    </div>
-    <div class="col-4">
-        <div class="border-left h-100 pl-3">
-            @include('pro/bills/actions')
-        </div>
     </div>
 </div>
 

+ 2 - 2
resources/views/pro/care_months_SINGLE/SUB_dashboard.blade.php

@@ -76,7 +76,7 @@
         </thead>
         <tbody>
             <tr><td class="w-25 px-2 text-secondary border-right">Is Client Enrolled In Cm</td><td class="w-75 px-2 font-weight-bold"><?= $record->is_client_enrolled_in_cm ?><a up-modal=".form-contents" up-width="800" up-history="false" href='/care_months/view/<?= $record->uid ?>/ACTION_setIsClientEnrolledInCmToFalse' title='setIsClientEnrolledInCmToFalse' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Set Is Client Enrolled In Cm To False</span></a>
-<a up-modal=".form-contents" up-width="800" up-history="false" href='/care_months/view/<?= $record->uid ?>/ACTION_setIsClientEnrolledInCmToTrue' title='setIsClientEnrolledInCmToFalse' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Set Is Client Enrolled In Cm To False</span></a></td></tr>
+<a up-modal=".form-contents" up-width="800" up-history="false" href='/care_months/view/<?= $record->uid ?>/ACTION_setIsClientEnrolledInCmToTrue' title='setIsClientEnrolledInCmToTrue' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Set Is Client Enrolled In Cm To True</span></a></td></tr>
 <tr><td class="w-25 px-2 text-secondary border-right">Why Not Enrolled In Cm Category</td><td class="w-75 px-2 font-weight-bold"><?= $record->why_not_enrolled_in_cm_category ?></td></tr>
 <tr><td class="w-25 px-2 text-secondary border-right">Why Not Enrolled In Cm Memo</td><td class="w-75 px-2 font-weight-bold"><?= $record->why_not_enrolled_in_cm_memo ?></td></tr>
         </tbody>
@@ -94,7 +94,7 @@
         </thead>
         <tbody>
             <tr><td class="w-25 px-2 text-secondary border-right">Is Client Enrolled In Rm</td><td class="w-75 px-2 font-weight-bold"><?= $record->is_client_enrolled_in_rm ?><a up-modal=".form-contents" up-width="800" up-history="false" href='/care_months/view/<?= $record->uid ?>/ACTION_setIsClientEnrolledInRmToFalse' title='setIsClientEnrolledInRmToFalse' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Set Is Client Enrolled In Rm To False</span></a>
-<a up-modal=".form-contents" up-width="800" up-history="false" href='/care_months/view/<?= $record->uid ?>/ACTION_setIsClientEnrolledInRmToTrue' title='setIsClientEnrolledInRmToFalse' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Set Is Client Enrolled In Rm To False</span></a></td></tr>
+<a up-modal=".form-contents" up-width="800" up-history="false" href='/care_months/view/<?= $record->uid ?>/ACTION_setIsClientEnrolledInRmToTrue' title='setIsClientEnrolledInRmToTrue' class='mx-2 font-weight-normal text-primary text-xs'><i class='fa fa-circle'></i>&nbsp;<span>Set Is Client Enrolled In Rm To True</span></a></td></tr>
 <tr><td class="w-25 px-2 text-secondary border-right">Why Not Enrolled In Rm Category</td><td class="w-75 px-2 font-weight-bold"><?= $record->why_not_enrolled_in_rm_category ?></td></tr>
 <tr><td class="w-25 px-2 text-secondary border-right">Why Not Enrolled In Rm Memo</td><td class="w-75 px-2 font-weight-bold"><?= $record->why_not_enrolled_in_rm_memo ?></td></tr>
         </tbody>

+ 6 - 0
routes/generated.php

@@ -233,10 +233,16 @@ Route::prefix('/bills')->group(function () {
 Route::prefix('/bills/view/{uid}')->group(function () {
 	Route::get('ACTION_payHcpAmount', 'bills_SINGLE_Controller@ACTION_payHcpAmount')->name('bills_SINGLE-ACTION_payHcpAmount');
 	Route::get('ACTION_payHcpDifferentAmount', 'bills_SINGLE_Controller@ACTION_payHcpDifferentAmount')->name('bills_SINGLE-ACTION_payHcpDifferentAmount');
+	Route::get('ACTION_payCmAmount', 'bills_SINGLE_Controller@ACTION_payCmAmount')->name('bills_SINGLE-ACTION_payCmAmount');
 	Route::get('ACTION_payCmDifferentAmount', 'bills_SINGLE_Controller@ACTION_payCmDifferentAmount')->name('bills_SINGLE-ACTION_payCmDifferentAmount');
+	Route::get('ACTION_payRmeAmount', 'bills_SINGLE_Controller@ACTION_payRmeAmount')->name('bills_SINGLE-ACTION_payRmeAmount');
 	Route::get('ACTION_payRmeDifferentAmount', 'bills_SINGLE_Controller@ACTION_payRmeDifferentAmount')->name('bills_SINGLE-ACTION_payRmeDifferentAmount');
+	Route::get('ACTION_payRmmAmount', 'bills_SINGLE_Controller@ACTION_payRmmAmount')->name('bills_SINGLE-ACTION_payRmmAmount');
 	Route::get('ACTION_payRmmDifferentAmount', 'bills_SINGLE_Controller@ACTION_payRmmDifferentAmount')->name('bills_SINGLE-ACTION_payRmmDifferentAmount');
 	Route::get('ACTION_signAsHcp', 'bills_SINGLE_Controller@ACTION_signAsHcp')->name('bills_SINGLE-ACTION_signAsHcp');
+	Route::get('ACTION_signAsCm', 'bills_SINGLE_Controller@ACTION_signAsCm')->name('bills_SINGLE-ACTION_signAsCm');
+	Route::get('ACTION_signAsRme', 'bills_SINGLE_Controller@ACTION_signAsRme')->name('bills_SINGLE-ACTION_signAsRme');
+	Route::get('ACTION_signAsRmm', 'bills_SINGLE_Controller@ACTION_signAsRmm')->name('bills_SINGLE-ACTION_signAsRmm');
 	Route::get('ACTION_markSubmitted', 'bills_SINGLE_Controller@ACTION_markSubmitted')->name('bills_SINGLE-ACTION_markSubmitted');
 	Route::get('ACTION_markCancelled', 'bills_SINGLE_Controller@ACTION_markCancelled')->name('bills_SINGLE-ACTION_markCancelled');
 	Route::get('ACTION_putCollectedAmount', 'bills_SINGLE_Controller@ACTION_putCollectedAmount')->name('bills_SINGLE-ACTION_putCollectedAmount');