Changeset 1123
- Timestamp:
- Mar 29, 2011, 10:29:04 AM (14 years ago)
- Location:
- Scheduling/trunk/cs/bsdx0200GUISourceCode
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGDocument.cs
r1122 r1123 338 338 { 339 339 //Create new Document 340 this.SelectedDate = dDate.Date; 341 340 342 m_ScheduleType = (m_sResourcesArray.Count == 1) ? ScheduleType.Resource : ScheduleType.Clinic; 341 343 bool bRet = false; -
Scheduling/trunk/cs/bsdx0200GUISourceCode/CalendarGrid.cs
r1106 r1123 734 734 } 735 735 736 /// <summary> 737 /// Translates a StartTime into a Cell, for coloring 738 /// </summary> 739 /// <param name="dDate"></param> 740 /// <param name="nRow"></param> 741 /// <param name="nCol"></param> 742 /// <param name="bStartCell"></param> 743 /// <param name="sResource"></param> 744 /// <returns></returns> 736 745 public bool GetCellFromTime(DateTime dDate, ref int nRow, ref int nCol, bool bStartCell, string sResource) 737 746 { … … 1421 1430 set 1422 1431 { 1423 this.m_dtStart = value; 1432 //this.m_dtStart = value; 1433 this.m_dtStart = value.Date; // only date portion!!!//smh 1424 1434 } 1425 1435 } -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj.user
r1122 r1123 37 37 </RemoteDebugMachine> 38 38 <StartAction>Project</StartAction> 39 <StartArguments> 40 </StartArguments> 39 <StartArguments>/s=172.16.16.108 /p=9250 /a=BASMA.ALDWAIRI /v=SELEN.123 /culture=ar-JO</StartArguments> 41 40 <StartPage> 42 41 </StartPage> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/DApptSearch.cs
r1106 r1123 245 245 246 246 //End 247 247 this.m_dEnd = this.dtEnd.Value; 248 248 } 249 249 } … … 727 727 //Get Availabilities and Appointments from the DB 728 728 //NB: m_sAmpm and m_sWeekDays don't have an effect on the M side side right now 729 string sSearchInfo = "1|" + m_sAmpm + "|" + m_sWeekDays; 729 m_dStart = m_dStart.Date; // move to 1200 730 m_dEnd = m_dEnd.Date.AddHours(23).AddMinutes(59).AddSeconds(59); //move to 235959 731 string sSearchInfo = "1|" + m_sAmpm + "|" + m_sWeekDays; 730 732 DataTable m_availTable = CGSchedLib.CreateAvailabilitySchedule(m_DocManager, m_alResources, m_dStart, m_dEnd, m_alAccessTypes, ScheduleType.Resource, sSearchInfo); 731 733 DataTable m_apptTable = CGSchedLib.CreateAppointmentSchedule(m_DocManager, m_alResources, m_dStart, m_dEnd);
Note:
See TracChangeset
for help on using the changeset viewer.