I saw that when The Customer local time is in the MIDDLE DAY from the agc/vicidial.php, the agent's screen is something like this:
- Code: Select all
MAR 26 12:24:13 AM
I thing the correct format is:
- Code: Select all
MAR 26 12:24:13 PM
I added this very little code (black code) to the vicidial.php to fix this issue:
if (Chours > 12) {Chours = (Chours - 12); AMPM = 'PM';}
if (Chours == 12){AMPM = 'PM';}
if (Cmin < 10) {Cmin = "0" + Cmin;}
It could be great if it could be in the official release
Thanks