Replace GeneralFunctions references

This commit is contained in:
Alex Tselegidis 2022-01-07 08:42:43 +01:00
parent fe06d8382e
commit 273a218ba8
1 changed files with 5 additions and 3 deletions

View File

@ -205,7 +205,7 @@ App.Pages.Customers = (function () {
} }
// Validate email address. // Validate email address.
if (!GeneralFunctions.validateEmail($('#email').val())) { if (!App.Utils.Validation.email($('#email').val())) {
$('#email').addClass('is-invalid'); $('#email').addClass('is-invalid');
throw new Error(App.Lang.invalid_email); throw new Error(App.Lang.invalid_email);
} }
@ -280,14 +280,16 @@ App.Pages.Customers = (function () {
return; return;
} }
var start = GeneralFunctions.formatDate( var start = App.Utils.Date.format(
moment(appointment.start_datetime).toDate(), moment(appointment.start_datetime).toDate(),
App.Vars.date_format, App.Vars.date_format,
App.Vars.time_format,
true true
); );
var end = GeneralFunctions.formatDate( var end = App.Utils.Date.format(
moment(appointment.end_datetime).toDate(), moment(appointment.end_datetime).toDate(),
App.Vars.date_format, App.Vars.date_format,
App.Vars.time_format,
true true
); );