Changeset 1126


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.

Location:
Scheduling/trunk/cs/bsdx0200GUISourceCode
Files:
9 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();
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/Printing.cs

    r1125 r1126  
    185185
    186186            //string s = "Appointment Reminder Slip";
    187             string s = strings.ApptRoutingSlip;
     187            string s = strings.ApptReminderSlip;
    188188            g.DrawString(s, fTitle, Brushes.Black, printArea, sf); //title
    189189
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/strings.Designer.cs

    r1119 r1126  
    8989       
    9090        /// <summary>
    91         ///   Looks up a localized string similar to Appointment Routing Slip.
    92         /// </summary>
    93         internal static string ApptRoutingSlip {
    94             get {
    95                 return ResourceManager.GetString("ApptRoutingSlip", resourceCulture);
     91        ///   Looks up a localized string similar to Appointment Reminder Slip.
     92        /// </summary>
     93        internal static string ApptReminderSlip {
     94            get {
     95                return ResourceManager.GetString("ApptReminderSlip", resourceCulture);
    9696            }
    9797        }
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/strings.ar.resx

    r1119 r1126  
    127127    <value>تفاصيل الموعد</value>
    128128  </data>
    129   <data name="ApptRoutingSlip" xml:space="preserve">
     129  <data name="ApptReminderSlip" xml:space="preserve">
    130130    <value>بطاقة المراجعة</value>
    131131  </data>
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/strings.resx

    r1119 r1126  
    127127    <value>Appointment Details</value>
    128128  </data>
    129   <data name="ApptRoutingSlip" xml:space="preserve">
    130     <value>Appointment Routing Slip</value>
     129  <data name="ApptReminderSlip" xml:space="preserve">
     130    <value>Appointment Reminder Slip</value>
    131131  </data>
    132132  <data name="Clinic" xml:space="preserve">
Note: See TracChangeset for help on using the changeset viewer.