0

我对visualforce / apex编程很陌生,并且有点卡在apex中解析当前时间和时间函数。

基本上我想弄清楚当前时间是否在我给定的时间范围内。我如何用顶级语言写这个?

public String isWorkhours;
public String getIsWorkhours() { 
    Datetime current_time = *(get current time)*
    Datetime start_time = *(7:00 am)*
    Datetime end_time = *(7:00 pm)*

    if ((current_time >= start_time) && (current_time <= end_time)) {
        isWorkhours= 'yes';
    } else {
        isWorkhours= 'no';
    }
    return isWorkhours;
}
4

1 回答 1

0

首先 - 检查您是否可以使用营业时间(标准对象)来配置 SF,而不是手动编写类似的功能。只需查看您的在线帮助即可。

2 个日期时间对象的比较示例:http: //www.salesforce.com/us/developer/docs/apexcode/Content/apex_classes_businesshours.htm

其次 - 阅读Time 类的参考。像这样的东西?

Time start = Time.newInstance(7,0,0,0), stop = Time.newInstance(19,0,0,0);

DateTime now = System.now(); // or DateTime.now();

System.debug(now.time() > start && now.time() < stop);
于 2013-01-16T04:09:45.007 回答