Disable HBCI support

It does not work currently and it raises security and legal questions
that need to be answered first.
This commit is contained in:
Raphael Michel
2016-06-13 09:18:44 +02:00
parent f4cefa9ad4
commit 1bdf332afd
2 changed files with 4 additions and 2 deletions

View File

@@ -25,6 +25,7 @@
</form>
</div>
</div>
<!--
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{% trans "HBCI import" %}</h3>
@@ -57,4 +58,5 @@
{% endif %}
</div>
</div>
-->
{% endblock %}

View File

@@ -38,8 +38,8 @@ class ImportView(EventPermissionRequiredMixin, TemplateView):
permission = 'can_change_orders'
def post(self, *args, **kwargs):
if 'hbci_server' in self.request.POST:
return self.process_hbci()
# if 'hbci_server' in self.request.POST:
# return self.process_hbci()
if ('file' in self.request.FILES and 'csv' in self.request.FILES.get('file').name.lower()) \
or 'amount' in self.request.POST: