1

fetch xml クエリがあり、日付と時刻のフィールドでレコードをフィルター処理したいと考えています。

on または beforeという式を使用していますが、これは日付のみをフィルタリングするようです (時間なし)。

FetchXml= ...
'<filter type="and">'+
'<filter type="or">'+
    '<condition attribute="scheduledend" value="'+ currentdate +'" operator="on-or-before"/>'+
    '<condition attribute="scheduledend" operator="null"/>'+
'</filter>'+
'</filter>'+
4

1 に答える 1

1

日付を作成し、時刻部分に 0 を適用できます。それはあなたがしたいですか?

var date = Xrm.Page.getAttribute("createdon").getValue();
var d = new Date(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0, 0);
于 2013-03-14T15:08:03.913 に答える