A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
/usr/local/apache2/htdocs/tbfy.web/include/models/OrganizationsModel.py in getMJUSourceOrgsView(self=<models.OrganizationsModel.OrganizationsModel object>) |
875
|
876 content = self.conf.Template(filename='templates/orgs_overview_mju.tpl')
|
=> 877 return content.render(data=dict)
|
878
|
879 def languageCorrections(self, string2Handle):
|
content = <mako.template.Template object>, content.render = <bound method Template.render of <mako.template.Template object>>, data undefined, dict = {'anomaliesDict': {'dependency-bidder2buyer': {'buyers': [['1834452000', '6233643000', '0.12342035057991368', '5', '-', '-']]}, 'dependency-buyer2bidder': {'buyers': [['1834452000', '5806283000', '0.24109124487668954', '13', '-', '-'], ['1834452000', '5174503000', '0.17722490725390558', '13', 'FIT fizično in tehnično varovanje, d.d.', '-'], ['1834452000', '5382432000', '0.13968164824344928', '13', '-', '-'], ['1834452000', '6233643000', '0.13305757007932695', '13', '-', '-'], ['1834452000', '5307147000', '0.08437923567498097', '13', '-', '-'], ['1834452000', '5317886000', '0.07195880111385314', '13', 'LANCOM inženiring računalniških sistemov d.o.o.', '-'], ['1834452000', '5231914000', '0.056408633621876744', '13', '-', '-']]}, 'dependency-mutual': {'buyers': [['1834452000', '5382432000', '0.13968164824344928', '1', '-', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'233358': ['2752', '-0.28576623425371017', '1834452000', '5317886000', '15000.0', '19988.32', '30000000', '233358', '-', 'LANCOM inženiring računalniških sistemov d.o.o.'], '292670': ['1431', '-0.21487845609115408', '1834452000', '5474388000', '4000.0', '4965.0', '72260000', '292670', '-', '-']}}, 'ratio-assessed-final-bdg-pos': {'buyers': {'220368': ['3501', '0.7670105932709628', '1834452000', '5425557000', '983.61', '457.0', '30000000', '220368', '-', 'ZELINKA & SINOVI Zastopanje in trgovina d.o.o.'], '335679': ['2011', '1.0573058299060567', '1834452000', '8507295000', '4508.2', '1566.65', '48820000', '335679', '-', 'INTEGRALIS, sistemske rešitve, d.o.o.']}}, 'ratio-rev-per-employee-pos': {'buyers': {'206450': ['9525', '10.517591552811897', '1834452000', '6233643000', '36960.0', '1', '90000000', '206450', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 6, 'wonTenders': {}, 'wonTendersChartData': {'byTenderNum': {}, 'byValue': {}}} |
/usr/local/lib/python3.7/site-packages/mako/template.py in render(self=<mako.template.Template object>, *args=(), **data={'data': {'anomaliesDict': {'dependency-bidder2buyer': {'buyers': [['1834452000', '6233643000', '0.12342035057991368', '5', '-', '-']]}, 'dependency-buyer2bidder': {'buyers': [['1834452000', '5806283000', '0.24109124487668954', '13', '-', '-'], ['1834452000', '5174503000', '0.17722490725390558', '13', 'FIT fizično in tehnično varovanje, d.d.', '-'], ['1834452000', '5382432000', '0.13968164824344928', '13', '-', '-'], ['1834452000', '6233643000', '0.13305757007932695', '13', '-', '-'], ['1834452000', '5307147000', '0.08437923567498097', '13', '-', '-'], ['1834452000', '5317886000', '0.07195880111385314', '13', 'LANCOM inženiring računalniških sistemov d.o.o.', '-'], ['1834452000', '5231914000', '0.056408633621876744', '13', '-', '-']]}, 'dependency-mutual': {'buyers': [['1834452000', '5382432000', '0.13968164824344928', '1', '-', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'233358': ['2752', '-0.28576623425371017', '1834452000', '5317886000', '15000.0', '19988.32', '30000000', '233358', '-', 'LANCOM inženiring računalniških sistemov d.o.o.'], '292670': ['1431', '-0.21487845609115408', '1834452000', '5474388000', '4000.0', '4965.0', '72260000', '292670', '-', '-']}}, 'ratio-assessed-final-bdg-pos': {'buyers': {'220368': ['3501', '0.7670105932709628', '1834452000', '5425557000', '983.61', '457.0', '30000000', '220368', '-', 'ZELINKA & SINOVI Zastopanje in trgovina d.o.o.'], '335679': ['2011', '1.0573058299060567', '1834452000', '8507295000', '4508.2', '1566.65', '48820000', '335679', '-', 'INTEGRALIS, sistemske rešitve, d.o.o.']}}, 'ratio-rev-per-employee-pos': {'buyers': {'206450': ['9525', '10.517591552811897', '1834452000', '6233643000', '36960.0', '1', '90000000', '206450', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 6, 'wonTenders': {}, 'wonTendersChartData': {'byTenderNum': {}, 'byValue': {}}}}) |
474
|
475 """
|
=> 476 return runtime._render(self, self.callable_, args, data)
|
477
|
478 def render_unicode(self, *args, **data):
|
global runtime = <module 'mako.runtime' from '/usr/local/lib/python3.7/site-packages/mako/runtime.py'>, runtime._render = <function _render>, self = <mako.template.Template object>, self.callable_ = <function render_body>, args = (), data = {'data': {'anomaliesDict': {'dependency-bidder2buyer': {'buyers': [['1834452000', '6233643000', '0.12342035057991368', '5', '-', '-']]}, 'dependency-buyer2bidder': {'buyers': [['1834452000', '5806283000', '0.24109124487668954', '13', '-', '-'], ['1834452000', '5174503000', '0.17722490725390558', '13', 'FIT fizično in tehnično varovanje, d.d.', '-'], ['1834452000', '5382432000', '0.13968164824344928', '13', '-', '-'], ['1834452000', '6233643000', '0.13305757007932695', '13', '-', '-'], ['1834452000', '5307147000', '0.08437923567498097', '13', '-', '-'], ['1834452000', '5317886000', '0.07195880111385314', '13', 'LANCOM inženiring računalniških sistemov d.o.o.', '-'], ['1834452000', '5231914000', '0.056408633621876744', '13', '-', '-']]}, 'dependency-mutual': {'buyers': [['1834452000', '5382432000', '0.13968164824344928', '1', '-', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'233358': ['2752', '-0.28576623425371017', '1834452000', '5317886000', '15000.0', '19988.32', '30000000', '233358', '-', 'LANCOM inženiring računalniških sistemov d.o.o.'], '292670': ['1431', '-0.21487845609115408', '1834452000', '5474388000', '4000.0', '4965.0', '72260000', '292670', '-', '-']}}, 'ratio-assessed-final-bdg-pos': {'buyers': {'220368': ['3501', '0.7670105932709628', '1834452000', '5425557000', '983.61', '457.0', '30000000', '220368', '-', 'ZELINKA & SINOVI Zastopanje in trgovina d.o.o.'], '335679': ['2011', '1.0573058299060567', '1834452000', '8507295000', '4508.2', '1566.65', '48820000', '335679', '-', 'INTEGRALIS, sistemske rešitve, d.o.o.']}}, 'ratio-rev-per-employee-pos': {'buyers': {'206450': ['9525', '10.517591552811897', '1834452000', '6233643000', '36960.0', '1', '90000000', '206450', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 6, 'wonTenders': {}, 'wonTendersChartData': {'byTenderNum': {}, 'byValue': {}}}} |
/usr/local/lib/python3.7/site-packages/mako/runtime.py in _render(template=<mako.template.Template object>, callable_=<function render_body>, args=(), data={'data': {'anomaliesDict': {'dependency-bidder2buyer': {'buyers': [['1834452000', '6233643000', '0.12342035057991368', '5', '-', '-']]}, 'dependency-buyer2bidder': {'buyers': [['1834452000', '5806283000', '0.24109124487668954', '13', '-', '-'], ['1834452000', '5174503000', '0.17722490725390558', '13', 'FIT fizično in tehnično varovanje, d.d.', '-'], ['1834452000', '5382432000', '0.13968164824344928', '13', '-', '-'], ['1834452000', '6233643000', '0.13305757007932695', '13', '-', '-'], ['1834452000', '5307147000', '0.08437923567498097', '13', '-', '-'], ['1834452000', '5317886000', '0.07195880111385314', '13', 'LANCOM inženiring računalniških sistemov d.o.o.', '-'], ['1834452000', '5231914000', '0.056408633621876744', '13', '-', '-']]}, 'dependency-mutual': {'buyers': [['1834452000', '5382432000', '0.13968164824344928', '1', '-', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'233358': ['2752', '-0.28576623425371017', '1834452000', '5317886000', '15000.0', '19988.32', '30000000', '233358', '-', 'LANCOM inženiring računalniških sistemov d.o.o.'], '292670': ['1431', '-0.21487845609115408', '1834452000', '5474388000', '4000.0', '4965.0', '72260000', '292670', '-', '-']}}, 'ratio-assessed-final-bdg-pos': {'buyers': {'220368': ['3501', '0.7670105932709628', '1834452000', '5425557000', '983.61', '457.0', '30000000', '220368', '-', 'ZELINKA & SINOVI Zastopanje in trgovina d.o.o.'], '335679': ['2011', '1.0573058299060567', '1834452000', '8507295000', '4508.2', '1566.65', '48820000', '335679', '-', 'INTEGRALIS, sistemske rešitve, d.o.o.']}}, 'ratio-rev-per-employee-pos': {'buyers': {'206450': ['9525', '10.517591552811897', '1834452000', '6233643000', '36960.0', '1', '90000000', '206450', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 6, 'wonTenders': {}, 'wonTendersChartData': {'byTenderNum': {}, 'byValue': {}}}}, as_unicode=False) |
881 context,
|
882 *args,
|
=> 883 **_kwargs_for_callable(callable_, data)
|
884 )
|
885 return context._pop_buffer().getvalue()
|
global _kwargs_for_callable = <function _kwargs_for_callable>, callable_ = <function render_body>, data = {'data': {'anomaliesDict': {'dependency-bidder2buyer': {'buyers': [['1834452000', '6233643000', '0.12342035057991368', '5', '-', '-']]}, 'dependency-buyer2bidder': {'buyers': [['1834452000', '5806283000', '0.24109124487668954', '13', '-', '-'], ['1834452000', '5174503000', '0.17722490725390558', '13', 'FIT fizično in tehnično varovanje, d.d.', '-'], ['1834452000', '5382432000', '0.13968164824344928', '13', '-', '-'], ['1834452000', '6233643000', '0.13305757007932695', '13', '-', '-'], ['1834452000', '5307147000', '0.08437923567498097', '13', '-', '-'], ['1834452000', '5317886000', '0.07195880111385314', '13', 'LANCOM inženiring računalniških sistemov d.o.o.', '-'], ['1834452000', '5231914000', '0.056408633621876744', '13', '-', '-']]}, 'dependency-mutual': {'buyers': [['1834452000', '5382432000', '0.13968164824344928', '1', '-', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'233358': ['2752', '-0.28576623425371017', '1834452000', '5317886000', '15000.0', '19988.32', '30000000', '233358', '-', 'LANCOM inženiring računalniških sistemov d.o.o.'], '292670': ['1431', '-0.21487845609115408', '1834452000', '5474388000', '4000.0', '4965.0', '72260000', '292670', '-', '-']}}, 'ratio-assessed-final-bdg-pos': {'buyers': {'220368': ['3501', '0.7670105932709628', '1834452000', '5425557000', '983.61', '457.0', '30000000', '220368', '-', 'ZELINKA & SINOVI Zastopanje in trgovina d.o.o.'], '335679': ['2011', '1.0573058299060567', '1834452000', '8507295000', '4508.2', '1566.65', '48820000', '335679', '-', 'INTEGRALIS, sistemske rešitve, d.o.o.']}}, 'ratio-rev-per-employee-pos': {'buyers': {'206450': ['9525', '10.517591552811897', '1834452000', '6233643000', '36960.0', '1', '90000000', '206450', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 6, 'wonTenders': {}, 'wonTendersChartData': {'byTenderNum': {}, 'byValue': {}}}} |
/usr/local/lib/python3.7/site-packages/mako/runtime.py in _render_context(tmpl=<mako.template.Template object>, callable_=<function render_body>, context=<mako.runtime.Context object>, *args=(), **kwargs={'data': {'anomaliesDict': {'dependency-bidder2buyer': {'buyers': [['1834452000', '6233643000', '0.12342035057991368', '5', '-', '-']]}, 'dependency-buyer2bidder': {'buyers': [['1834452000', '5806283000', '0.24109124487668954', '13', '-', '-'], ['1834452000', '5174503000', '0.17722490725390558', '13', 'FIT fizično in tehnično varovanje, d.d.', '-'], ['1834452000', '5382432000', '0.13968164824344928', '13', '-', '-'], ['1834452000', '6233643000', '0.13305757007932695', '13', '-', '-'], ['1834452000', '5307147000', '0.08437923567498097', '13', '-', '-'], ['1834452000', '5317886000', '0.07195880111385314', '13', 'LANCOM inženiring računalniških sistemov d.o.o.', '-'], ['1834452000', '5231914000', '0.056408633621876744', '13', '-', '-']]}, 'dependency-mutual': {'buyers': [['1834452000', '5382432000', '0.13968164824344928', '1', '-', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'233358': ['2752', '-0.28576623425371017', '1834452000', '5317886000', '15000.0', '19988.32', '30000000', '233358', '-', 'LANCOM inženiring računalniških sistemov d.o.o.'], '292670': ['1431', '-0.21487845609115408', '1834452000', '5474388000', '4000.0', '4965.0', '72260000', '292670', '-', '-']}}, 'ratio-assessed-final-bdg-pos': {'buyers': {'220368': ['3501', '0.7670105932709628', '1834452000', '5425557000', '983.61', '457.0', '30000000', '220368', '-', 'ZELINKA & SINOVI Zastopanje in trgovina d.o.o.'], '335679': ['2011', '1.0573058299060567', '1834452000', '8507295000', '4508.2', '1566.65', '48820000', '335679', '-', 'INTEGRALIS, sistemske rešitve, d.o.o.']}}, 'ratio-rev-per-employee-pos': {'buyers': {'206450': ['9525', '10.517591552811897', '1834452000', '6233643000', '36960.0', '1', '90000000', '206450', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 6, 'wonTenders': {}, 'wonTendersChartData': {'byTenderNum': {}, 'byValue': {}}}}) |
918 # if main render method, call from the base of the inheritance stack
|
919 (inherit, lclcontext) = _populate_self_namespace(context, tmpl)
|
=> 920 _exec_template(inherit, lclcontext, args=args, kwargs=kwargs)
|
921 else:
|
922 # otherwise, call the actual rendering method specified
|
global _exec_template = <function _exec_template>, inherit = <function render_body>, lclcontext = <mako.runtime.Context object>, args = (), kwargs = {'data': {'anomaliesDict': {'dependency-bidder2buyer': {'buyers': [['1834452000', '6233643000', '0.12342035057991368', '5', '-', '-']]}, 'dependency-buyer2bidder': {'buyers': [['1834452000', '5806283000', '0.24109124487668954', '13', '-', '-'], ['1834452000', '5174503000', '0.17722490725390558', '13', 'FIT fizično in tehnično varovanje, d.d.', '-'], ['1834452000', '5382432000', '0.13968164824344928', '13', '-', '-'], ['1834452000', '6233643000', '0.13305757007932695', '13', '-', '-'], ['1834452000', '5307147000', '0.08437923567498097', '13', '-', '-'], ['1834452000', '5317886000', '0.07195880111385314', '13', 'LANCOM inženiring računalniških sistemov d.o.o.', '-'], ['1834452000', '5231914000', '0.056408633621876744', '13', '-', '-']]}, 'dependency-mutual': {'buyers': [['1834452000', '5382432000', '0.13968164824344928', '1', '-', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'233358': ['2752', '-0.28576623425371017', '1834452000', '5317886000', '15000.0', '19988.32', '30000000', '233358', '-', 'LANCOM inženiring računalniških sistemov d.o.o.'], '292670': ['1431', '-0.21487845609115408', '1834452000', '5474388000', '4000.0', '4965.0', '72260000', '292670', '-', '-']}}, 'ratio-assessed-final-bdg-pos': {'buyers': {'220368': ['3501', '0.7670105932709628', '1834452000', '5425557000', '983.61', '457.0', '30000000', '220368', '-', 'ZELINKA & SINOVI Zastopanje in trgovina d.o.o.'], '335679': ['2011', '1.0573058299060567', '1834452000', '8507295000', '4508.2', '1566.65', '48820000', '335679', '-', 'INTEGRALIS, sistemske rešitve, d.o.o.']}}, 'ratio-rev-per-employee-pos': {'buyers': {'206450': ['9525', '10.517591552811897', '1834452000', '6233643000', '36960.0', '1', '90000000', '206450', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 6, 'wonTenders': {}, 'wonTendersChartData': {'byTenderNum': {}, 'byValue': {}}}} |
/usr/local/lib/python3.7/site-packages/mako/runtime.py in _exec_template(callable_=<function render_body>, context=<mako.runtime.Context object>, args=(), kwargs={'data': {'anomaliesDict': {'dependency-bidder2buyer': {'buyers': [['1834452000', '6233643000', '0.12342035057991368', '5', '-', '-']]}, 'dependency-buyer2bidder': {'buyers': [['1834452000', '5806283000', '0.24109124487668954', '13', '-', '-'], ['1834452000', '5174503000', '0.17722490725390558', '13', 'FIT fizično in tehnično varovanje, d.d.', '-'], ['1834452000', '5382432000', '0.13968164824344928', '13', '-', '-'], ['1834452000', '6233643000', '0.13305757007932695', '13', '-', '-'], ['1834452000', '5307147000', '0.08437923567498097', '13', '-', '-'], ['1834452000', '5317886000', '0.07195880111385314', '13', 'LANCOM inženiring računalniških sistemov d.o.o.', '-'], ['1834452000', '5231914000', '0.056408633621876744', '13', '-', '-']]}, 'dependency-mutual': {'buyers': [['1834452000', '5382432000', '0.13968164824344928', '1', '-', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'233358': ['2752', '-0.28576623425371017', '1834452000', '5317886000', '15000.0', '19988.32', '30000000', '233358', '-', 'LANCOM inženiring računalniških sistemov d.o.o.'], '292670': ['1431', '-0.21487845609115408', '1834452000', '5474388000', '4000.0', '4965.0', '72260000', '292670', '-', '-']}}, 'ratio-assessed-final-bdg-pos': {'buyers': {'220368': ['3501', '0.7670105932709628', '1834452000', '5425557000', '983.61', '457.0', '30000000', '220368', '-', 'ZELINKA & SINOVI Zastopanje in trgovina d.o.o.'], '335679': ['2011', '1.0573058299060567', '1834452000', '8507295000', '4508.2', '1566.65', '48820000', '335679', '-', 'INTEGRALIS, sistemske rešitve, d.o.o.']}}, 'ratio-rev-per-employee-pos': {'buyers': {'206450': ['9525', '10.517591552811897', '1834452000', '6233643000', '36960.0', '1', '90000000', '206450', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 6, 'wonTenders': {}, 'wonTendersChartData': {'byTenderNum': {}, 'byValue': {}}}}) |
945 _render_error(template, context, e)
|
946 else:
|
=> 947 callable_(context, *args, **kwargs)
|
948
|
949
|
callable_ = <function render_body>, context = <mako.runtime.Context object>, args = (), kwargs = {'data': {'anomaliesDict': {'dependency-bidder2buyer': {'buyers': [['1834452000', '6233643000', '0.12342035057991368', '5', '-', '-']]}, 'dependency-buyer2bidder': {'buyers': [['1834452000', '5806283000', '0.24109124487668954', '13', '-', '-'], ['1834452000', '5174503000', '0.17722490725390558', '13', 'FIT fizično in tehnično varovanje, d.d.', '-'], ['1834452000', '5382432000', '0.13968164824344928', '13', '-', '-'], ['1834452000', '6233643000', '0.13305757007932695', '13', '-', '-'], ['1834452000', '5307147000', '0.08437923567498097', '13', '-', '-'], ['1834452000', '5317886000', '0.07195880111385314', '13', 'LANCOM inženiring računalniških sistemov d.o.o.', '-'], ['1834452000', '5231914000', '0.056408633621876744', '13', '-', '-']]}, 'dependency-mutual': {'buyers': [['1834452000', '5382432000', '0.13968164824344928', '1', '-', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'233358': ['2752', '-0.28576623425371017', '1834452000', '5317886000', '15000.0', '19988.32', '30000000', '233358', '-', 'LANCOM inženiring računalniških sistemov d.o.o.'], '292670': ['1431', '-0.21487845609115408', '1834452000', '5474388000', '4000.0', '4965.0', '72260000', '292670', '-', '-']}}, 'ratio-assessed-final-bdg-pos': {'buyers': {'220368': ['3501', '0.7670105932709628', '1834452000', '5425557000', '983.61', '457.0', '30000000', '220368', '-', 'ZELINKA & SINOVI Zastopanje in trgovina d.o.o.'], '335679': ['2011', '1.0573058299060567', '1834452000', '8507295000', '4508.2', '1566.65', '48820000', '335679', '-', 'INTEGRALIS, sistemske rešitve, d.o.o.']}}, 'ratio-rev-per-employee-pos': {'buyers': {'206450': ['9525', '10.517591552811897', '1834452000', '6233643000', '36960.0', '1', '90000000', '206450', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 6, 'wonTenders': {}, 'wonTendersChartData': {'byTenderNum': {}, 'byValue': {}}}} |
/usr/local/apache2/htdocs/tbfy.web/templates_orgs_overview_mju_tpl in render_body(context=<mako.runtime.Context object>, **pageargs={'data': {'anomaliesDict': {'dependency-bidder2buyer': {'buyers': [['1834452000', '6233643000', '0.12342035057991368', '5', '-', '-']]}, 'dependency-buyer2bidder': {'buyers': [['1834452000', '5806283000', '0.24109124487668954', '13', '-', '-'], ['1834452000', '5174503000', '0.17722490725390558', '13', 'FIT fizično in tehnično varovanje, d.d.', '-'], ['1834452000', '5382432000', '0.13968164824344928', '13', '-', '-'], ['1834452000', '6233643000', '0.13305757007932695', '13', '-', '-'], ['1834452000', '5307147000', '0.08437923567498097', '13', '-', '-'], ['1834452000', '5317886000', '0.07195880111385314', '13', 'LANCOM inženiring računalniških sistemov d.o.o.', '-'], ['1834452000', '5231914000', '0.056408633621876744', '13', '-', '-']]}, 'dependency-mutual': {'buyers': [['1834452000', '5382432000', '0.13968164824344928', '1', '-', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'233358': ['2752', '-0.28576623425371017', '1834452000', '5317886000', '15000.0', '19988.32', '30000000', '233358', '-', 'LANCOM inženiring računalniških sistemov d.o.o.'], '292670': ['1431', '-0.21487845609115408', '1834452000', '5474388000', '4000.0', '4965.0', '72260000', '292670', '-', '-']}}, 'ratio-assessed-final-bdg-pos': {'buyers': {'220368': ['3501', '0.7670105932709628', '1834452000', '5425557000', '983.61', '457.0', '30000000', '220368', '-', 'ZELINKA & SINOVI Zastopanje in trgovina d.o.o.'], '335679': ['2011', '1.0573058299060567', '1834452000', '8507295000', '4508.2', '1566.65', '48820000', '335679', '-', 'INTEGRALIS, sistemske rešitve, d.o.o.']}}, 'ratio-rev-per-employee-pos': {'buyers': {'206450': ['9525', '10.517591552811897', '1834452000', '6233643000', '36960.0', '1', '90000000', '206450', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 6, 'wonTenders': {}, 'wonTendersChartData': {'byTenderNum': {}, 'byValue': {}}}}) |
|