|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace App\Http\Controllers\Customers; |
|
4
|
|
|
|
|
5
|
|
|
use App\Http\Controllers\Controller; |
|
6
|
|
|
|
|
7
|
|
|
use App\Domains\Equipment\GetEquipment; |
|
8
|
|
|
use App\Domains\Customers\CustomerSearch; |
|
9
|
|
|
use App\Domains\Customers\SetCustomerDetails; |
|
10
|
|
|
|
|
11
|
|
|
use App\Http\Requests\Customers\NewCustomerRequest; |
|
12
|
|
|
use App\Http\Requests\Customers\CustomerSearchRequest; |
|
13
|
|
|
|
|
14
|
|
|
use Illuminate\Support\Facades\Auth; |
|
15
|
|
|
use Illuminate\Support\Facades\Log; |
|
16
|
|
|
|
|
17
|
|
|
class CustomerController extends Controller |
|
18
|
|
|
{ |
|
19
|
2 |
|
public function index() |
|
20
|
|
|
{ |
|
21
|
2 |
|
return view('customers.index', [ |
|
22
|
2 |
|
'equipList' => (new GetEquipment)->getEquipmentArray(), |
|
23
|
|
|
]); |
|
24
|
|
|
} |
|
25
|
|
|
|
|
26
|
2 |
|
public function search(CustomerSearchRequest $request) |
|
27
|
|
|
{ |
|
28
|
2 |
|
return (new CustomerSearch)->search($request); |
|
29
|
|
|
} |
|
30
|
|
|
|
|
31
|
|
|
public function details($id, $name) |
|
32
|
|
|
{ |
|
33
|
|
|
return response('customer '.$name); |
|
34
|
|
|
} |
|
35
|
|
|
|
|
36
|
4 |
|
public function checkID($id) |
|
37
|
|
|
{ |
|
38
|
4 |
|
$cust = (new CustomerSearch)->searchID($id); |
|
39
|
4 |
|
if($cust === null) |
|
40
|
|
|
{ |
|
41
|
2 |
|
return response()->json(['duplicate' => false]); |
|
42
|
|
|
} |
|
43
|
|
|
|
|
44
|
2 |
|
return response()->json(['duplicate' => true, 'name' => $cust->name, 'url' => route('customer.details', [$cust->cust_id, urlencode($cust->name)])]); |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
2 |
|
public function store(NewCustomerRequest $request) |
|
48
|
|
|
{ |
|
49
|
2 |
|
$newID = (new SetCustomerDetails)->createCustomer($request); |
|
50
|
2 |
|
Log::info('New Customer ID '.$newID.' created. Details - ', $request->toArray()); |
|
51
|
2 |
|
return response()->json(['success' => true, 'cust_id' => $newID]); |
|
52
|
|
|
} |
|
53
|
|
|
} |
|
54
|
|
|
|