Resolve "Make required Initial Concern of Customer and Notes on Initial Concern of Customer" #1670
1 changed files with 28 additions and 0 deletions
|
|
@ -446,9 +446,13 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
|
|||
|
||||
// get initial concern if any
|
||||
$initial_concern = $req->request->get('initial_concern', '');
|
||||
if (empty($initial_concern))
|
||||
$error_array['initial_concern'] = 'Initial concern of customer is required.';
|
||||
|
||||
// get initial concern notes if any
|
||||
$initial_concern_notes = $req->request->get('initial_concern_notes', '');
|
||||
if (empty($initial_concern_notes))
|
||||
$error_array['initial_concern_notes'] = 'Notes on initial concern of customer is required.';
|
||||
|
||||
// get gender if any
|
||||
$gender = $req->request->get('gender', '');
|
||||
|
|
@ -707,9 +711,13 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
|
|||
|
||||
// get initial concern if any
|
||||
$initial_concern = $req->request->get('initial_concern', '');
|
||||
if (empty($initial_concern))
|
||||
$error_array['initial_concern'] = 'Initial concern of customer is required.';
|
||||
|
||||
// get initial concern notes if any
|
||||
$initial_concern_notes = $req->request->get('initial_concern_notes', '');
|
||||
if (empty($initial_concern_notes))
|
||||
$error_array['initial_concern_notes'] = 'Notes on initial concern of customer is required.';
|
||||
|
||||
// get gender if any
|
||||
$gender = $req->request->get('gender', '');
|
||||
|
|
@ -927,9 +935,13 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
|
|||
|
||||
// get initial concern if any
|
||||
$initial_concern = $req->request->get('initial_concern', '');
|
||||
if (empty($initial_concern))
|
||||
$error_array['initial_concern'] = 'Initial concern of customer is required.';
|
||||
|
||||
// get initial concern notes if any
|
||||
$initial_concern_notes = $req->request->get('initial_concern_notes', '');
|
||||
if (empty($initial_concern_notes))
|
||||
$error_array['initial_concern_notes'] = 'Notes on initial concern of customer is required.';
|
||||
|
||||
// get gender if any
|
||||
$gender = $req->request->get('gender', '');
|
||||
|
|
@ -1090,9 +1102,13 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
|
|||
|
||||
// get initial concern if any
|
||||
$initial_concern = $req->request->get('initial_concern', '');
|
||||
if (empty($initial_concern))
|
||||
$error_array['initial_concern'] = 'Initial concern of customer is required.';
|
||||
|
||||
// get initial concern notes if any
|
||||
$initial_concern_notes = $req->request->get('initial_concern_notes', '');
|
||||
if (empty($initial_concern_notes))
|
||||
$error_array['initial_concern_notes'] = 'Notes on initial concern of customer is required.';
|
||||
|
||||
// get gender if any
|
||||
$gender = $req->request->get('gender', '');
|
||||
|
|
@ -1244,9 +1260,13 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
|
|||
|
||||
// get initial concern if any
|
||||
$initial_concern = $req->request->get('initial_concern', '');
|
||||
if (empty($initial_concern))
|
||||
$error_array['initial_concern'] = 'Initial concern of customer is required.';
|
||||
|
||||
// get initial concern notes if any
|
||||
$initial_concern_notes = $req->request->get('initial_concern_notes', '');
|
||||
if (empty($initial_concern_notes))
|
||||
$error_array['initial_concern_notes'] = 'Notes on initial concern of customer is required.';
|
||||
|
||||
// get gender if any
|
||||
$gender = $req->request->get('gender', '');
|
||||
|
|
@ -1512,9 +1532,13 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
|
|||
|
||||
// get initial concern if any
|
||||
$initial_concern = $req->request->get('initial_concern', '');
|
||||
if (empty($initial_concern))
|
||||
$error_array['initial_concern'] = 'Initial concern of customer is required.';
|
||||
|
||||
// get initial concern notes if any
|
||||
$initial_concern_notes = $req->request->get('initial_concern_notes', '');
|
||||
if (empty($initial_concern_notes))
|
||||
$error_array['initial_concern_notes'] = 'Notes on initial concern of customer is required.';
|
||||
|
||||
// get gender if any
|
||||
$gender = $req->request->get('gender', '');
|
||||
|
|
@ -1808,9 +1832,13 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
|
|||
|
||||
// get initial concern if any
|
||||
$initial_concern = $req->request->get('initial_concern', '');
|
||||
if (empty($initial_concern))
|
||||
$error_array['initial_concern'] = 'Initial concern of customer is required.';
|
||||
|
||||
// get initial concern notes if any
|
||||
$initial_concern_notes = $req->request->get('initial_concern_notes', '');
|
||||
if (empty($initial_concern_notes))
|
||||
$error_array['initial_concern_notes'] = 'Notes on initial concern of customer is required.';
|
||||
|
||||
// get gender if any
|
||||
$gender = $req->request->get('gender', '');
|
||||
|
|
|
|||
Loading…
Reference in a new issue