Feature: Document Template Packages

Document Templates can be grouped into a package and generated on-demand
in the same was as individual document templates. Packages can be
generated in bulk.
This commit is contained in:
Gary Sharp
2016-11-14 01:21:23 +11:00
parent ef8df08e29
commit aca037ecf8
75 changed files with 8008 additions and 2078 deletions
@@ -0,0 +1,31 @@
using Disco.Models.Repository;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Disco.Models.Services.Documents
{
public class DocumentTemplatePackage
{
[Key, StringLength(30), Required]
public string Id { get; set; }
[StringLength(250), Required]
public string Description { get; set; }
[Required]
public AttachmentTypes Scope { get; set; }
public List<string> JobSubTypes { get; set; }
public List<string> DocumentTemplateIds { get; set; }
[DataType(DataType.MultilineText)]
public string FilterExpression { get; set; }
[DataType(DataType.MultilineText)]
public string OnGenerateExpression { get; set; }
public bool IsHidden { get; set; }
/// <summary>
/// Indicates blank pages should be added so that documents will be separated when duplex printed.
/// </summary>
public bool InsertBlankPages { get; set; }
}
}