Skip to content

Commit

Permalink
Merge pull request #34 from zigastegu/patch-1
Browse files Browse the repository at this point in the history
(untested) Display Receiving party
  • Loading branch information
maslick authored Jan 12, 2022
2 parents f08f4bf + 5275670 commit 78255a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "koder-react",
"version": "1.2.6",
"version": "1.2.7",
"homepage": "./",
"private": true,
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion src/transformers/upnqr.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@ class Upnqr {
if (rok.length > 0) res += `Rok plačila: ${rok}\n`;
if (obj.IBAN_prejemnika != null) res += `IBAN: ${obj.IBAN_prejemnika}\n`;
if (obj.nujno != null) res += `Nujno: ${obj.nujno ? "da" : "ne"}\n\n`;
if (obj.ime_prejemnika != null) res += `Prejemnik: ${obj.ime_prejemnika}\n`;
if (obj.referenca_prejemnika != null) res += `Referenca: ${obj.referenca_prejemnika}\n`;
if (obj.ulica_prejemnika != null) res += `Naslov: ${obj.ulica_prejemnika}\n`;
if (obj.kraj_prejemnika != null) res += `Kraj: ${obj.kraj_prejemnika}`;
return res;
};
}

export {Upnqr};
export {Upnqr};

0 comments on commit 78255a4

Please sign in to comment.