update status upon user upload purchase order

fix admin complete page not found
fixed admin completed page tracking
This commit is contained in:
Jack Goh
2018-06-28 15:49:46 +08:00
parent 6d2c83d912
commit 385623f6a2
3 changed files with 17 additions and 13 deletions
+14 -10
View File
@@ -94,30 +94,30 @@ class BookingController extends Controller
// TODO : transfer_amount change name to bia
$booking->transfer_amount = $booking->bia;
$booking->track_status = "(". $booking->admin_status ."/7)";
$booking->track_status = "(". $booking->admin_status ."/8)";
switch ($booking->admin_status) {
case 0:
$status_desc = "Waiting user to upload bankin slip";
break;
case 1:
$status_desc = "Waiting for verification";
$status_desc = "Waiting customer upload bank slip";
break;
case 2:
$status_desc = "Bookg with supplier";
$status_desc = "Verify user bank slip";
break;
case 3:
$status_desc = "Supplier booking report. Please confirm with your booking.";
$status_desc = "Generate supplier booking report";
break;
case 4:
$status_desc = "Please update supplier booking status.";
$status_desc = "Supplier booking report. Please confirm with your booking.";
break;
case 5:
$status_desc = "Upload China Bankslip";
$status_desc = "Please, upload China Bankslip";
break;
case 6:
$status_desc = "Customer has uploaded the invoice, please upload purchase order";
$status_desc = "Waiting customer to upload purchase order";
break;
case 7:
$status_desc = "Customer has uploaded purchase order, please upload invoice";
break;
case 8:
$status_desc = "Booking Completed";
break;
default:
@@ -420,6 +420,10 @@ class BookingController extends Controller
$user_po->booking_id = $booking->id;
$user_po->save();
$booking->status = 6;
$booking->admin_status = 7;
$booking->save();
return response()->json(['message'=>'Success'],200);
}