Update 20241118

This commit is contained in:
Stefan Hutter
2024-11-18 15:21:58 +01:00
parent 69de21ca51
commit 194a97416c
120 changed files with 635 additions and 61 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Security.Permissions;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;
@@ -33,8 +34,23 @@ namespace Model
public string Direct_to_Archive { get; set; }
public string Result_as_PDF { get; set; }
public bool Kopfzeile_generieren { get; set; } = false;
public bool Barcode { get; set; }
public string barcode_zusatz { get; set; } = "";
public int barcode_top { get; set; } = 0;
public int barcode_left { get; set; } = 0;
public int barcode_width { get; set; }=0;
public int barcode_height { get; set; } = 0;
public int barcode_horizontal { get; set; } = 0;
public string barcode_font { get; set; } = "Bar 25i c HR";
public int barcode_fontsize { get; set; } = 26;
public string Zusatz_Font { get; set; } = "Arial";
public int Zusatz_FontSize { get; set; } = 8;
public bool Barcode { get; set; }
public bool PrintLogo { get; set; } = false;
public string UseEDOKA_Values { get; set; }

View File

@@ -13,7 +13,9 @@ namespace Model
DokumentSpäterBearbeiten,
DokumentAlsPDF,
DokumentAlsPDFArchivieren,
DokumentPreview
DokumentPreview,
ErstellungInOffice
}
public class clsdocgendata
@@ -45,5 +47,7 @@ namespace Model
public string logo { get; set; } = "";
public DataTable dokumentwerte { get; set; }
public bool erstelling_in_office { get; set; } = false;
}
}

Binary file not shown.

Binary file not shown.