mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Working to backend except tags
This commit is contained in:
parent
24c53e78a7
commit
da3695e3a4
@ -107,11 +107,11 @@ export class BulkEditorComponent {
|
|||||||
this.setTags.emit(tags)
|
this.setTags.emit(tags)
|
||||||
}
|
}
|
||||||
|
|
||||||
applyCorrespondent(selectedCorrespondent: ObjectWithId[]) {
|
applyCorrespondent(selectedCorrespondent: PaperlessCorrespondent[]) {
|
||||||
this.setCorrespondent.emit(selectedCorrespondent)
|
this.setCorrespondent.emit(selectedCorrespondent)
|
||||||
}
|
}
|
||||||
|
|
||||||
applyDocumentType(selectedDocumentType: ObjectWithId[]) {
|
applyDocumentType(selectedDocumentType: PaperlessDocumentType[]) {
|
||||||
this.setDocumentType.emit(selectedDocumentType)
|
this.setDocumentType.emit(selectedDocumentType)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,6 +15,9 @@ import { FilterEditorComponent } from './filter-editor/filter-editor.component';
|
|||||||
import { ConfirmDialogComponent } from '../common/confirm-dialog/confirm-dialog.component';
|
import { ConfirmDialogComponent } from '../common/confirm-dialog/confirm-dialog.component';
|
||||||
import { SelectDialogComponent } from '../common/select-dialog/select-dialog.component';
|
import { SelectDialogComponent } from '../common/select-dialog/select-dialog.component';
|
||||||
import { SaveViewConfigDialogComponent } from './save-view-config-dialog/save-view-config-dialog.component';
|
import { SaveViewConfigDialogComponent } from './save-view-config-dialog/save-view-config-dialog.component';
|
||||||
|
import { PaperlessTag } from 'src/app/data/paperless-tag';
|
||||||
|
import { PaperlessCorrespondent } from 'src/app/data/paperless-correspondent';
|
||||||
|
import { PaperlessDocumentType } from 'src/app/data/paperless-document-type';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-document-list',
|
selector: 'app-document-list',
|
||||||
@ -139,17 +142,18 @@ export class DocumentListComponent implements OnInit {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
bulkSetCorrespondent(correspondent) {
|
bulkSetCorrespondent(correspondent: PaperlessCorrespondent[]) {
|
||||||
console.log(correspondent);
|
if (correspondent.length > 0) correspondent = correspondent.shift()
|
||||||
|
else correspondent = undefined
|
||||||
|
|
||||||
let modal = this.modalService.open(SelectDialogComponent, {backdrop: 'static'})
|
let modal = this.modalService.open(ConfirmDialogComponent, {backdrop: 'static'})
|
||||||
modal.componentInstance.title = "Select correspondent"
|
modal.componentInstance.title = "Confirm correspondent assignment"
|
||||||
modal.componentInstance.message = `Select the correspondent you wish to assign to ${this.list.selected.size} selected document(s):`
|
let messageFragment = correspondent ? `assign the correspondent ${correspondent.name} to` : `remove all correspondents from`
|
||||||
this.correspondentService.listAll().subscribe(response => {
|
modal.componentInstance.message = `This operation will ${messageFragment} all ${this.list.selected.size} selected document(s).`
|
||||||
modal.componentInstance.objects = response.results
|
modal.componentInstance.btnClass = "btn-warning"
|
||||||
})
|
modal.componentInstance.btnCaption = "Confirm"
|
||||||
modal.componentInstance.selectClicked.subscribe(selectedId => {
|
modal.componentInstance.confirmClicked.subscribe(() => {
|
||||||
this.executeBulkOperation('set_correspondent', {"correspondent": selectedId}).subscribe(
|
this.executeBulkOperation('set_correspondent', {"correspondent": correspondent ? correspondent.id : null}).subscribe(
|
||||||
response => {
|
response => {
|
||||||
modal.close()
|
modal.close()
|
||||||
}
|
}
|
||||||
@ -157,28 +161,18 @@ export class DocumentListComponent implements OnInit {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
bulkRemoveCorrespondent() {
|
bulkSetDocumentType(documentType: PaperlessDocumentType[]) {
|
||||||
|
if (documentType.length > 0) documentType = documentType.shift()
|
||||||
|
else documentType = undefined
|
||||||
|
|
||||||
let modal = this.modalService.open(ConfirmDialogComponent, {backdrop: 'static'})
|
let modal = this.modalService.open(ConfirmDialogComponent, {backdrop: 'static'})
|
||||||
modal.componentInstance.title = "Remove correspondent"
|
modal.componentInstance.title = "Confirm Document Type assignment"
|
||||||
modal.componentInstance.message = `This operation will remove the correspondent from all ${this.list.selected.size} selected document(s).`
|
let messageFragment = documentType ? `assign the document type ${documentType.name} to` : `remove all document types from`
|
||||||
|
modal.componentInstance.message = `This operation will ${messageFragment} all ${this.list.selected.size} selected document(s).`
|
||||||
|
modal.componentInstance.btnClass = "btn-warning"
|
||||||
|
modal.componentInstance.btnCaption = "Confirm"
|
||||||
modal.componentInstance.confirmClicked.subscribe(() => {
|
modal.componentInstance.confirmClicked.subscribe(() => {
|
||||||
this.executeBulkOperation('set_correspondent', {"correspondent": null}).subscribe(r => {
|
this.executeBulkOperation('set_document_type', {"document_type": documentType ? documentType.id : null}).subscribe(
|
||||||
modal.close()
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
bulkSetDocumentType(documentType) {
|
|
||||||
console.log();
|
|
||||||
|
|
||||||
let modal = this.modalService.open(SelectDialogComponent, {backdrop: 'static'})
|
|
||||||
modal.componentInstance.title = "Select document type"
|
|
||||||
modal.componentInstance.message = `Select the document type you wish to assign to ${this.list.selected.size} selected document(s):`
|
|
||||||
this.documentTypeService.listAll().subscribe(response => {
|
|
||||||
modal.componentInstance.objects = response.results
|
|
||||||
})
|
|
||||||
modal.componentInstance.selectClicked.subscribe(selectedId => {
|
|
||||||
this.executeBulkOperation('set_document_type', {"document_type": selectedId}).subscribe(
|
|
||||||
response => {
|
response => {
|
||||||
modal.close()
|
modal.close()
|
||||||
}
|
}
|
||||||
@ -186,20 +180,9 @@ export class DocumentListComponent implements OnInit {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
bulkRemoveDocumentType() {
|
|
||||||
let modal = this.modalService.open(ConfirmDialogComponent, {backdrop: 'static'})
|
|
||||||
modal.componentInstance.title = "Remove document type"
|
|
||||||
modal.componentInstance.message = `This operation will remove the document type from all ${this.list.selected.size} selected document(s).`
|
|
||||||
modal.componentInstance.confirmClicked.subscribe(() => {
|
|
||||||
this.executeBulkOperation('set_document_type', {"document_type": null}).subscribe(r => {
|
|
||||||
modal.close()
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
bulkSetTags(tags) {
|
bulkSetTags(tags) {
|
||||||
console.log('bulkSetTags', tags);
|
console.log('bulkSetTags', tags);
|
||||||
|
// TODO:
|
||||||
}
|
}
|
||||||
|
|
||||||
bulkAddTag() {
|
bulkAddTag() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user