我有一个名为产品的实体。有一个字段称为项目价格。
现在我已经创建了 100 个产品。我想对所有产品的“项目价格”字段求和(数学运算)并将其显示在另一个名为“项目总价格”的机会字段的实体中。
除此之外,如果我创建 101 个产品,并且机会中的“项目价格”、“项目总价格”字段自动更新自身。
所以因为我已经对表单的字段求和了。例如,有字段 A 和字段 B,将字段 A 乘以 3.14 并在字段 B 中显示结果。
这是代码。
function SumField() {
var price = Xrm.Page.getAttribute("new_price");
var total_price = Xrm.Page.getAttribute("new_total_price");
if(price.getValue() != null) {
var newValue = price.getValue() * 3.14;
total_price.setValue(newValue);
// Make sure the changes are saved back to the server - in CRM 4.0, this was crmForm.new_fieldname.ForceSubmit = true;
Xrm.Page.getAttribute("new_total_price").setSubmitMode("always");
}
}