Dynamics CRM 4.0 - 一个月中有多少天?

发布于 2024-09-26 06:42:33 字数 118 浏览 4 评论 0原文

我只是想知道是否有人知道 Dynamics CRM 将工作流程定义为 1 个月的天数。

我目前正在开发一个工作流程,需要进行一些日期检查,并需要在 150 天标记处验证某些内容。

提前致谢!

I was just wondering if anyone knew the number of days that Dynamics CRM defines as 1 month when it comes to work flows.

I am currently developing a workflow that requires some date checking and need to verify something at the 150 day mark.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天赋异禀 2024-10-03 06:42:33

在幕后,工作流构建器中的动态值选取器保存为 CrmTimeSpan 类型。使用 CrmTimeSpan/TimeSpan 时,月份将存储为月份,而不是天数总和。例如:

DateTime firstOfTheYear = new DateTime(2010, 1, 1);

CrmTimeSpan timespan = CrmTimeSpan.CreateCrmTimeSpan(0,1,0,0,0);

DateTime firstDayOfFebruary = timespan.Add(firstOfTheYear);

DateTime firstDayOfMarch = timespan.Add(firstDayOfFebruary);

由于您需要检查选择器不支持的日期范围,这是一个自定义工作流程活动,它应该可以让您走上正确的轨道。

Behind the scenes, the Dynamic Values picker in the Workflow builder saves to a CrmTimeSpan type. When a CrmTimeSpan/TimeSpan is used, months are stored as months, not a sum of days. For example:

DateTime firstOfTheYear = new DateTime(2010, 1, 1);

CrmTimeSpan timespan = CrmTimeSpan.CreateCrmTimeSpan(0,1,0,0,0);

DateTime firstDayOfFebruary = timespan.Add(firstOfTheYear);

DateTime firstDayOfMarch = timespan.Add(firstDayOfFebruary);

Because you need to check against a date range that isn't supported by the picker, here is a custom workflow activity that should get you on the right track.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文