spartaxx.businessmodels 1.0.41 → 1.0.43
Sign up to get free protection for your applications and to get access to all the features.
- package/Common/ExcelExport.ts +5 -7
- package/Protest/PTBexarExcel.ts +12 -0
- package/Protest/ProtestHB201RequestLetter.js +2 -0
- package/Protest/ProtestHB201RequestLetter.ts +15 -0
- package/Protest/ProtestModels.ts +4 -1
- package/Protest/ProtestPTFayette.js +2 -0
- package/Protest/ProtestPTFayette.ts +18 -0
- package/package.json +1 -1
- package/Common/ExportExcelConfig.ts +0 -6
- /package/{Common/ExportExcelConfig.js → Protest/PTBexarExcel.js} +0 -0
package/Common/ExcelExport.ts
CHANGED
@@ -1,8 +1,6 @@
|
|
1
|
-
import { ExportExcelConfig } from "./ExportExcelConfig";
|
2
|
-
|
3
1
|
export interface ExcelExport {
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
}
|
2
|
+
data: any[];
|
3
|
+
columnsList: any[];
|
4
|
+
filePath: string;
|
5
|
+
sheetName?: string;
|
6
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
export interface PTBexarExcel {
|
2
|
+
TaxYear: number;
|
3
|
+
ProtestFilingDate: string;
|
4
|
+
AccountNumber: string;
|
5
|
+
PropertyAddress: string;
|
6
|
+
LegalDescription: string;
|
7
|
+
CADLegalName: string;
|
8
|
+
LUC: string;
|
9
|
+
AgentCode: string;
|
10
|
+
HB201: string;
|
11
|
+
MarketEquityOther: string;
|
12
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
export interface ProtestHB201RequestLetter {
|
2
|
+
DocDate: string;
|
3
|
+
TaxYear: number;
|
4
|
+
AccountListingTable: AccountListingTable[];
|
5
|
+
}
|
6
|
+
|
7
|
+
export interface AccountListingTableHeaders {
|
8
|
+
AccountNumber: string;
|
9
|
+
Address: string;
|
10
|
+
}
|
11
|
+
|
12
|
+
export interface AccountListingTable {
|
13
|
+
Headers: AccountListingTableHeaders[];
|
14
|
+
Rows: string[];
|
15
|
+
}
|
package/Protest/ProtestModels.ts
CHANGED
@@ -2,5 +2,8 @@ import { ProtestDocuments } from "./ProtestDocuments";
|
|
2
2
|
import { ProtestHistoryInfo } from "./ProtestHistoryInfo";
|
3
3
|
import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
|
4
4
|
import { ProtestingAccounts } from "./ProtestingAccounts";
|
5
|
+
import { ProtestPTFayette } from "./ProtestPTFayette";
|
6
|
+
import { ProtestHB201RequestLetter } from "./ProtestHB201RequestLetter";
|
7
|
+
import { PTBexarExcel } from "./PTBexarExcel";
|
5
8
|
|
6
|
-
export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts };
|
9
|
+
export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts, ProtestPTFayette, ProtestHB201RequestLetter, PTBexarExcel };
|
@@ -0,0 +1,18 @@
|
|
1
|
+
export interface ProtestPTFayette {
|
2
|
+
DocDate: string;
|
3
|
+
NoOfAccounts:number,
|
4
|
+
TaxYear:number;
|
5
|
+
AccountListingTable: AccountListingTable[];
|
6
|
+
}
|
7
|
+
|
8
|
+
export interface AccountListingTableHeaders {
|
9
|
+
AccountNumber: string;
|
10
|
+
Address: string;
|
11
|
+
LegalDescription: string;
|
12
|
+
CADLegalName: string;
|
13
|
+
}
|
14
|
+
|
15
|
+
export interface AccountListingTable {
|
16
|
+
Headers: AccountListingTableHeaders[];
|
17
|
+
Rows: string[];
|
18
|
+
}
|
package/package.json
CHANGED
File without changes
|