From 7406ccdd54a90d6c15be482e8cb8118da9208334 Mon Sep 17 00:00:00 2001 From: Henning Leutz <leutz@pcsg.de> Date: Wed, 31 Jul 2024 11:25:24 +0200 Subject: [PATCH] fix: remove articles at invoice panel, not needed --- bin/backend/controls/panels/Invoice.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/backend/controls/panels/Invoice.js b/bin/backend/controls/panels/Invoice.js index be11e56..9a2e91f 100644 --- a/bin/backend/controls/panels/Invoice.js +++ b/bin/backend/controls/panels/Invoice.js @@ -232,6 +232,7 @@ define('package/quiqqer/invoice/bin/backend/controls/panels/Invoice', [ } }); + /* this.addCategory({ icon: 'fa fa-list', name: 'articles', @@ -241,6 +242,7 @@ define('package/quiqqer/invoice/bin/backend/controls/panels/Invoice', [ onClick: this.openArticles } }); + */ this.addCategory({ icon: 'fa fa-money', @@ -722,8 +724,10 @@ define('package/quiqqer/invoice/bin/backend/controls/panels/Invoice', [ /** * open articles + * @deprecated */ openArticles: function() { + return; const self = this; this.Loader.show(); -- GitLab