|
1 | 1 | # |
2 | 2 | # -*- coding: utf-8 -*- |
3 | 3 | # |
4 | | -# Copyright 2015-2023 NETCAT (www.netcat.pl) |
| 4 | +# Copyright 2015-2024 NETCAT (www.netcat.pl) |
5 | 5 | # |
6 | 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
7 | 7 | # you may not use this file except in compliance with the License. |
|
16 | 16 | # limitations under the License. |
17 | 17 | # |
18 | 18 | # @author NETCAT <firma@netcat.pl> |
19 | | -# @copyright 2015-2023 NETCAT (www.netcat.pl) |
| 19 | +# @copyright 2015-2024 NETCAT (www.netcat.pl) |
20 | 20 | # @license http://www.apache.org/licenses/LICENSE-2.0 |
21 | 21 | # |
22 | 22 |
|
@@ -72,6 +72,7 @@ def __init__(self): |
72 | 72 | self.specificLegalFormName = None |
73 | 73 | self.ownershipFormCode = None |
74 | 74 | self.ownershipFormName = None |
| 75 | + self.businessPartner = [] |
75 | 76 | self.pkd = [] |
76 | 77 |
|
77 | 78 | def __str__(self): |
@@ -120,5 +121,6 @@ def __str__(self): |
120 | 121 | + ', specificLegalFormName = ' + str(self.specificLegalFormName) \ |
121 | 122 | + ', ownershipFormCode = ' + str(self.ownershipFormCode) \ |
122 | 123 | + ', ownershipFormName = ' + str(self.ownershipFormName) \ |
| 124 | + + ', businessPartner = [' + ', '.join(str(e) for e in self.businessPartner) + ']' \ |
123 | 125 | + ', pkd = [' + ', '.join(str(e) for e in self.pkd) + ']' \ |
124 | 126 | + ']' |
0 commit comments