EXCHANGE-149, EXCHANGE-156 - Hide link, disabled post merge API

This commit is contained in:
Fairuz
2021-05-18 13:37:26 +08:00
parent e5fce3c781
commit 2c70e23e8e
2 changed files with 4 additions and 2 deletions
@@ -111,7 +111,8 @@
<div class="font-heading fs-10">But don't worry you can always merge your transfer orders into one to complete your purchase order successfully and generate your invoice.</div>
</div>
</div>
<a class="btn btn-xs all-caps b-rad-none btn-warning" :href="route('booking.merge',this.data.marking)">Merge Transfer Orders</a>
<!--link to merge: route('booking.merge',this.data.marking) -->
<a class="btn btn-xs all-caps b-rad-none btn-warning" href="#">Merge Transfer Orders</a>
</div>
</div>
</div>
+2 -1
View File
@@ -17,6 +17,7 @@ Route::group(['prefix' => 'booking', 'as' => 'booking.', 'namespace' => 'Booking
});
Route::post('{id}/purchase_order/verification', 'ApprovePurchaseOrderController@approve')->name('po.approval');
Route::post('/merge', 'MergeBookingController@merge')->name('merge');
//Temporarily disabled
//Route::post('/merge', 'MergeBookingController@merge')->name('merge');
});