mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 04:01:10 -04:00
fix customer email validation
This commit is contained in:
@ -160,6 +160,7 @@ class CustomersController extends Controller
|
||||
if ($verifyEmail) {
|
||||
if ($verifyEmail->id !== $customer->id) {
|
||||
return response()->json([
|
||||
'success' => false,
|
||||
'error' => 'Email already in use'
|
||||
]);
|
||||
}
|
||||
|
||||
@ -36,7 +36,6 @@ class CustomerRequest extends FormRequest
|
||||
'name' => 'required',
|
||||
'addresses.*.address_street_1' => 'max:255',
|
||||
'addresses.*.address_street_2' => 'max:255',
|
||||
'email' => 'email|nullable|unique:users,email,'.$this->id
|
||||
];
|
||||
break;
|
||||
default:
|
||||
|
||||
@ -586,11 +586,16 @@ export default {
|
||||
this.isLoading = true
|
||||
try {
|
||||
let response = await this.updateCustomer(this.formData)
|
||||
if (response.data) {
|
||||
if (response.data.success) {
|
||||
window.toastr['success'](this.$t('customers.updated_message'))
|
||||
this.$router.push('/admin/customers')
|
||||
this.isLoading = false
|
||||
return true
|
||||
} else {
|
||||
this.isLoading = false
|
||||
if (response.data.error) {
|
||||
window.toastr['error'](this.$t('validation.email_already_taken'))
|
||||
}
|
||||
}
|
||||
} catch (err) {
|
||||
if (err.response.data.errors.email) {
|
||||
|
||||
Reference in New Issue
Block a user