有没有办法让外部系统知道某些记录的更新操作是否成功。根据标准流程,axapta 2012 R3 中的更新操作不会返回任何内容。
谢谢
您可以修改update
服务类中的方法以返回值。例如:
[AifDocumentUpdateAttribute, SysEntryPointAttribute(true)]
public AifEntityKeyList update(AifEntityKeyList _entityKeyList, CustCustomer _custCustomer)
{
this.updateList(_entityKeyList, _custCustomer);
return this.getCorrelationEntityKeys();
}