Ignore:
Timestamp:
Mar 30, 2011, 6:18:19 AM (13 years ago)
Author:
Sam Habiel
Message:

Oh Boy! More fixes...
strings.resx and strings.resx.ar: AppoinmentRoutingSlip identifier and name in strings changed to AppointmentReminderSlip
Printing: Corresponding change.
CGView: Appointment Order to be passed to routing slip was wrong if there were more than one resource open.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/CGView.cs

    r1125 r1126  
    33453345            //Today's appointments
    33463346            var todaysAppts = (from lkappts in this.Document.Appointments.AppointmentTable.Values.Cast<CGAppointment>()
    3347                                where lkappts.StartTime > appt.StartTime.Date && lkappts.StartTime < appt.StartTime.AddDays(1).Date
     3347                               where lkappts.StartTime > appt.StartTime.Date && lkappts.StartTime < appt.StartTime.AddDays(1).Date && lkappts.Resource == appt.Resource
    33483348                              orderby lkappts.StartTime
    33493349                              select lkappts).ToList();
Note: See TracChangeset for help on using the changeset viewer.