Add option to skip inbox tags in consumption templates

This commit is contained in:
Brandon Rothweiler
2023-12-30 02:51:00 +00:00
parent 05e294fc81
commit 9e50b43b0b
10 changed files with 51 additions and 1 deletions

View File

@@ -32,6 +32,7 @@
<div class="col">
<pngx-input-text i18n-title title="Assign title" formControlName="assign_title" i18n-hint hint="Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>." [error]="error?.assign_title"></pngx-input-text>
<pngx-input-tags [allowCreate]="false" i18n-title title="Assign tags" formControlName="assign_tags"></pngx-input-tags>
<pngx-input-check i18n-title title="Skip assigning inbox tag(s)" formControlName="skip_inbox"></pngx-input-check>
<pngx-input-select i18n-title title="Assign document type" [items]="documentTypes" [allowNull]="true" formControlName="assign_document_type"></pngx-input-select>
<pngx-input-select i18n-title title="Assign correspondent" [items]="correspondents" [allowNull]="true" formControlName="assign_correspondent"></pngx-input-select>
<pngx-input-select i18n-title title="Assign storage path" [items]="storagePaths" [allowNull]="true" formControlName="assign_storage_path"></pngx-input-select>

View File

@@ -107,6 +107,7 @@ export class ConsumptionTemplateEditDialogComponent extends EditDialogComponent<
sources: new FormControl([]),
assign_title: new FormControl(null),
assign_tags: new FormControl([]),
skip_inbox: new FormControl(false),
assign_owner: new FormControl(null),
assign_document_type: new FormControl(null),
assign_correspondent: new FormControl(null),