Skip to content
Snippets Groups Projects
Commit 8963b47a authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #212 dnd in doctype tree

parent 08d3608e
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,7 @@ export class DoctypesAdministrationComponent implements OnInit {
loading: boolean = false;
creationMode: any = false;
newSecondLevel: any = false;
newFirstLevel: any = false;
displayedColumns = ['label','use', 'mandatory', 'column'];
dataSource = new MatTableDataSource(this.currentType.indexes);
......@@ -72,8 +73,35 @@ export class DoctypesAdministrationComponent implements OnInit {
'name': 'proton',
'responsive': true
},
'multiple': false,
'data': this.doctypes,
"check_callback": true
"check_callback": function (operation: any, node: any, node_parent: any, node_position: any, more: any) {
if (operation == 'move_node') {
if(typeof more.ref == "undefined"){
return true;
}
if(!isNaN(parseFloat(node.id)) && isFinite(node.id) && more.ref.id.indexOf("secondlevel_")==0){
// Doctype in secondLevel
return true;
} else if(node.id.indexOf("secondlevel_")==0 && more.ref.id.indexOf("firstlevel_")==0){
// SecondLevel in FirstLevel
return true;
} else {
return false;
}
}
}
},
"dnd": {
is_draggable: function (nodes: any) {
this.secondLevelSelected = nodes[0].id.replace("secondlevel_", "");
if((!isNaN(parseFloat(this.secondLevelSelected)) && isFinite(this.secondLevelSelected)) ||
(!isNaN(parseFloat(nodes[0].id)) && isFinite(nodes[0].id))){
return true;
} else {
return false;
}
}
},
"plugins": ["search", "dnd", "contextmenu"],
});
......@@ -131,7 +159,7 @@ export class DoctypesAdministrationComponent implements OnInit {
this.saveType();
}
} else {
alert(this.lang.cantMoveDoctype)
alert(this.lang.cantMoveDoctype);
}
} else {
alert(this.lang.noDoctypeSelected);
......@@ -147,9 +175,27 @@ export class DoctypesAdministrationComponent implements OnInit {
this.currentFirstLevel = false;
this.currentType = false;
this.http.get(this.coreUrl + "rest/doctypes/secondLevel/" + data.node.original.doctypes_second_level_id )
.subscribe((data: any) => {
this.currentSecondLevel = data['secondLevel'];
this.firstLevels = data['firstLevel'];
.subscribe((dataValue: any) => {
this.currentSecondLevel = dataValue['secondLevel'];
this.firstLevels = dataValue['firstLevel'];
if(move){
if(this.currentSecondLevel){
this.newFirstLevel = data.parent.replace("firstlevel_", "");
// Is integer
if(!isNaN(parseFloat(this.newFirstLevel)) && isFinite(this.newFirstLevel)){
if (this.currentSecondLevel.doctypes_first_level_id != this.newFirstLevel) {
this.currentSecondLevel.doctypes_first_level_id = this.newFirstLevel;
this.saveSecondLevel();
}
} else {
alert(this.lang.cantMoveFirstLevel);
}
} else {
alert(this.lang.noFirstLevelSelected);
}
}
}, (err) => {
this.notify.error(err.error.errors);
});
......@@ -391,4 +437,4 @@ export class DoctypesAdministrationRedirectModalComponent {
constructor(public http: HttpClient, @Inject(MAT_DIALOG_DATA) public data: any, public dialogRef: MatDialogRef<DoctypesAdministrationRedirectModalComponent>) {
}
}
\ No newline at end of file
}
......@@ -373,6 +373,8 @@ export const LANG_EN = {
"toolTipDeleteDoctype" : "If mails are attached to this type of document, a reassignment screen will be displayed.",
"cantMoveDoctype" : "The document type can only be moved in a sub-folder",
"noDoctypeSelected" : "No document type selected",
"cantMoveFirstLevel" : "Sub-folder can only be moved in folder",
"noFirstLevelSelected" : "No sub-folder selected",
"tooltipPriorityDelay" : "Use this processing time instead of the one defined in the document type",
"tooltipPriorityDefault" : "Set this priority by default when saving a mail",
"defaultPriority" : "Default priority",
......
......@@ -398,6 +398,8 @@ export const LANG_FR = {
"toolTipDeleteDoctype" : "Si des courriers sont rattachés à ce type de document, un écran de réaffectation s'affichera",
"cantMoveDoctype" : "Le type de document peut uniquement être déplacé dans une sous-chemise",
"noDoctypeSelected" : "Aucun type de document sélectionné",
"cantMoveFirstLevel" : "La sous-chemise peut uniquement être déplacée dans une chemise",
"noFirstLevelSelected" : "Aucune sous-chemise sélectionnée",
"tooltipPriorityDelay" : "Utiliser ce délai de traitement au lieu de celui défini dans le type document",
"tooltipPriorityDefault" : "Positionner cette priorité par défaut lors de l'enregistrement d'un courrier",
"defaultPriority" : "Priorité par défaut",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment