Skip to content

Commit

Permalink
Add IQBanking to Connectivity Apps (#21236)
Browse files Browse the repository at this point in the history
  • Loading branch information
InnoQubitAdmin authored Dec 16, 2022
1 parent b8b381c commit 1fee695
Showing 1 changed file with 30 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ codeunit 20352 "Connectivity App Definitions"
RegisterContiniaPaymentManagement365NL();
RegisterContiniaPaymentManagement365DK();
RegisterContiniaPaymentManagement365NO();
RegisterIQBanking();
end;

local procedure RegisterAppBankingNL()
Expand Down Expand Up @@ -166,6 +167,34 @@ codeunit 20352 "Connectivity App Definitions"
RegisterApp(AppId, AppName, AppPublisher, AppDescription, AppProviderSupportURL, AppSourceURL, AppApprovedFor, AppWorksOn, "Connectivity Apps Category"::Banking);
end;

local procedure RegisterIQBanking()
var
AppId: Text[250];
AppName: Text[1024];
AppPublisher: Text[250];
AppDescription: Text[2048];
AppProviderSupportURL: Text[250];
AppSourceURL: Text[250];
AppWorksOn: Text;
AppApprovedFor: Text;
begin
/***************************************************
Add app 'IQ Banking' to ES
***************************************************/

AppId := '80d82476-426c-4812-be05-bfcbaf777868';
AppName := 'IQ Banking';
AppPublisher := 'InnoQubit Software';
AppDescription := 'Manage your banks directly from Business Central. In order to make financial management easier, this app allows you import bank transactions and execute payments in an easy and secure way, without leaving your Business Central environment.';
AppProviderSupportURL := 'https://innovaonline.es/banking/bank';
AppSourceUrl := 'https://appsource.microsoft.com/es-es/product/dynamics-365-business-central/PUBID.innoqubitsoftwaresl1638027829374%7CAID.iq-banking%7CPAPPID.80d82476-426c-4812-be05-bfcbaf777868';
AppApprovedFor := 'ES';
AppWorksOn := 'ES';

AddDescriptionTranslation(AppId, 'Gestiona tus bancos directamente desde Business Central. Con la finalidad de facilitar la gestión financiera, esta app te permite importar transacciones bancarias y ejecutar pagos de una forma sencilla y segura, sin salir de tu entorno de Business Central.', 1034);
RegisterApp(AppId, AppName, AppPublisher, AppDescription, AppProviderSupportURL, AppSourceURL, AppApprovedFor, AppWorksOn, "Connectivity Apps Category"::Banking);
end;

internal procedure GetConnectivityAppDefinitions(var ConnectivityApps: Record "Connectivity App"; var ApprovedConnectivityAppCountry: Record "Connectivity App Country"; var WorksOnConnectivityAppCountry: Record "Connectivity App Country")
begin
LoadData();
Expand Down Expand Up @@ -317,4 +346,4 @@ codeunit 20352 "Connectivity App Definitions"
TempApprovedConnectivityAppCountry.DeleteAll();
TempWorksOnConnectivityAppCountry.DeleteAll();
end;
}
}

0 comments on commit 1fee695

Please sign in to comment.