Skip to content
Code-Schnipsel Gruppen Projekte
Bestätigt Commit 5e254675 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix(ProcessGrid): hide uuids option

Übergeordneter b6fa95a0
Keine zugehörigen Branchen gefunden
Keine zugehörigen Tags gefunden
2 Merge Requests!140Update 'next-4.x' with latest changes from 'main',!112Next 3.x
......@@ -28,7 +28,8 @@ define('package/quiqqer/erp/bin/backend/controls/process/ProcessGrid', [
options: {
globalProcessId: false,
entityHash: false
entityHash: false,
hideUuids: []
},
initialize: function(options) {
......@@ -95,9 +96,15 @@ define('package/quiqqer/erp/bin/backend/controls/process/ProcessGrid', [
QUIAjax.get('package_quiqqer_erp_ajax_process_getEntities', (result) => {
const data = [];
console.log(result);
const hideUuids = this.getAttribute('hideUuids') || [];
result.forEach((entry) => {
console.log(hideUuids);
if (hideUuids.indexOf(entry.uuid) !== -1) {
return;
}
const Type = new QUIButton({
events: {
click: this.$click
......
0% Lade oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren