taxtank-core 0.9.2 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/taxtank-core.umd.js +21 -122
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/interfaces/exportable.interface.js +2 -0
- package/esm2015/lib/interfaces/updatable.interface.js +2 -0
- package/esm2015/lib/models/export/export-format.enum.js +6 -0
- package/esm2015/lib/models/transaction/transaction.js +3 -3
- package/esm2015/lib/services/pdf/pdf.service.js +2 -42
- package/esm2015/lib/services/xlsx/xlsx.service.js +13 -20
- package/esm2015/public-api.js +4 -3
- package/fesm2015/taxtank-core.js +22 -118
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/interfaces/exportable.interface.d.ts +9 -0
- package/lib/interfaces/updatable.interface.d.ts +8 -0
- package/lib/models/export/export-format.enum.d.ts +4 -0
- package/lib/services/pdf/pdf.service.d.ts +1 -14
- package/lib/services/xlsx/xlsx.service.d.ts +4 -5
- package/package.json +1 -1
- package/public-api.d.ts +3 -2
- package/esm2015/lib/models/data-table/data-table-column.js +0 -13
- package/esm2015/lib/models/data-table/data-table.js +0 -42
- package/lib/models/data-table/data-table-column.d.ts +0 -20
- package/lib/models/data-table/data-table.d.ts +0 -24
package/fesm2015/taxtank-core.js
CHANGED
|
@@ -4543,10 +4543,10 @@ class Transaction extends Transaction$1 {
|
|
|
4543
4543
|
return this.operation === TransactionOperationEnum.TRANSFER;
|
|
4544
4544
|
}
|
|
4545
4545
|
get debit() {
|
|
4546
|
-
return this.isDebit() ? Math.abs(this.amount) :
|
|
4546
|
+
return this.isDebit() ? Math.abs(this.amount) : 0;
|
|
4547
4547
|
}
|
|
4548
4548
|
get credit() {
|
|
4549
|
-
return this.isCredit() ? Math.abs(this.amount) :
|
|
4549
|
+
return this.isCredit() ? Math.abs(this.amount) : 0;
|
|
4550
4550
|
}
|
|
4551
4551
|
/**
|
|
4552
4552
|
* Get value of transaction metadata field
|
|
@@ -5208,61 +5208,6 @@ var AlphabetColorsEnum;
|
|
|
5208
5208
|
AlphabetColorsEnum["Z"] = "#E3C9CE";
|
|
5209
5209
|
})(AlphabetColorsEnum || (AlphabetColorsEnum = {}));
|
|
5210
5210
|
|
|
5211
|
-
/**
|
|
5212
|
-
* Class to generate data-table structure based on provided collection.
|
|
5213
|
-
* Use to work with HTML/PDF/XLSX tables
|
|
5214
|
-
*/
|
|
5215
|
-
class DataTable {
|
|
5216
|
-
constructor(collection, columns, caption, footerCaption) {
|
|
5217
|
-
this.caption = caption;
|
|
5218
|
-
this.columns = columns;
|
|
5219
|
-
this.setRows(collection);
|
|
5220
|
-
if (footerCaption) {
|
|
5221
|
-
this.setFooterRow(collection, footerCaption);
|
|
5222
|
-
}
|
|
5223
|
-
}
|
|
5224
|
-
setRows(collection) {
|
|
5225
|
-
this.rows = collection.items.map((item) => {
|
|
5226
|
-
// parse table columns to return items based on column properties
|
|
5227
|
-
return this.columns.map((column) => {
|
|
5228
|
-
// if the pipe is provided - transform the return value
|
|
5229
|
-
if (column.pipe) {
|
|
5230
|
-
return column.pipe.transform(item[column.key]);
|
|
5231
|
-
}
|
|
5232
|
-
return (item[column.key] ? item[column.key] : '-').toString();
|
|
5233
|
-
});
|
|
5234
|
-
});
|
|
5235
|
-
}
|
|
5236
|
-
setFooterRow(collection, footerCaption) {
|
|
5237
|
-
this.footerRow = this.columns.map((column, index) => {
|
|
5238
|
-
if (index === 0) {
|
|
5239
|
-
return footerCaption.toString();
|
|
5240
|
-
}
|
|
5241
|
-
if (!column.total) {
|
|
5242
|
-
return '';
|
|
5243
|
-
}
|
|
5244
|
-
const totalValue = collection.items.reduce((sum, item) => {
|
|
5245
|
-
// check if current collection item has value. If not - don't add it to the sum
|
|
5246
|
-
return item[column.key] !== null ? sum + Number(item[column.key]) : sum;
|
|
5247
|
-
}, null);
|
|
5248
|
-
return (totalValue !== null && totalValue !== void 0 ? totalValue : '-').toString();
|
|
5249
|
-
});
|
|
5250
|
-
}
|
|
5251
|
-
}
|
|
5252
|
-
|
|
5253
|
-
class DataTableColumn {
|
|
5254
|
-
constructor(name, key, total, pipe) {
|
|
5255
|
-
/**
|
|
5256
|
-
* Flag that shows should the column be in the total calculation or not
|
|
5257
|
-
*/
|
|
5258
|
-
this.total = false;
|
|
5259
|
-
this.name = name;
|
|
5260
|
-
this.key = key;
|
|
5261
|
-
this.total = total;
|
|
5262
|
-
this.pipe = pipe;
|
|
5263
|
-
}
|
|
5264
|
-
}
|
|
5265
|
-
|
|
5266
5211
|
var DepreciationLvpRateEnum;
|
|
5267
5212
|
(function (DepreciationLvpRateEnum) {
|
|
5268
5213
|
DepreciationLvpRateEnum[DepreciationLvpRateEnum["FIRST_YEAR"] = 0.1875] = "FIRST_YEAR";
|
|
@@ -5473,6 +5418,12 @@ var AppEventTypeEnum;
|
|
|
5473
5418
|
AppEventTypeEnum[AppEventTypeEnum["VEHICLE_CLAIM_CREATED"] = 37] = "VEHICLE_CLAIM_CREATED";
|
|
5474
5419
|
})(AppEventTypeEnum || (AppEventTypeEnum = {}));
|
|
5475
5420
|
|
|
5421
|
+
var ExportFormatEnum;
|
|
5422
|
+
(function (ExportFormatEnum) {
|
|
5423
|
+
ExportFormatEnum["PDF"] = "PDF";
|
|
5424
|
+
ExportFormatEnum["XLSX"] = "XLSX";
|
|
5425
|
+
})(ExportFormatEnum || (ExportFormatEnum = {}));
|
|
5426
|
+
|
|
5476
5427
|
var IconsFileEnum;
|
|
5477
5428
|
(function (IconsFileEnum) {
|
|
5478
5429
|
IconsFileEnum["JPG"] = "icon-image-jpg";
|
|
@@ -8795,24 +8746,13 @@ const PDF_CONFIG = {
|
|
|
8795
8746
|
* Service to work with PDF (generate, download, e.t.c.)
|
|
8796
8747
|
*/
|
|
8797
8748
|
class PdfService {
|
|
8798
|
-
// @Todo remove 'any' type
|
|
8799
|
-
/**
|
|
8800
|
-
* Download generated PDF file
|
|
8801
|
-
*/
|
|
8802
|
-
download(tables, title, fileName) {
|
|
8803
|
-
const document = this.generatePdfFile(tables, title);
|
|
8804
|
-
document.save(`${fileName}.pdf`);
|
|
8805
|
-
}
|
|
8806
8749
|
/**
|
|
8807
|
-
*
|
|
8750
|
+
* Export file form provided HTML tables
|
|
8808
8751
|
*/
|
|
8809
8752
|
exportTables(tables, title, fileName) {
|
|
8810
8753
|
const document = this.generateFromTables(tables, title);
|
|
8811
8754
|
document.save(`${fileName}.pdf`);
|
|
8812
8755
|
}
|
|
8813
|
-
/**
|
|
8814
|
-
* @Todo rename when all DataTable dependent methods will be cleared-up
|
|
8815
|
-
*/
|
|
8816
8756
|
generateFromTables(tables, title) {
|
|
8817
8757
|
const pdf = new jsPDF();
|
|
8818
8758
|
this.setDocumentTitle(pdf, title);
|
|
@@ -8861,35 +8801,6 @@ class PdfService {
|
|
|
8861
8801
|
logo.src = PDF_CONFIG.logo.src;
|
|
8862
8802
|
doc.addImage(logo, 'PNG', PDF_CONFIG.logo.positionX, PDF_CONFIG.logo.positionY, PDF_CONFIG.logo.width, PDF_CONFIG.logo.height);
|
|
8863
8803
|
}
|
|
8864
|
-
/**
|
|
8865
|
-
* @Todo remove/refactor when all DataTable dependent methods will be cleared-up
|
|
8866
|
-
* Generate PDF file from provided data
|
|
8867
|
-
*/
|
|
8868
|
-
generatePdfFile(tables, title) {
|
|
8869
|
-
const pdf = new jsPDF();
|
|
8870
|
-
// set document font params
|
|
8871
|
-
pdf.setFontSize(PDF_CONFIG.text.fontSize)
|
|
8872
|
-
.setFont(PDF_CONFIG.text.fontName, PDF_CONFIG.text.fontStyle, PDF_CONFIG.text.fontWeight)
|
|
8873
|
-
.text(title, PDF_CONFIG.text.positionX, PDF_CONFIG.text.positionY);
|
|
8874
|
-
tables.forEach((table) => {
|
|
8875
|
-
// coords of last table
|
|
8876
|
-
const lastTableCoords = pdf['lastAutoTable'].finalY || PDF_CONFIG.contentCoords.marginTop;
|
|
8877
|
-
pdf.text(table.caption, PDF_CONFIG.contentCoords.marginLeft, lastTableCoords + PDF_CONFIG.contentCoords.marginTop);
|
|
8878
|
-
// table options
|
|
8879
|
-
const options = {
|
|
8880
|
-
startY: lastTableCoords + PDF_CONFIG.contentTitleCoords.marginTop,
|
|
8881
|
-
head: [table['columns'].map((column) => column.name)],
|
|
8882
|
-
body: table['rows'],
|
|
8883
|
-
foot: [table['footerRow']],
|
|
8884
|
-
footStyles: {
|
|
8885
|
-
fillColor: PDF_CONFIG.text.fillColor,
|
|
8886
|
-
textColor: PDF_CONFIG.text.textColor
|
|
8887
|
-
}
|
|
8888
|
-
};
|
|
8889
|
-
autoTable(pdf, options);
|
|
8890
|
-
});
|
|
8891
|
-
return pdf;
|
|
8892
|
-
}
|
|
8893
8804
|
}
|
|
8894
8805
|
PdfService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: PdfService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8895
8806
|
PdfService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0, type: PdfService, providedIn: 'root' });
|
|
@@ -10681,18 +10592,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImpo
|
|
|
10681
10592
|
* Service to work with XLSX (generate, download, e.t.c.)
|
|
10682
10593
|
*/
|
|
10683
10594
|
class XlsxService {
|
|
10684
|
-
|
|
10685
|
-
|
|
10686
|
-
* Download generated Excel file
|
|
10595
|
+
/**
|
|
10596
|
+
* Export file form provided HTML tables
|
|
10687
10597
|
*/
|
|
10688
|
-
|
|
10689
|
-
const excelFile = this.
|
|
10598
|
+
exportTables(tables, title, fileName) {
|
|
10599
|
+
const excelFile = this.generateFromTables(tables, title);
|
|
10690
10600
|
const data = new Blob([excelFile], {
|
|
10691
10601
|
type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8'
|
|
10692
10602
|
});
|
|
10693
10603
|
FileSaver.saveAs(data, `${fileName}.xlsx`);
|
|
10694
10604
|
}
|
|
10695
|
-
|
|
10605
|
+
generateFromTables(tables, title) {
|
|
10696
10606
|
// create new workbook
|
|
10697
10607
|
const workbook = xlsx.utils.book_new();
|
|
10698
10608
|
// create empty worksheet
|
|
@@ -10700,19 +10610,13 @@ class XlsxService {
|
|
|
10700
10610
|
SheetNames: [],
|
|
10701
10611
|
Sheets: {}
|
|
10702
10612
|
};
|
|
10703
|
-
|
|
10704
|
-
// add caption
|
|
10705
|
-
|
|
10706
|
-
|
|
10707
|
-
|
|
10708
|
-
|
|
10709
|
-
|
|
10710
|
-
];
|
|
10711
|
-
});
|
|
10712
|
-
sheetData.forEach((data) => {
|
|
10713
|
-
xlsx.utils.sheet_add_json(worksheet, data, { origin: -1, skipHeader: true });
|
|
10714
|
-
// set empty row after each table
|
|
10715
|
-
xlsx.utils.sheet_add_json(worksheet, [], { origin: -1 });
|
|
10613
|
+
tables.forEach((data) => {
|
|
10614
|
+
// add caption for the current table
|
|
10615
|
+
xlsx.utils.sheet_add_aoa(worksheet, [[data.caption.innerText]], { origin: -1 });
|
|
10616
|
+
// add table table data to the worksheet
|
|
10617
|
+
xlsx.utils.sheet_add_dom(worksheet, data, { origin: -1, raw: true });
|
|
10618
|
+
// set empty row after current table
|
|
10619
|
+
xlsx.utils.sheet_add_aoa(worksheet, [], { origin: -1 });
|
|
10716
10620
|
});
|
|
10717
10621
|
xlsx.utils.book_append_sheet(workbook, worksheet);
|
|
10718
10622
|
return xlsx.write(workbook, { bookType: 'xlsx', type: 'array' });
|
|
@@ -10904,5 +10808,5 @@ class ResetPasswordForm extends AbstractForm {
|
|
|
10904
10808
|
* Generated bundle index. Do not edit.
|
|
10905
10809
|
*/
|
|
10906
10810
|
|
|
10907
|
-
export { AbstractForm, Address, AddressService, AddressTypeEnum, AlphabetColorsEnum, AppEvent, AppEventTypeEnum, AssetEntityTypeEnum, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Bank, BankAccount, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankConnection, BankConnectionService, BankConnectionStatusEnum, BankService, BankTransaction, BankTransactionCalculationService, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasiqConfig, BasiqJob, BasiqService, BasiqToken, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, ChartAccounts, ChartAccountsCategoryEnum, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsHeading, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsListEnum, ChartAccountsMetadata, ChartAccountsMetadataListEnum, ChartAccountsMetadataTypeEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartData, ChartSerie, Chat, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientDetails, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CorelogicService, CorelogicSuggestion, Country, DEFAULT_VEHICLE_EXPENSE, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES,
|
|
10811
|
+
export { AbstractForm, Address, AddressService, AddressTypeEnum, AlphabetColorsEnum, AppEvent, AppEventTypeEnum, AssetEntityTypeEnum, AssetTypeEnum, AssetsService, AuthService, BANK_ACCOUNT_TYPES, Bank, BankAccount, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankConnection, BankConnectionService, BankConnectionStatusEnum, BankService, BankTransaction, BankTransactionCalculationService, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasiqConfig, BasiqJob, BasiqService, BasiqToken, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, ChartAccounts, ChartAccountsCategoryEnum, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsHeading, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsListEnum, ChartAccountsMetadata, ChartAccountsMetadataListEnum, ChartAccountsMetadataTypeEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartData, ChartSerie, Chat, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientDetails, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CorelogicService, CorelogicSuggestion, Country, DEFAULT_VEHICLE_EXPENSE, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpRateEnum, DepreciationReceipt, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderService, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeInvite, EmployeeInviteService, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportFormatEnum, FinancialYear, Firm, FirmService, FirmTypeEnum, HeaderTitleService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastService, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSalaryEnum, IncomeSourceTypeListWorkEnum, InterceptorsModule, IntercomService, InviteStatusEnum, JwtService, Loan, LoanBankTypeEnum, LoanCollection, LoanFrequencyEnum, LoanInterestTypeEnum, LoanMaxNumberOfPaymentsEnum, LoanPayment, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LogbookCollection, LogbookPeriod, LoginForm, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, Notification, Occupation, OccupationService, PasswordForm, PdfService, Phone, PhoneTypeEnum, PreloaderService, Property, PropertyCalculationService, PropertyCategory, PropertyCategoryMovement, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentService, PropertyEquityChartData, PropertyEquityChartItem, PropertyForecast, PropertySale, PropertySaleService, PropertySaleTaxExemptionMetadata, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyValuation, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, SUBSCRIPTION_DESCRIPTION, SUBSCRIPTION_TITLE, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceRecurringIntervalEnum, ServicePriceTypeEnum, ServiceProduct, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, ShareFilterOptionsEnum, SoleForecast, SoleForecastService, SpareDocumentSpareTypeEnum, SseService, SubscriptionService, SubscriptionTypeEnum, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionEnum, TaxExemptionMetadata, TaxExemptionMetadataEnum, TaxExemptionService, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReview, TaxReviewCollection, TaxReviewHistoryService, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionCalculationService, TransactionCollection, TransactionMetadata, TransactionOperationEnum, TransactionReceipt, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TtCoreModule, USER_ROLES, USER_WORK_POSITION, User, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserMedicareExemptionEnum, UserRolesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, Vehicle, VehicleClaim, VehicleClaimMethodEnum, VehicleLogbook, VehicleLogbookPurposeEnum, VehicleService, WORK_TANK_LOGBOOK_PURPOSE_OPTIONS, XlsxService, cloneDeep, compare, compareMatOptions, createDate, displayMatOptions, enumToList, getDocIcon, replace, roundTo, sort, sortDeep, taxReviewFilterPredicate };
|
|
10908
10812
|
//# sourceMappingURL=taxtank-core.js.map
|