ustva, Kundenblatt, ncts, etc.

This commit is contained in:
2025-08-18 13:27:51 +02:00
parent 66cc884568
commit 66dea78e9d
9 changed files with 178 additions and 77 deletions

View File

@@ -991,6 +991,9 @@ Public Class cATEZ_NCTS_IN
R("page_count") = checkNulInt(invoice.IntOf("page_count"))
R("total_pages") = checkNulInt(jsonResult.IntOf("total_pages"))
R("start_page") = checkNulInt(invoice.IntOf("start_page"))
R("end_page") = checkNulInt(invoice.IntOf("end_page"))
dt.Rows.Add(R)
j = j + 1
@@ -1136,7 +1139,9 @@ Public Class cATEZ_NCTS_IN
dt.Columns.Add("page_count", GetType(Integer))
dt.Columns.Add("total_pages", GetType(Integer))
dt.Columns.Add("invoice_id", GetType(String))
dt.Columns.Add("invoice_date", GetType(String))
dt.Columns.Add("invoice_date", GetType(String))
dt.Columns.Add("start_page", GetType(Integer))
dt.Columns.Add("end_page", GetType(Integer))
End If