Add NAV EKÁER submission endpoint and update docs

- Switched DB connection to FruitBank_PROD in appsettings.json
- Added NAV EKÁER credentials section to appsettings.json
- Introduced SendEkaerToNav SignalR endpoint for direct NAV submission
- Updated README to document new submission workflow and status handling
- Clarified EKÁER process and lifecycle to reflect automated NAV integration
This commit is contained in:
Loretta 2026-07-13 18:59:39 +02:00
parent 4851d26af7
commit 6faf6c8594
2 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"ConnectionStrings": {
"ConnectionString": "Data Source=100.73.220.50;Initial Catalog=FruitBank_DEV;Integrated Security=False;Persist Security Info=False;User ID=sa;Password=v6f_?xNfg9N1;Trust Server Certificate=True",
"ConnectionString": "Data Source=100.73.220.50;Initial Catalog=FruitBank_PROD;Integrated Security=False;Persist Security Info=False;User ID=sa;Password=v6f_?xNfg9N1;Trust Server Certificate=True",
"DataProvider": "sqlserver",
"SQLCommandTimeout": null,
"WithNoLock": false

View File

@ -55,6 +55,16 @@
},
"ExchangeRate": {
"EurHuf": 356
},
// NAV EKÁER hitelesítés (INavCredentials). A teljes endpoint: {BaseUrl}/TradeCardManagementService/customer/{művelet}
// a "/TradeCardManagementService/customer/..." részt a kód fűzi hozzá, ide CSAK a hoszt kell.
// A Password és a SigningKey TITKOS a felhasználó tölti ki (SOHA ne kerüljön verziókövetésbe).
"Credentials": {
"BaseUrl": "https://import-test.ekaer.nav.gov.hu",
"User": "Gelencseradam",
"Password": "Fruitbank2026_",
"SigningKey": "FruitBank",
"TaxNumber": "14902170"
}
}
}