From 7ba9073f61f44b41b941ab6ee732d02b47b988f4 Mon Sep 17 00:00:00 2001 From: lazhen <17772815105@139.com> Date: 星期四, 30 五月 2024 18:11:41 +0800 Subject: [PATCH] 日历不可用事件界面完成 --- _Main/BL/Type_LibCal_SubscriberEventTable/Method_InitializeTable.qbl | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_Main/BL/Type_LibCal_SubscriberEventTable/Method_InitializeTable.qbl b/_Main/BL/Type_LibCal_SubscriberEventTable/Method_InitializeTable.qbl index 6ef690d..89da25f 100644 --- a/_Main/BL/Type_LibCal_SubscriberEventTable/Method_InitializeTable.qbl +++ b/_Main/BL/Type_LibCal_SubscriberEventTable/Method_InitializeTable.qbl @@ -48,11 +48,11 @@ startTime := participation.StartDate().DateTime( timezone ).AddAsPeriod( timezone, event.StartTimeOfDay() ); // info( this.ID(), startTime, endTime ); if( this.ID() = 'Day' ){ - this.InitializeDay( this, row, startTime, endTime ); + this.InitializeDay( this, row, startTime, endTime, event.Description() ); }else if( this.ID() = 'Week' ){ - this.InitializeWeek( this, row, startTime, endTime ); + this.InitializeWeek( this, row, startTime, endTime, event.Description() ); }else{ - this.InitializeMonth( this, row, startTime, endTime ); + this.InitializeMonth( this, row, startTime, endTime, event.Description() ); } } -- Gitblit v1.9.3