Hi there,
I am working on version 2.1 and found following bugs:
1. Couldn't add either "call" or "meeting" to calender. When I clicked "save", I got the error msg "The added or subtracted value results in an un-representable DateTime. Parameter name: value"
2. when I added a call from quick form, I found the Duration of the call is "0 Calls.LBL_HOURS_ABBREV 15 Calls.LBL_MINSS_ABBREV", when I tried to edit it, the Duration shown as "Calls.LBL_HOURS_MINUTES"
Any fix on these?
Cheers,
Ron
The text labels are easy to fix. They where deleted by mistake.
As for saving a call, what can you tell us about your system? What timezone are you using?
Could you let me know where the code is I need to amend to fix the label issue?
The os is XP sp2, using IE6 as browser; I am at Australia, so the timezone is +10; I also tried it on win2003 server, with IE6, got same result. There was no problem with version 2.0.
Any idea?
I don't believe that the code in this area has changed from 2.0 to 2.1. Are you able to build the project and debug the issue?
To fix the terms, run the following SQL on the database:
exec dbo.spTERMINOLOGY_InsertOnly 'LBL_MINSS_ABBREV' , 'en-US', 'Calls', null, null, 'm';exec dbo.spTERMINOLOGY_InsertOnly 'LBL_MINSS_ABBREV' , 'en-US', 'Meetings', null, null, 'm';exec dbo.spTERMINOLOGY_InsertOnly 'LBL_HOURS_ABBREV' , 'en-US', 'Calls', null, null, 'h';exec dbo.spTERMINOLOGY_InsertOnly 'LBL_HOURS_ABBREV' , 'en-US', 'Meetings', null, null, 'h';