spartaxx.businessmodels 1.0.335 → 1.0.336
Sign up to get free protection for your applications and to get access to all the features.
package/Common/CommonModel.ts
CHANGED
@@ -16,10 +16,11 @@ import { SentEmailServiceParam } from "./SentEmailServiceParam";
|
|
16
16
|
import { TemplateContents } from "./TemplateContents";
|
17
17
|
import { AppConfigHub, createDefaultAppConfigHub } from "./AppConfigHub";
|
18
18
|
import { FileDownloadParam } from "./FileDownloadPara";
|
19
|
+
import { PwProcessDocumentDetails } from "./PwProcessDocumentDetails";
|
19
20
|
|
20
21
|
export {
|
21
22
|
ExcelExport, FileGenConfig, GeneratePdfServiceParams, PdfExport, PuppeteerOptionsMargin, PuppeteerOptions,
|
22
23
|
RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig,
|
23
24
|
ManageSchedulers, APICommonResponse, SentEmailServiceParam, TemplateContents,
|
24
|
-
AppConfigHub, createDefaultAppConfigHub, FileDownloadParam
|
25
|
+
AppConfigHub, createDefaultAppConfigHub, FileDownloadParam, PwProcessDocumentDetails
|
25
26
|
};
|
@@ -0,0 +1,21 @@
|
|
1
|
+
export interface PwProcessDocumentDetails {
|
2
|
+
FileCabinetId: number;
|
3
|
+
BatchCode: string;
|
4
|
+
DocumentType: string;
|
5
|
+
ClientNumber: string;
|
6
|
+
AccountNumber: string;
|
7
|
+
TaxYear: number;
|
8
|
+
County: string;
|
9
|
+
InvoiceNumber: string;
|
10
|
+
PaymentMethod: string;
|
11
|
+
PaymentAmount: number;
|
12
|
+
PaymentPosted: number;
|
13
|
+
PaymentPostedDate: Date;
|
14
|
+
LandUseCode: string;
|
15
|
+
DocumentStatus: string;
|
16
|
+
DocumentRouteTo: string;
|
17
|
+
DocumentPath: string;
|
18
|
+
CreatedApp: string;
|
19
|
+
UserId: number;
|
20
|
+
PW_ProcessDocumentId: number;
|
21
|
+
}
|