我正在尝试向自定义实体 MFA 添加版本控制功能,但遇到了一个非常奇怪的问题。我有一个从两个地方调用的 javascript webresource:表单上的 onSave 事件,以及作为自定义功能区按钮的操作。具体来说,onSave 事件调用 captureSave,而功能区按钮调用 makeARevision。
当从保存按钮/事件调用时,一切都按预期工作;所有信息,包括新的更改,都被拉到一个新记录并保存在那里,而原始记录在没有保存更改的情况下关闭,也没有保存提示。但是,当通过自定义功能区按钮调用时,任何未保存的更改都不会被带到新记录中,并且旧记录会提示保存。此外,即使用户选择将更改保存到旧记录,更改也不会保存,表单也不会自动关闭。
以下代码是有问题的网络资源。company_MFASaveOrRevise 只是一个 html 页面,询问用户是否要保存记录或创建新修订。任何关于导致差异的原因或如何解决它们的想法都值得赞赏。
function captureSave(executionContext) {
if (Xrm.Page.ui.getFormType() != 1 && Xrm.Page.data.entity.getIsDirty()) {
var retVal = showModalDialog(Xrm.Page.context.getServerUrl() + '/Webresources/company_MFASaveOrRevise', null, 'dialogWidth: 300px; dialogHeight: 100px');
if (retVal == "Revise") {
executionContext.getEventArgs().preventDefault();
makeARevision();
}
else if (retVal == "Save") {
}
}
}
function createLookupValue(oldLookup) {
var lookupVal = new Object();
lookupVal.Id = oldLookup.id;
lookupVal.LogicalName = oldLookup.entityName;
lookupVal.Name = oldLookup.Name;
return lookupVal;
}
function makeARevision() {
var revisedMFA = {};
revisedMFA['company_mfaname'] = Xrm.Page.data.entity.attributes.get('company_mfaname').getValue();
revisedMFA['company_mfadate'] = Xrm.Page.data.entity.attributes.get('company_mfadate').getValue();
revisedMFA['company_estimatedliqdate'] = Xrm.Page.data.entity.attributes.get('company_estimatedliqdate').getValue();
revisedMFA['company_actualliqdate'] = Xrm.Page.data.entity.attributes.get('company_actualliqdate').getValue();
revisedMFA['company_mfanumber'] = Xrm.Page.data.entity.attributes.get('company_mfanumber').getValue();
revisedMFA['company_revisionno'] = Xrm.Page.data.entity.attributes.get('company_revisionno') == null ? 0 : Xrm.Page.data.entity.attributes.get('company_revisionno').getValue() + 1;
revisedMFA['company_requester'] = createLookupValue(Xrm.Page.data.entity.attributes.get('company_requester').getValue()[0]);
revisedMFA['company_mfapreviousrev'] = Xrm.Page.data.entity.attributes.get('company_totalmfatodate').getValue();
revisedMFA['company_contract'] = createLookupValue(Xrm.Page.data.entity.attributes.get('company_contract').getValue()[0]);
$.ajax({
type: 'POST',
contentType: 'application/json; charset=utf-8',
datatype: 'json',
url: getODataUrl() + '/' + 'company_mfaSet',
data: JSON.stringify(revisedMFA),
beforeSend: function (XMLHttpRequest) {
//Specifying this header ensures that the results will be returned as JSON.
XMLHttpRequest.setRequestHeader('Accept', 'application/json');
},
success: function (data, textStatus, request) {
Xrm.Utility.openEntityForm("company_mfa", data.d.company_mfaId.toUpperCase());
var attributes = Xrm.Page.data.entity.attributes.get();
for (var i in attributes) {
attributes[i].setSubmitMode('never');
}
Xrm.Page.ui.close();
},
error: function (request, textStatus, errorThrown) {
alert(errorThrown);
//alert("There was an error creating the revision");
}
});
}
编辑:我debugger;
在不同的地方插入并且正在使用 VS2012 调试器,发现属性被正确设置为不提交,但显然这并没有阻止弹出确认对话框(即使它在调用 webresource 时有效通过保存按钮)。此外,Xrm.Page.data.entity.attributes.get(attributeName)
在 onSave 事件期间调用时返回更改后的值,但从功能区调用时返回更改前的值。我仍然不知道为什么或如何解决它。还有什么我应该寻找的吗?