Lotus Notes 每周自动更新字段值
Automatic field value update every week in Lotus Notes
我想在表单的字段中捕获代理的预定时间。代理人每周五晚上运行。当代理运行时,该字段将更新其值作为代理的 运行 时间。我该怎么做?例如,本周五字段值为 04.03.2016,下周五其值为 11.03.2016。
在 LotusScript 中它看起来像这样。
set DateTime = new NotesDateTime(now)
call DateTime.AdJustDays(7)
DateTime.DateOnly=true
call NotesDocument.replaceItemValue("Field",DateTime)
或者,对于我们这些喜欢单行的人:
调用 NotesDocument.ReplaceItemValue("Field",评估("@Adjust(@Today; 0; 0; 7; 0; 0; 0)"))
我想在表单的字段中捕获代理的预定时间。代理人每周五晚上运行。当代理运行时,该字段将更新其值作为代理的 运行 时间。我该怎么做?例如,本周五字段值为 04.03.2016,下周五其值为 11.03.2016。
在 LotusScript 中它看起来像这样。
set DateTime = new NotesDateTime(now)
call DateTime.AdJustDays(7)
DateTime.DateOnly=true
call NotesDocument.replaceItemValue("Field",DateTime)
或者,对于我们这些喜欢单行的人:
调用 NotesDocument.ReplaceItemValue("Field",评估("@Adjust(@Today; 0; 0; 7; 0; 0; 0)"))