gpt4 book ai didi

javascript - 在 Dynamics CRM 4.0 中使用 javascript 计算年龄

转载 作者:行者123 更新时间:2023-11-30 06:01:07 24 4
gpt4 key购买 nike

首先,我是dynamics crm的新手。

我有一种情况,我必须计算发生案件的人的年龄涉案人员类型为“投诉人”

为此我们有 3 个客户实体

new_Case 
Occurrence Date
new_involvePerson
Involved Person Type(following are types)
- Complainant
- Supervisor
- Investigator
and New_person
- DOB

现在,用户更新事件中的发生日期,我必须计算投诉人的年龄

保存事件案例时,是否可以在 Javascript OnSave 中执行?还是我必须创建工作流程或插件?能否获取示例代码

提前致谢

最佳答案

是的,这是可能的。您只需编写一个函数并在保存事件表单时触发它。

检查 Occurence Date 是否不为空,然后检索 new_involvePerson 的类型,如果它等于 Complainant,那么您只需检索 involvePerson 的出生日期并计算年龄就很容易了。

calculateAge = function (date) {

var birthDate = new Date(date);
var todayDate = new Date();
var todayYear = todayDate.getFullYear();
var todayMonth = todayDate.getMonth();
var todayDay = todayDate.getDate();
var birthYear = birthDate.getFullYear();
var birthMonth = birthDate.getMonth();
var birthDay = birthDate.getDate();

var age = todayYear - birthYear;

if (todayMonth < birthMonth) {
age--;
}

if (birthMonth == todayMonth && todayDay < birthDay) {
age--;
}
if (age != undefined && age != null) {
Xrm.Page.getAttribute("yourfieldhere").setValue(age);
}
else {
Xrm.Page.getAttribute("yourfieldhere").setValue(null);
}
}

关于javascript - 在 Dynamics CRM 4.0 中使用 javascript 计算年龄,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8523706/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com