是否可以在离线模式下通过Resco在Field Service移动应用程序中调用操作?

时间:2019-07-18 10:16:59

标签: dynamics-365 dynamics365-app-mobile

我正在使用JSBridge自定义Resco的Field Service移动应用程序。在离线模式下,JSBridge似乎没有提供任何调用自定义操作的功能。它只能在在线模式下工作。

有什么方法可以在离线模式下调用自定义操作?

请在下面找到用于在线模式下调用函数的代码。

FS_CustomValidation.fetchMandatoryFields = function () {
    MobileCRM.Services.Workflow.Action.execute("<Custom Action name>", null,
        function (successResponse) {
            var parsedJson = JSON.parse(successResponse.RequiredFieldsJson);
            FS_CustomValidation.mandatoryFields = parsedJson["requiredFields"];
        }, function (errorResponse) {
            MobileCRM.bridge.alert(JSON.stringify(errorResponse));
        }, FS_CustomValidation);
}

0 个答案:

没有答案