ServiceRecords werden wie im FaC validiert, d.h. dass Arbeitszeiten und Pausenzeiten keine Überschneidungswarnung bekommen.
81 lines
4.5 KiB
C#
81 lines
4.5 KiB
C#
namespace BeWoPlanerMobil.Util
|
|
{
|
|
public class FormCollectionConstants
|
|
{
|
|
// Zeiterfassung
|
|
public static string ShowOnlyOwnSupportConceptsKey => "ShowOnlyOwnSupportConcepts";
|
|
public static string ShowExpiredSupportConceptsKey => "ShowExpiredSupportConcepts";
|
|
public static string DateKey => "Datum";
|
|
public static string Dokumentation1Key => "Dokumentation1";
|
|
public static string Dokumentation2Key => "Dokumentation2";
|
|
public static string Dokumentation3Key => "Dokumentation3";
|
|
public static string Dokumentation4Key => "Dokumentation4";
|
|
public static string Dokumentation5Key => "Dokumentation5";
|
|
public static string Dokumentation6Key => "Dokumentation6";
|
|
public static string DistanceKey => "Distanz";
|
|
public static string StartKey => "Start";
|
|
public static string EndKey => "Ende";
|
|
public static string EndDateKey => "Enddatum";
|
|
public static string DurationKey => "Dauer";
|
|
public static string HiddenInputKey => "versteckt";
|
|
public static string ServiceDescriptionKey => "ServiceDescription";
|
|
public static string CostBearer2SupportConceptOidKey => "CostBearer2SupportConceptOid";
|
|
public static string ServiceRecordOidHolderKey => "serviceRecordOidHolder";
|
|
public static string RecordsKey => "Records";
|
|
public static string ServiceRecordOidHolder2Key => "service-record-oid-holder";
|
|
public static string IsInGroupBookingModeKey => "IsInGroupBookingMode";
|
|
public static string IsInMultiBookingModeKey => "IsInMultiBookingMode";
|
|
public static string DurationInMinutesKey => "DurationInMinutes";
|
|
public static string MarkerKey => "marker-cb";
|
|
public static string FormIdKey => "form-id";
|
|
|
|
// Kalender
|
|
public static string AppointmentStartDateKey => "StartDate";
|
|
public static string AppointmentStartTimeKey => "StartTime";
|
|
public static string AppointmentEndDateKey => "EndDate";
|
|
public static string AppointmentEndTimeKey => "EndTime";
|
|
public static string AppointmentSubjectKey => "Subject";
|
|
public static string AppointmentLocationKey => "Location";
|
|
public static string AppointmentNoticeKey => "Notice";
|
|
public static string AppointmentSchedulerDateKey => "SchedulerDate";
|
|
public static string AppointmentSchedulerOidHolderKey => "scheduler-oid-holder";
|
|
public static string AppointmentIsPrivateKey => "IsPrivate";
|
|
public static string AppointmentIsAllDayKey => "IsAllDay";
|
|
public static string AppointmentIdInputKey => "appointment-id-input";
|
|
|
|
|
|
// Auswertung
|
|
public static string SelectedCustomerOidKey => "SelectedCustomerOid";
|
|
public static string SelectedMonthKey => "SelectedMonth";
|
|
public static string SelectedYearKey => "SelectedYear";
|
|
public static string SelectedTeamOidKey => "SelectedTeamOid";
|
|
public static string ServiceRecordOidForSignature => "ServiceRecordOidForSignature";
|
|
}
|
|
|
|
public class ModelSessionConstants
|
|
{
|
|
public static string ReportModelKey => "ReportModel";
|
|
public static string CustomerModelKey => "CustomerModelModel";
|
|
public static string SchedulerModelKey => "SchedulerModel";
|
|
public static string MainModelKey => "MainModel";
|
|
public static string DevelopmentModelKey => "DevelopmentModel";
|
|
public static string DevExpressReportModelKey => "DevExpressReportModel";
|
|
public static string ReportViewerModelKey => "ReportViewerModel";
|
|
}
|
|
|
|
public class TempDataConstants
|
|
{
|
|
public static string ShowSignatureSuggestionPopup => "ShowSignatureSuggestionPopup";
|
|
public static string AppointmentListItemKey => "AppointmentListItem";
|
|
public static string IsInTransferModeKey => "IsInTransferMode";
|
|
public static string AfterValidationStateKey => "AfterValidation";
|
|
public static string PwChErrKey => "passwd-change-error";
|
|
public static string ShowPwChPopupKey => "show_pw_change_popup";
|
|
public static string CustomerBargeldkassenErrorMessageKey => "CustomerBargeldkassenErrorMessage";
|
|
public static string AutoEndOfSessionLogoutMessageKey => "ein_schluessel";
|
|
public static string HasWarningMessageKey => "HasWarningMessage";
|
|
public static string ErrorMessageKey => "ErrorMessage";
|
|
public static string DoLogoutKey => "DoLogout";
|
|
public static string ReportErrorMessageKey => "ReportErrorMessage";
|
|
}
|
|
} |