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': [['5882966000', '3819213000', '0.7318104959338012', '2', '-', '-'], ['5882966000', '8074119000', '0.48192150471193307', '2', '-', '-'], ['5882966000', '8381704000', '0.07104987792392545', '5', '-', '-'], ['5882966000', '6815677000', '0.05254014735758508', '14', 'GAAL gradnje d.o.o.', '-']]}, 'dependency-buyer2bidder': {'buyers': [['5882966000', '5143284000', '0.4485373771934873', '14', 'CESTNO PODJETJE PTUJ D.D.', '-'], ['5882966000', '6815677000', '0.18110430959273402', '14', 'GAAL gradnje d.o.o.', '-'], ['5882966000', '5263433000', '0.0864810267208398', '14', 'ARRIVA, družba za prevoz potnikov, d.o.o.', '-'], ['5882966000', '5662257000', '0.051199985852249066', '14', 'LESNINA MG OPREMA podjetje za inženiring, d.d., Ljubljana', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'329617': ['2868', '-0.2948658772960154', '5882966000', '8257027000', '51000.0', '68582.36', '79100000', '329617', '-', '-'], '335612': ['49', '-0.16562937623125948', '5882966000', '3819213000', '60000.0', '70891.8', '90620000', '335612', '-', '-'], '438502': ['4070', '-0.40770249640743567', '5882966000', '6780288000', '30000.0', '45168.7', '71320000', '438502', '-', '-']}}, 'ratio-rev-per-employee-pos': {'buyers': {'259202': ['6172', '11.092744167977509', '5882966000', 't90', '65692.77', '1', '45233000', '259202', '-', '-'], '329617': ['5962', '11.13579065237095', '5882966000', '8257027000', '68582.36', '1.0', '79100000', '329617', '-', '-'], '335612': ['9797', '10.475762897630313', '5882966000', '3819213000', '70891.8', '2', '90620000', '335612', '-', '-'], '438502': ['8238', '10.718159670209891', '5882966000', '6780288000', '45168.7', '1.0', '71320000', '438502', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 4, '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': [['5882966000', '3819213000', '0.7318104959338012', '2', '-', '-'], ['5882966000', '8074119000', '0.48192150471193307', '2', '-', '-'], ['5882966000', '8381704000', '0.07104987792392545', '5', '-', '-'], ['5882966000', '6815677000', '0.05254014735758508', '14', 'GAAL gradnje d.o.o.', '-']]}, 'dependency-buyer2bidder': {'buyers': [['5882966000', '5143284000', '0.4485373771934873', '14', 'CESTNO PODJETJE PTUJ D.D.', '-'], ['5882966000', '6815677000', '0.18110430959273402', '14', 'GAAL gradnje d.o.o.', '-'], ['5882966000', '5263433000', '0.0864810267208398', '14', 'ARRIVA, družba za prevoz potnikov, d.o.o.', '-'], ['5882966000', '5662257000', '0.051199985852249066', '14', 'LESNINA MG OPREMA podjetje za inženiring, d.d., Ljubljana', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'329617': ['2868', '-0.2948658772960154', '5882966000', '8257027000', '51000.0', '68582.36', '79100000', '329617', '-', '-'], '335612': ['49', '-0.16562937623125948', '5882966000', '3819213000', '60000.0', '70891.8', '90620000', '335612', '-', '-'], '438502': ['4070', '-0.40770249640743567', '5882966000', '6780288000', '30000.0', '45168.7', '71320000', '438502', '-', '-']}}, 'ratio-rev-per-employee-pos': {'buyers': {'259202': ['6172', '11.092744167977509', '5882966000', 't90', '65692.77', '1', '45233000', '259202', '-', '-'], '329617': ['5962', '11.13579065237095', '5882966000', '8257027000', '68582.36', '1.0', '79100000', '329617', '-', '-'], '335612': ['9797', '10.475762897630313', '5882966000', '3819213000', '70891.8', '2', '90620000', '335612', '-', '-'], '438502': ['8238', '10.718159670209891', '5882966000', '6780288000', '45168.7', '1.0', '71320000', '438502', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 4, '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': [['5882966000', '3819213000', '0.7318104959338012', '2', '-', '-'], ['5882966000', '8074119000', '0.48192150471193307', '2', '-', '-'], ['5882966000', '8381704000', '0.07104987792392545', '5', '-', '-'], ['5882966000', '6815677000', '0.05254014735758508', '14', 'GAAL gradnje d.o.o.', '-']]}, 'dependency-buyer2bidder': {'buyers': [['5882966000', '5143284000', '0.4485373771934873', '14', 'CESTNO PODJETJE PTUJ D.D.', '-'], ['5882966000', '6815677000', '0.18110430959273402', '14', 'GAAL gradnje d.o.o.', '-'], ['5882966000', '5263433000', '0.0864810267208398', '14', 'ARRIVA, družba za prevoz potnikov, d.o.o.', '-'], ['5882966000', '5662257000', '0.051199985852249066', '14', 'LESNINA MG OPREMA podjetje za inženiring, d.d., Ljubljana', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'329617': ['2868', '-0.2948658772960154', '5882966000', '8257027000', '51000.0', '68582.36', '79100000', '329617', '-', '-'], '335612': ['49', '-0.16562937623125948', '5882966000', '3819213000', '60000.0', '70891.8', '90620000', '335612', '-', '-'], '438502': ['4070', '-0.40770249640743567', '5882966000', '6780288000', '30000.0', '45168.7', '71320000', '438502', '-', '-']}}, 'ratio-rev-per-employee-pos': {'buyers': {'259202': ['6172', '11.092744167977509', '5882966000', 't90', '65692.77', '1', '45233000', '259202', '-', '-'], '329617': ['5962', '11.13579065237095', '5882966000', '8257027000', '68582.36', '1.0', '79100000', '329617', '-', '-'], '335612': ['9797', '10.475762897630313', '5882966000', '3819213000', '70891.8', '2', '90620000', '335612', '-', '-'], '438502': ['8238', '10.718159670209891', '5882966000', '6780288000', '45168.7', '1.0', '71320000', '438502', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 4, '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': [['5882966000', '3819213000', '0.7318104959338012', '2', '-', '-'], ['5882966000', '8074119000', '0.48192150471193307', '2', '-', '-'], ['5882966000', '8381704000', '0.07104987792392545', '5', '-', '-'], ['5882966000', '6815677000', '0.05254014735758508', '14', 'GAAL gradnje d.o.o.', '-']]}, 'dependency-buyer2bidder': {'buyers': [['5882966000', '5143284000', '0.4485373771934873', '14', 'CESTNO PODJETJE PTUJ D.D.', '-'], ['5882966000', '6815677000', '0.18110430959273402', '14', 'GAAL gradnje d.o.o.', '-'], ['5882966000', '5263433000', '0.0864810267208398', '14', 'ARRIVA, družba za prevoz potnikov, d.o.o.', '-'], ['5882966000', '5662257000', '0.051199985852249066', '14', 'LESNINA MG OPREMA podjetje za inženiring, d.d., Ljubljana', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'329617': ['2868', '-0.2948658772960154', '5882966000', '8257027000', '51000.0', '68582.36', '79100000', '329617', '-', '-'], '335612': ['49', '-0.16562937623125948', '5882966000', '3819213000', '60000.0', '70891.8', '90620000', '335612', '-', '-'], '438502': ['4070', '-0.40770249640743567', '5882966000', '6780288000', '30000.0', '45168.7', '71320000', '438502', '-', '-']}}, 'ratio-rev-per-employee-pos': {'buyers': {'259202': ['6172', '11.092744167977509', '5882966000', 't90', '65692.77', '1', '45233000', '259202', '-', '-'], '329617': ['5962', '11.13579065237095', '5882966000', '8257027000', '68582.36', '1.0', '79100000', '329617', '-', '-'], '335612': ['9797', '10.475762897630313', '5882966000', '3819213000', '70891.8', '2', '90620000', '335612', '-', '-'], '438502': ['8238', '10.718159670209891', '5882966000', '6780288000', '45168.7', '1.0', '71320000', '438502', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 4, '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': [['5882966000', '3819213000', '0.7318104959338012', '2', '-', '-'], ['5882966000', '8074119000', '0.48192150471193307', '2', '-', '-'], ['5882966000', '8381704000', '0.07104987792392545', '5', '-', '-'], ['5882966000', '6815677000', '0.05254014735758508', '14', 'GAAL gradnje d.o.o.', '-']]}, 'dependency-buyer2bidder': {'buyers': [['5882966000', '5143284000', '0.4485373771934873', '14', 'CESTNO PODJETJE PTUJ D.D.', '-'], ['5882966000', '6815677000', '0.18110430959273402', '14', 'GAAL gradnje d.o.o.', '-'], ['5882966000', '5263433000', '0.0864810267208398', '14', 'ARRIVA, družba za prevoz potnikov, d.o.o.', '-'], ['5882966000', '5662257000', '0.051199985852249066', '14', 'LESNINA MG OPREMA podjetje za inženiring, d.d., Ljubljana', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'329617': ['2868', '-0.2948658772960154', '5882966000', '8257027000', '51000.0', '68582.36', '79100000', '329617', '-', '-'], '335612': ['49', '-0.16562937623125948', '5882966000', '3819213000', '60000.0', '70891.8', '90620000', '335612', '-', '-'], '438502': ['4070', '-0.40770249640743567', '5882966000', '6780288000', '30000.0', '45168.7', '71320000', '438502', '-', '-']}}, 'ratio-rev-per-employee-pos': {'buyers': {'259202': ['6172', '11.092744167977509', '5882966000', 't90', '65692.77', '1', '45233000', '259202', '-', '-'], '329617': ['5962', '11.13579065237095', '5882966000', '8257027000', '68582.36', '1.0', '79100000', '329617', '-', '-'], '335612': ['9797', '10.475762897630313', '5882966000', '3819213000', '70891.8', '2', '90620000', '335612', '-', '-'], '438502': ['8238', '10.718159670209891', '5882966000', '6780288000', '45168.7', '1.0', '71320000', '438502', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 4, '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': [['5882966000', '3819213000', '0.7318104959338012', '2', '-', '-'], ['5882966000', '8074119000', '0.48192150471193307', '2', '-', '-'], ['5882966000', '8381704000', '0.07104987792392545', '5', '-', '-'], ['5882966000', '6815677000', '0.05254014735758508', '14', 'GAAL gradnje d.o.o.', '-']]}, 'dependency-buyer2bidder': {'buyers': [['5882966000', '5143284000', '0.4485373771934873', '14', 'CESTNO PODJETJE PTUJ D.D.', '-'], ['5882966000', '6815677000', '0.18110430959273402', '14', 'GAAL gradnje d.o.o.', '-'], ['5882966000', '5263433000', '0.0864810267208398', '14', 'ARRIVA, družba za prevoz potnikov, d.o.o.', '-'], ['5882966000', '5662257000', '0.051199985852249066', '14', 'LESNINA MG OPREMA podjetje za inženiring, d.d., Ljubljana', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'329617': ['2868', '-0.2948658772960154', '5882966000', '8257027000', '51000.0', '68582.36', '79100000', '329617', '-', '-'], '335612': ['49', '-0.16562937623125948', '5882966000', '3819213000', '60000.0', '70891.8', '90620000', '335612', '-', '-'], '438502': ['4070', '-0.40770249640743567', '5882966000', '6780288000', '30000.0', '45168.7', '71320000', '438502', '-', '-']}}, 'ratio-rev-per-employee-pos': {'buyers': {'259202': ['6172', '11.092744167977509', '5882966000', 't90', '65692.77', '1', '45233000', '259202', '-', '-'], '329617': ['5962', '11.13579065237095', '5882966000', '8257027000', '68582.36', '1.0', '79100000', '329617', '-', '-'], '335612': ['9797', '10.475762897630313', '5882966000', '3819213000', '70891.8', '2', '90620000', '335612', '-', '-'], '438502': ['8238', '10.718159670209891', '5882966000', '6780288000', '45168.7', '1.0', '71320000', '438502', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 4, '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': [['5882966000', '3819213000', '0.7318104959338012', '2', '-', '-'], ['5882966000', '8074119000', '0.48192150471193307', '2', '-', '-'], ['5882966000', '8381704000', '0.07104987792392545', '5', '-', '-'], ['5882966000', '6815677000', '0.05254014735758508', '14', 'GAAL gradnje d.o.o.', '-']]}, 'dependency-buyer2bidder': {'buyers': [['5882966000', '5143284000', '0.4485373771934873', '14', 'CESTNO PODJETJE PTUJ D.D.', '-'], ['5882966000', '6815677000', '0.18110430959273402', '14', 'GAAL gradnje d.o.o.', '-'], ['5882966000', '5263433000', '0.0864810267208398', '14', 'ARRIVA, družba za prevoz potnikov, d.o.o.', '-'], ['5882966000', '5662257000', '0.051199985852249066', '14', 'LESNINA MG OPREMA podjetje za inženiring, d.d., Ljubljana', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'329617': ['2868', '-0.2948658772960154', '5882966000', '8257027000', '51000.0', '68582.36', '79100000', '329617', '-', '-'], '335612': ['49', '-0.16562937623125948', '5882966000', '3819213000', '60000.0', '70891.8', '90620000', '335612', '-', '-'], '438502': ['4070', '-0.40770249640743567', '5882966000', '6780288000', '30000.0', '45168.7', '71320000', '438502', '-', '-']}}, 'ratio-rev-per-employee-pos': {'buyers': {'259202': ['6172', '11.092744167977509', '5882966000', 't90', '65692.77', '1', '45233000', '259202', '-', '-'], '329617': ['5962', '11.13579065237095', '5882966000', '8257027000', '68582.36', '1.0', '79100000', '329617', '-', '-'], '335612': ['9797', '10.475762897630313', '5882966000', '3819213000', '70891.8', '2', '90620000', '335612', '-', '-'], '438502': ['8238', '10.718159670209891', '5882966000', '6780288000', '45168.7', '1.0', '71320000', '438502', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 4, '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': [['5882966000', '3819213000', '0.7318104959338012', '2', '-', '-'], ['5882966000', '8074119000', '0.48192150471193307', '2', '-', '-'], ['5882966000', '8381704000', '0.07104987792392545', '5', '-', '-'], ['5882966000', '6815677000', '0.05254014735758508', '14', 'GAAL gradnje d.o.o.', '-']]}, 'dependency-buyer2bidder': {'buyers': [['5882966000', '5143284000', '0.4485373771934873', '14', 'CESTNO PODJETJE PTUJ D.D.', '-'], ['5882966000', '6815677000', '0.18110430959273402', '14', 'GAAL gradnje d.o.o.', '-'], ['5882966000', '5263433000', '0.0864810267208398', '14', 'ARRIVA, družba za prevoz potnikov, d.o.o.', '-'], ['5882966000', '5662257000', '0.051199985852249066', '14', 'LESNINA MG OPREMA podjetje za inženiring, d.d., Ljubljana', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'329617': ['2868', '-0.2948658772960154', '5882966000', '8257027000', '51000.0', '68582.36', '79100000', '329617', '-', '-'], '335612': ['49', '-0.16562937623125948', '5882966000', '3819213000', '60000.0', '70891.8', '90620000', '335612', '-', '-'], '438502': ['4070', '-0.40770249640743567', '5882966000', '6780288000', '30000.0', '45168.7', '71320000', '438502', '-', '-']}}, 'ratio-rev-per-employee-pos': {'buyers': {'259202': ['6172', '11.092744167977509', '5882966000', 't90', '65692.77', '1', '45233000', '259202', '-', '-'], '329617': ['5962', '11.13579065237095', '5882966000', '8257027000', '68582.36', '1.0', '79100000', '329617', '-', '-'], '335612': ['9797', '10.475762897630313', '5882966000', '3819213000', '70891.8', '2', '90620000', '335612', '-', '-'], '438502': ['8238', '10.718159670209891', '5882966000', '6780288000', '45168.7', '1.0', '71320000', '438502', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 4, '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': [['5882966000', '3819213000', '0.7318104959338012', '2', '-', '-'], ['5882966000', '8074119000', '0.48192150471193307', '2', '-', '-'], ['5882966000', '8381704000', '0.07104987792392545', '5', '-', '-'], ['5882966000', '6815677000', '0.05254014735758508', '14', 'GAAL gradnje d.o.o.', '-']]}, 'dependency-buyer2bidder': {'buyers': [['5882966000', '5143284000', '0.4485373771934873', '14', 'CESTNO PODJETJE PTUJ D.D.', '-'], ['5882966000', '6815677000', '0.18110430959273402', '14', 'GAAL gradnje d.o.o.', '-'], ['5882966000', '5263433000', '0.0864810267208398', '14', 'ARRIVA, družba za prevoz potnikov, d.o.o.', '-'], ['5882966000', '5662257000', '0.051199985852249066', '14', 'LESNINA MG OPREMA podjetje za inženiring, d.d., Ljubljana', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'329617': ['2868', '-0.2948658772960154', '5882966000', '8257027000', '51000.0', '68582.36', '79100000', '329617', '-', '-'], '335612': ['49', '-0.16562937623125948', '5882966000', '3819213000', '60000.0', '70891.8', '90620000', '335612', '-', '-'], '438502': ['4070', '-0.40770249640743567', '5882966000', '6780288000', '30000.0', '45168.7', '71320000', '438502', '-', '-']}}, 'ratio-rev-per-employee-pos': {'buyers': {'259202': ['6172', '11.092744167977509', '5882966000', 't90', '65692.77', '1', '45233000', '259202', '-', '-'], '329617': ['5962', '11.13579065237095', '5882966000', '8257027000', '68582.36', '1.0', '79100000', '329617', '-', '-'], '335612': ['9797', '10.475762897630313', '5882966000', '3819213000', '70891.8', '2', '90620000', '335612', '-', '-'], '438502': ['8238', '10.718159670209891', '5882966000', '6780288000', '45168.7', '1.0', '71320000', '438502', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 4, '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': [['5882966000', '3819213000', '0.7318104959338012', '2', '-', '-'], ['5882966000', '8074119000', '0.48192150471193307', '2', '-', '-'], ['5882966000', '8381704000', '0.07104987792392545', '5', '-', '-'], ['5882966000', '6815677000', '0.05254014735758508', '14', 'GAAL gradnje d.o.o.', '-']]}, 'dependency-buyer2bidder': {'buyers': [['5882966000', '5143284000', '0.4485373771934873', '14', 'CESTNO PODJETJE PTUJ D.D.', '-'], ['5882966000', '6815677000', '0.18110430959273402', '14', 'GAAL gradnje d.o.o.', '-'], ['5882966000', '5263433000', '0.0864810267208398', '14', 'ARRIVA, družba za prevoz potnikov, d.o.o.', '-'], ['5882966000', '5662257000', '0.051199985852249066', '14', 'LESNINA MG OPREMA podjetje za inženiring, d.d., Ljubljana', '-']]}, 'ratio-assessed-final-bdg-neg': {'buyers': {'329617': ['2868', '-0.2948658772960154', '5882966000', '8257027000', '51000.0', '68582.36', '79100000', '329617', '-', '-'], '335612': ['49', '-0.16562937623125948', '5882966000', '3819213000', '60000.0', '70891.8', '90620000', '335612', '-', '-'], '438502': ['4070', '-0.40770249640743567', '5882966000', '6780288000', '30000.0', '45168.7', '71320000', '438502', '-', '-']}}, 'ratio-rev-per-employee-pos': {'buyers': {'259202': ['6172', '11.092744167977509', '5882966000', 't90', '65692.77', '1', '45233000', '259202', '-', '-'], '329617': ['5962', '11.13579065237095', '5882966000', '8257027000', '68582.36', '1.0', '79100000', '329617', '-', '-'], '335612': ['9797', '10.475762897630313', '5882966000', '3819213000', '70891.8', '2', '90620000', '335612', '-', '-'], '438502': ['8238', '10.718159670209891', '5882966000', '6780288000', '45168.7', '1.0', '71320000', '438502', '-', '-']}}}, 'companyProfileDict': {}, 'fundsReceived': 0.0, 'issuedFunds': 0.0, 'issuedTenders': {}, 'issuedTendersChartData': {'byTenderNum': {}, 'byValue': {}}, 'numOfAnomalies': 4, 'wonTenders': {}, 'wonTendersChartData': {'byTenderNum': {}, 'byValue': {}}}}) |
|