taxtank-core 0.8.6 → 0.8.7
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 +94 -92
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/db/Models/transaction-base.js +2 -1
- package/esm2015/lib/services/http/address/address.service.js +39 -0
- package/esm2015/lib/services/http/bank/bank-account/bank-account.service.js +118 -0
- package/esm2015/lib/services/http/bank/bank-connection/bank-connection.service.js +52 -0
- package/esm2015/lib/services/http/bank/bank-transaction/bank-transaction.service.js +89 -0
- package/esm2015/lib/services/http/bank/bank.service.js +24 -0
- package/esm2015/lib/services/http/bank/basiq/basiq.service.js +94 -0
- package/esm2015/lib/services/http/chart-accounts/chart-accounts-depreciations/chart-accounts-depreciations.service.js +38 -0
- package/esm2015/lib/services/http/chart-accounts/chart-accounts.service.js +89 -0
- package/esm2015/lib/services/http/chat/chat.service.js +77 -0
- package/esm2015/lib/services/http/chat/message/message.service.js +65 -0
- package/esm2015/lib/services/http/chat/message-document/message-document.service.js +118 -0
- package/esm2015/lib/services/{depreciation/capital-project.service.js → http/depreciation/depreciation-capital-project/depreciation-capital-project.service.js} +7 -7
- package/esm2015/lib/services/http/depreciation/depreciation.service.js +146 -0
- package/esm2015/lib/services/http/document/document-folder/document-folder.service.js +84 -0
- package/esm2015/lib/services/{client → http/firm/client-invite}/client-invite.service.js +7 -7
- package/esm2015/lib/services/http/firm/client-movement/client-movement.service.js +98 -0
- package/esm2015/lib/services/http/firm/employee/employee.service.js +39 -0
- package/esm2015/lib/services/http/firm/employee-invite/employee-invite.service.js +53 -0
- package/esm2015/lib/services/http/firm/firm.service.js +79 -0
- package/esm2015/lib/services/http/firm/portfolio-report/client-portfolio-report.service.js +37 -0
- package/esm2015/lib/services/http/income-source/income-source-forecast/income-source-forecast.service.js +90 -0
- package/esm2015/lib/services/http/income-source/income-source.service.js +109 -0
- package/esm2015/lib/services/http/income-source/salary-forecast/salary-forecast.service.js +90 -0
- package/esm2015/lib/services/http/income-source/sole-forecast/sole-forecast.service.js +87 -0
- package/esm2015/lib/services/http/loan/borrowing-expense/borrowing-expense.service.js +73 -0
- package/esm2015/lib/services/http/loan/loan.service.js +145 -0
- package/esm2015/lib/services/http/property/property-category/property-category.service.js +23 -0
- package/esm2015/lib/services/http/property/property-category-movement/property-category-movement.service.js +47 -0
- package/esm2015/lib/services/http/property/property-document/property-document.service.js +70 -0
- package/esm2015/lib/services/http/property/property-sale/property-sale.service.js +20 -0
- package/esm2015/lib/services/http/property/property-sale/tax-exemption/tax-exemption.service.js +21 -0
- package/esm2015/lib/services/http/property/property-share/property-share.service.js +115 -0
- package/esm2015/lib/services/http/property/property.service.js +126 -0
- package/esm2015/lib/services/http/rest/rest.service.js +190 -0
- package/esm2015/lib/services/http/service-notification/service-notification.service.js +65 -0
- package/esm2015/lib/services/http/subscription/subscription.service.js +157 -0
- package/esm2015/lib/services/http/tax-review/tax-review-history/tax-review-history.service.js +41 -0
- package/esm2015/lib/services/http/tax-review/tax-review.service.js +103 -0
- package/esm2015/lib/services/http/tax-summary/tax-summary.service.js +71 -0
- package/esm2015/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.js +85 -0
- package/esm2015/lib/services/http/transaction/transaction.service.js +319 -0
- package/esm2015/lib/services/http/user/occupation/occupation.service.js +45 -0
- package/esm2015/lib/services/http/user/user-event-setting/user-event-setting.service.js +59 -0
- package/esm2015/lib/services/http/user/user-event-type/user-event-type.service.js +29 -0
- package/esm2015/lib/services/http/user/user.service.js +124 -0
- package/esm2015/lib/services/http/vehicle/vehicle.service.js +237 -0
- package/esm2015/lib/services/property/equity-position-chart/equity-position-chart.service.js +45 -0
- package/esm2015/public-api.js +48 -48
- package/fesm2015/taxtank-core.js +51 -49
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/services/{address → http/address}/address.service.d.ts +1 -1
- package/lib/services/{bank → http/bank/bank-account}/bank-account.service.d.ts +5 -5
- package/lib/services/{bank → http/bank/bank-connection}/bank-connection.service.d.ts +5 -5
- package/lib/services/{bank → http/bank/bank-transaction}/bank-transaction.service.d.ts +5 -5
- package/lib/services/{bank → http/bank}/bank.service.d.ts +4 -4
- package/lib/services/{bank → http/bank/basiq}/basiq.service.d.ts +7 -7
- package/lib/services/{chart-accounts → http/chart-accounts/chart-accounts-depreciations}/chart-accounts-depreciations.service.d.ts +4 -4
- package/lib/services/{chart-accounts → http/chart-accounts}/chart-accounts.service.d.ts +3 -3
- package/lib/services/{chat → http/chat}/chat.service.d.ts +7 -7
- package/lib/services/{chat → http/chat/message}/message.service.d.ts +7 -7
- package/lib/services/{chat → http/chat/message-document}/message-document.service.d.ts +3 -3
- package/lib/services/{depreciation/capital-project.service.d.ts → http/depreciation/depreciation-capital-project/depreciation-capital-project.service.d.ts} +4 -4
- package/lib/services/{depreciation → http/depreciation}/depreciation.service.d.ts +5 -5
- package/lib/services/{document → http/document/document-folder}/document-folder.service.d.ts +6 -6
- package/lib/services/{client → http/firm/client-invite}/client-invite.service.d.ts +4 -4
- package/lib/services/{client → http/firm/client-movement}/client-movement.service.d.ts +7 -7
- package/lib/services/{employee → http/firm/employee}/employee.service.d.ts +4 -4
- package/lib/services/{employee → http/firm/employee-invite}/employee-invite.service.d.ts +4 -4
- package/lib/services/{firm → http/firm}/firm.service.d.ts +2 -2
- package/lib/services/{client → http/firm/portfolio-report}/client-portfolio-report.service.d.ts +1 -1
- package/lib/services/{income-source → http/income-source/income-source-forecast}/income-source-forecast.service.d.ts +5 -5
- package/lib/services/{income-source → http/income-source}/income-source.service.d.ts +8 -8
- package/lib/services/{income-source → http/income-source/salary-forecast}/salary-forecast.service.d.ts +6 -6
- package/lib/services/{income-source → http/income-source/sole-forecast}/sole-forecast.service.d.ts +5 -5
- package/lib/services/{borrowing-expense → http/loan/borrowing-expense}/borrowing-expense.service.d.ts +2 -2
- package/lib/services/{loan → http/loan}/loan.service.d.ts +6 -6
- package/lib/services/{property → http/property}/property-category/property-category.service.d.ts +4 -4
- package/lib/services/{property → http/property/property-category-movement}/property-category-movement.service.d.ts +4 -4
- package/lib/services/{property → http/property}/property-document/property-document.service.d.ts +5 -5
- package/lib/services/http/property/property-sale/property-sale.service.d.ts +10 -0
- package/lib/services/http/property/property-sale/tax-exemption/tax-exemption.service.d.ts +11 -0
- package/lib/services/{property → http/property}/property-share/property-share.service.d.ts +5 -5
- package/lib/services/{property → http/property}/property.service.d.ts +5 -5
- package/lib/services/{base-rest.service.d.ts → http/rest/rest.service.d.ts} +4 -4
- package/lib/services/http/service-notification/service-notification.service.d.ts +31 -0
- package/lib/services/{subscription → http/subscription}/subscription.service.d.ts +6 -6
- package/lib/services/{tax-review → http/tax-review/tax-review-history}/tax-review-history.service.d.ts +5 -5
- package/lib/services/{tax-review → http/tax-review}/tax-review.service.d.ts +6 -6
- package/lib/services/{tax-summary → http/tax-summary}/tax-summary.service.d.ts +2 -2
- package/lib/services/{transaction → http/transaction/transaction-allocation}/transaction-allocation.service.d.ts +6 -6
- package/lib/services/{transaction → http/transaction}/transaction.service.d.ts +7 -7
- package/lib/services/{user → http/user/occupation}/occupation.service.d.ts +1 -1
- package/lib/services/{user-event → http/user/user-event-setting}/user-event-setting.service.d.ts +5 -5
- package/lib/services/{user-event → http/user/user-event-type}/user-event-type.service.d.ts +5 -5
- package/lib/services/{user → http/user}/user.service.d.ts +3 -3
- package/lib/services/{work/work-tank.service.d.ts → http/vehicle/vehicle.service.d.ts} +9 -8
- package/lib/services/property/{equity-position-chart.service.d.ts → equity-position-chart/equity-position-chart.service.d.ts} +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +47 -47
- package/esm2015/lib/services/address/address.service.js +0 -39
- package/esm2015/lib/services/bank/bank-account.service.js +0 -118
- package/esm2015/lib/services/bank/bank-connection.service.js +0 -52
- package/esm2015/lib/services/bank/bank-transaction.service.js +0 -89
- package/esm2015/lib/services/bank/bank.service.js +0 -24
- package/esm2015/lib/services/bank/basiq.service.js +0 -94
- package/esm2015/lib/services/base-rest.service.js +0 -190
- package/esm2015/lib/services/borrowing-expense/borrowing-expense.service.js +0 -73
- package/esm2015/lib/services/chart-accounts/chart-accounts-depreciations.service.js +0 -38
- package/esm2015/lib/services/chart-accounts/chart-accounts.service.js +0 -89
- package/esm2015/lib/services/chat/chat.service.js +0 -77
- package/esm2015/lib/services/chat/message-document.service.js +0 -118
- package/esm2015/lib/services/chat/message.service.js +0 -65
- package/esm2015/lib/services/client/client-movement.service.js +0 -98
- package/esm2015/lib/services/client/client-portfolio-report.service.js +0 -37
- package/esm2015/lib/services/depreciation/depreciation.service.js +0 -146
- package/esm2015/lib/services/document/document-folder.service.js +0 -84
- package/esm2015/lib/services/employee/employee-invite.service.js +0 -53
- package/esm2015/lib/services/employee/employee.service.js +0 -39
- package/esm2015/lib/services/firm/firm.service.js +0 -79
- package/esm2015/lib/services/income-source/income-source-forecast.service.js +0 -90
- package/esm2015/lib/services/income-source/income-source.service.js +0 -109
- package/esm2015/lib/services/income-source/salary-forecast.service.js +0 -90
- package/esm2015/lib/services/income-source/sole-forecast.service.js +0 -87
- package/esm2015/lib/services/loan/loan.service.js +0 -145
- package/esm2015/lib/services/notification/notification.service.js +0 -65
- package/esm2015/lib/services/property/equity-position-chart.service.js +0 -45
- package/esm2015/lib/services/property/property-category/property-category.service.js +0 -23
- package/esm2015/lib/services/property/property-category-movement.service.js +0 -47
- package/esm2015/lib/services/property/property-document/property-document.service.js +0 -70
- package/esm2015/lib/services/property/property-sale/property-sale.service.js +0 -20
- package/esm2015/lib/services/property/property-sale/tax-exemption/tax-exemption.service.js +0 -21
- package/esm2015/lib/services/property/property-share/property-share.service.js +0 -115
- package/esm2015/lib/services/property/property.service.js +0 -126
- package/esm2015/lib/services/subscription/subscription.service.js +0 -157
- package/esm2015/lib/services/tax-review/tax-review-history.service.js +0 -41
- package/esm2015/lib/services/tax-review/tax-review.service.js +0 -103
- package/esm2015/lib/services/tax-summary/tax-summary.service.js +0 -71
- package/esm2015/lib/services/transaction/transaction-allocation.service.js +0 -85
- package/esm2015/lib/services/transaction/transaction.service.js +0 -319
- package/esm2015/lib/services/user/occupation.service.js +0 -45
- package/esm2015/lib/services/user/user.service.js +0 -124
- package/esm2015/lib/services/user-event/user-event-setting.service.js +0 -59
- package/esm2015/lib/services/user-event/user-event-type.service.js +0 -29
- package/esm2015/lib/services/work/work-tank.service.js +0 -236
- package/lib/services/notification/notification.service.d.ts +0 -31
- package/lib/services/property/property-sale/property-sale.service.d.ts +0 -10
- package/lib/services/property/property-sale/tax-exemption/tax-exemption.service.d.ts +0 -11
|
@@ -2992,6 +2992,7 @@
|
|
|
2992
2992
|
* Check if current tank is Work
|
|
2993
2993
|
*/
|
|
2994
2994
|
TransactionBase.prototype.isWorkTank = function () {
|
|
2995
|
+
// @TODO remove this hack
|
|
2995
2996
|
if (this.tankType) {
|
|
2996
2997
|
return this.tankType === exports.TankTypeEnum.WORK;
|
|
2997
2998
|
}
|
|
@@ -8259,8 +8260,8 @@
|
|
|
8259
8260
|
* Model - entity service is working with
|
|
8260
8261
|
* BaseModel - base entity model that extends by Model
|
|
8261
8262
|
*/
|
|
8262
|
-
var
|
|
8263
|
-
function
|
|
8263
|
+
var RestService = /** @class */ (function () {
|
|
8264
|
+
function RestService(http, eventDispatcherService, environment) {
|
|
8264
8265
|
this.http = http;
|
|
8265
8266
|
this.eventDispatcherService = eventDispatcherService;
|
|
8266
8267
|
this.environment = environment;
|
|
@@ -8270,7 +8271,7 @@
|
|
|
8270
8271
|
/**
|
|
8271
8272
|
* get cached list of all instances
|
|
8272
8273
|
*/
|
|
8273
|
-
|
|
8274
|
+
RestService.prototype.get = function () {
|
|
8274
8275
|
if (!this.cache) {
|
|
8275
8276
|
this.fetch().subscribe();
|
|
8276
8277
|
}
|
|
@@ -8280,7 +8281,7 @@
|
|
|
8280
8281
|
* get instance by id from cache
|
|
8281
8282
|
* @param id ID of required item
|
|
8282
8283
|
*/
|
|
8283
|
-
|
|
8284
|
+
RestService.prototype.getById = function (id) {
|
|
8284
8285
|
return this.get()
|
|
8285
8286
|
.pipe(operators.map(function (items) {
|
|
8286
8287
|
return items.find(function (item) { return item['id'] === id; });
|
|
@@ -8290,7 +8291,7 @@
|
|
|
8290
8291
|
* get list of items filtered by id.
|
|
8291
8292
|
* @param models Array of objects contains required items ids
|
|
8292
8293
|
*/
|
|
8293
|
-
|
|
8294
|
+
RestService.prototype.getByIds = function (models) {
|
|
8294
8295
|
var idsArray = models.map(function (model) { return model['id']; });
|
|
8295
8296
|
return this.get()
|
|
8296
8297
|
.pipe(operators.map(function (items) {
|
|
@@ -8301,7 +8302,7 @@
|
|
|
8301
8302
|
* add new instance and update cache
|
|
8302
8303
|
* @TODO rename to post
|
|
8303
8304
|
*/
|
|
8304
|
-
|
|
8305
|
+
RestService.prototype.add = function (model, shouldUpdateCache) {
|
|
8305
8306
|
var _this = this;
|
|
8306
8307
|
if (shouldUpdateCache === void 0) { shouldUpdateCache = true; }
|
|
8307
8308
|
return this.http.post(this.environment.apiV2 + "/" + this.url, classTransformer.classToPlain(model))
|
|
@@ -8323,7 +8324,7 @@
|
|
|
8323
8324
|
* @param queryParams query parameters for request
|
|
8324
8325
|
* @TODO rename to postBatch
|
|
8325
8326
|
*/
|
|
8326
|
-
|
|
8327
|
+
RestService.prototype.addBatch = function (models, queryParams) {
|
|
8327
8328
|
var _this = this;
|
|
8328
8329
|
if (queryParams === void 0) { queryParams = {}; }
|
|
8329
8330
|
return this.http.post(this.environment.apiV2 + "/" + this.url, classTransformer.classToPlain(models), queryParams)
|
|
@@ -8343,7 +8344,7 @@
|
|
|
8343
8344
|
* @param queryParams query parameters for request
|
|
8344
8345
|
* @TODO rename to put
|
|
8345
8346
|
*/
|
|
8346
|
-
|
|
8347
|
+
RestService.prototype.update = function (model, queryParams) {
|
|
8347
8348
|
var _this = this;
|
|
8348
8349
|
if (queryParams === void 0) { queryParams = {}; }
|
|
8349
8350
|
return this.http.put(this.environment.apiV2 + "/" + this.url + "/" + model['id'], classTransformer.classToPlain(model), queryParams)
|
|
@@ -8360,7 +8361,7 @@
|
|
|
8360
8361
|
* @param queryParams query parameters for request
|
|
8361
8362
|
* TODO rename to putBatch
|
|
8362
8363
|
*/
|
|
8363
|
-
|
|
8364
|
+
RestService.prototype.updateBatch = function (models, queryParams) {
|
|
8364
8365
|
var _this = this;
|
|
8365
8366
|
if (queryParams === void 0) { queryParams = {}; }
|
|
8366
8367
|
return this.http.put(this.environment.apiV2 + "/" + this.url, classTransformer.classToPlain(models), queryParams)
|
|
@@ -8377,7 +8378,7 @@
|
|
|
8377
8378
|
* delete instance of class
|
|
8378
8379
|
* @param model Class instance for deleting
|
|
8379
8380
|
*/
|
|
8380
|
-
|
|
8381
|
+
RestService.prototype.delete = function (model) {
|
|
8381
8382
|
var _this = this;
|
|
8382
8383
|
return this.http.delete(this.environment.apiV2 + "/" + this.url + "/" + model['id'])
|
|
8383
8384
|
.pipe(operators.map(function () {
|
|
@@ -8389,7 +8390,7 @@
|
|
|
8389
8390
|
* delete multiple instances of class
|
|
8390
8391
|
* @param models Class instances array for deleting
|
|
8391
8392
|
*/
|
|
8392
|
-
|
|
8393
|
+
RestService.prototype.deleteBatch = function (models) {
|
|
8393
8394
|
var _this = this;
|
|
8394
8395
|
return this.http.post(this.environment.apiV2 + "/" + this.url + "/delete", models)
|
|
8395
8396
|
.pipe(operators.map(function () {
|
|
@@ -8401,13 +8402,13 @@
|
|
|
8401
8402
|
/**
|
|
8402
8403
|
* clear service cache
|
|
8403
8404
|
*/
|
|
8404
|
-
|
|
8405
|
+
RestService.prototype.resetCache = function () {
|
|
8405
8406
|
this.fetch().subscribe();
|
|
8406
8407
|
};
|
|
8407
8408
|
/**
|
|
8408
8409
|
* get list of base class instances directly from backend
|
|
8409
8410
|
*/
|
|
8410
|
-
|
|
8411
|
+
RestService.prototype.fetch = function () {
|
|
8411
8412
|
var _this = this;
|
|
8412
8413
|
return this.http.get(this.environment.apiV2 + "/" + this.url)
|
|
8413
8414
|
.pipe(operators.map(function (response) {
|
|
@@ -8423,7 +8424,7 @@
|
|
|
8423
8424
|
/**
|
|
8424
8425
|
* Update cache subject with current cache array value
|
|
8425
8426
|
*/
|
|
8426
|
-
|
|
8427
|
+
RestService.prototype.updateCache = function () {
|
|
8427
8428
|
this.cacheSubject.next(this.cache.slice());
|
|
8428
8429
|
};
|
|
8429
8430
|
/**
|
|
@@ -8431,14 +8432,14 @@
|
|
|
8431
8432
|
* @param model The class for which you want to create an instance
|
|
8432
8433
|
* @param baseModel base model instance that we will use as constructor options
|
|
8433
8434
|
*/
|
|
8434
|
-
|
|
8435
|
+
RestService.prototype.createModelInstance = function (model, baseModel) {
|
|
8435
8436
|
return classTransformer.plainToClass(model, baseModel, { excludePrefixes: ['@'] });
|
|
8436
8437
|
};
|
|
8437
|
-
return
|
|
8438
|
+
return RestService;
|
|
8438
8439
|
}());
|
|
8439
|
-
|
|
8440
|
-
|
|
8441
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type:
|
|
8440
|
+
RestService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: RestService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
8441
|
+
RestService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: RestService, providedIn: 'root' });
|
|
8442
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: RestService, decorators: [{
|
|
8442
8443
|
type: i0.Injectable,
|
|
8443
8444
|
args: [{
|
|
8444
8445
|
providedIn: 'root'
|
|
@@ -8463,7 +8464,7 @@
|
|
|
8463
8464
|
return _this;
|
|
8464
8465
|
}
|
|
8465
8466
|
return BankService;
|
|
8466
|
-
}(
|
|
8467
|
+
}(RestService));
|
|
8467
8468
|
BankService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BankService, deps: null, target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
8468
8469
|
BankService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BankService, providedIn: 'root' });
|
|
8469
8470
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BankService, decorators: [{
|
|
@@ -8575,7 +8576,7 @@
|
|
|
8575
8576
|
});
|
|
8576
8577
|
};
|
|
8577
8578
|
return BankAccountService;
|
|
8578
|
-
}(
|
|
8579
|
+
}(RestService));
|
|
8579
8580
|
BankAccountService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BankAccountService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
8580
8581
|
BankAccountService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BankAccountService, providedIn: 'root' });
|
|
8581
8582
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BankAccountService, decorators: [{
|
|
@@ -8719,7 +8720,7 @@
|
|
|
8719
8720
|
});
|
|
8720
8721
|
};
|
|
8721
8722
|
return BankConnectionService;
|
|
8722
|
-
}(
|
|
8723
|
+
}(RestService));
|
|
8723
8724
|
BankConnectionService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BankConnectionService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
8724
8725
|
BankConnectionService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BankConnectionService, providedIn: 'root' });
|
|
8725
8726
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BankConnectionService, decorators: [{
|
|
@@ -8805,7 +8806,7 @@
|
|
|
8805
8806
|
});
|
|
8806
8807
|
};
|
|
8807
8808
|
return BankTransactionService;
|
|
8808
|
-
}(
|
|
8809
|
+
}(RestService));
|
|
8809
8810
|
BankTransactionService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BankTransactionService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
8810
8811
|
BankTransactionService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BankTransactionService, providedIn: 'root' });
|
|
8811
8812
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BankTransactionService, decorators: [{
|
|
@@ -8896,7 +8897,7 @@
|
|
|
8896
8897
|
});
|
|
8897
8898
|
};
|
|
8898
8899
|
return BasiqService;
|
|
8899
|
-
}(
|
|
8900
|
+
}(RestService));
|
|
8900
8901
|
BasiqService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BasiqService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
8901
8902
|
BasiqService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BasiqService, providedIn: 'root' });
|
|
8902
8903
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: BasiqService, decorators: [{
|
|
@@ -9090,7 +9091,7 @@
|
|
|
9090
9091
|
}));
|
|
9091
9092
|
};
|
|
9092
9093
|
return ChartAccountsDepreciationService;
|
|
9093
|
-
}(
|
|
9094
|
+
}(RestService));
|
|
9094
9095
|
ChartAccountsDepreciationService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ChartAccountsDepreciationService, deps: null, target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
9095
9096
|
ChartAccountsDepreciationService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ChartAccountsDepreciationService, providedIn: 'root' });
|
|
9096
9097
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ChartAccountsDepreciationService, decorators: [{
|
|
@@ -9202,7 +9203,7 @@
|
|
|
9202
9203
|
});
|
|
9203
9204
|
};
|
|
9204
9205
|
return ChatService;
|
|
9205
|
-
}(
|
|
9206
|
+
}(RestService));
|
|
9206
9207
|
ChatService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ChatService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: SseService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
9207
9208
|
ChatService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ChatService, providedIn: 'root' });
|
|
9208
9209
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ChatService, decorators: [{
|
|
@@ -9261,7 +9262,7 @@
|
|
|
9261
9262
|
});
|
|
9262
9263
|
};
|
|
9263
9264
|
return MessageService;
|
|
9264
|
-
}(
|
|
9265
|
+
}(RestService));
|
|
9265
9266
|
MessageService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: MessageService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: SseService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
9266
9267
|
MessageService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: MessageService, providedIn: 'root' });
|
|
9267
9268
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: MessageService, decorators: [{
|
|
@@ -9481,7 +9482,7 @@
|
|
|
9481
9482
|
}));
|
|
9482
9483
|
};
|
|
9483
9484
|
return ClientInviteService;
|
|
9484
|
-
}(
|
|
9485
|
+
}(RestService));
|
|
9485
9486
|
ClientInviteService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ClientInviteService, deps: null, target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
9486
9487
|
ClientInviteService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ClientInviteService, providedIn: 'root' });
|
|
9487
9488
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ClientInviteService, decorators: [{
|
|
@@ -9571,7 +9572,7 @@
|
|
|
9571
9572
|
});
|
|
9572
9573
|
};
|
|
9573
9574
|
return ClientMovementService;
|
|
9574
|
-
}(
|
|
9575
|
+
}(RestService));
|
|
9575
9576
|
ClientMovementService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ClientMovementService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
9576
9577
|
ClientMovementService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ClientMovementService, providedIn: 'root' });
|
|
9577
9578
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ClientMovementService, decorators: [{
|
|
@@ -9622,13 +9623,13 @@
|
|
|
9622
9623
|
/**
|
|
9623
9624
|
* Service for work with DepreciationCapitalProjects
|
|
9624
9625
|
*/
|
|
9625
|
-
var
|
|
9626
|
-
function
|
|
9626
|
+
var DepreciationCapitalProjectService = /** @class */ (function () {
|
|
9627
|
+
function DepreciationCapitalProjectService(http, environment) {
|
|
9627
9628
|
this.http = http;
|
|
9628
9629
|
this.environment = environment;
|
|
9629
9630
|
this.cacheSubject = new rxjs.ReplaySubject(1);
|
|
9630
9631
|
}
|
|
9631
|
-
|
|
9632
|
+
DepreciationCapitalProjectService.prototype.get = function (propertyId) {
|
|
9632
9633
|
var _this = this;
|
|
9633
9634
|
this.cacheSubject.next([]);
|
|
9634
9635
|
this.http.get(this.environment.apiV2 + "/properties/" + propertyId + "/depreciation-capital-projects")
|
|
@@ -9640,7 +9641,7 @@
|
|
|
9640
9641
|
});
|
|
9641
9642
|
return this.cacheSubject.asObservable();
|
|
9642
9643
|
};
|
|
9643
|
-
|
|
9644
|
+
DepreciationCapitalProjectService.prototype.add = function (capitalProject, propertyId) {
|
|
9644
9645
|
var _this = this;
|
|
9645
9646
|
return this.http.post(this.environment.apiV2 + "/properties/" + propertyId + "/depreciation-capital-projects", capitalProject)
|
|
9646
9647
|
.pipe(operators.map(function (capitalProjectBase) {
|
|
@@ -9648,7 +9649,7 @@
|
|
|
9648
9649
|
_this.cacheSubject.next(_this.cache);
|
|
9649
9650
|
}));
|
|
9650
9651
|
};
|
|
9651
|
-
|
|
9652
|
+
DepreciationCapitalProjectService.prototype.update = function (capitalProject, propertyId) {
|
|
9652
9653
|
var _this = this;
|
|
9653
9654
|
return this.http.put(this.environment.apiV2 + "/properties/" + propertyId + "/depreciation-capital-projects/" + capitalProject.id, capitalProject)
|
|
9654
9655
|
.pipe(operators.map(function (capitalProjectBase) {
|
|
@@ -9656,7 +9657,7 @@
|
|
|
9656
9657
|
_this.cacheSubject.next(_this.cache);
|
|
9657
9658
|
}));
|
|
9658
9659
|
};
|
|
9659
|
-
|
|
9660
|
+
DepreciationCapitalProjectService.prototype.delete = function (capitalProject, propertyId) {
|
|
9660
9661
|
var _this = this;
|
|
9661
9662
|
return this.http.delete(this.environment.apiV2 + "/properties/" + propertyId + "/depreciation-capital-projects/" + capitalProject.id)
|
|
9662
9663
|
.pipe(operators.map(function () {
|
|
@@ -9664,11 +9665,11 @@
|
|
|
9664
9665
|
_this.cacheSubject.next(_this.cache);
|
|
9665
9666
|
}));
|
|
9666
9667
|
};
|
|
9667
|
-
return
|
|
9668
|
+
return DepreciationCapitalProjectService;
|
|
9668
9669
|
}());
|
|
9669
|
-
|
|
9670
|
-
|
|
9671
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type:
|
|
9670
|
+
DepreciationCapitalProjectService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: DepreciationCapitalProjectService, deps: [{ token: i1__namespace.HttpClient }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
9671
|
+
DepreciationCapitalProjectService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: DepreciationCapitalProjectService, providedIn: 'root' });
|
|
9672
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: DepreciationCapitalProjectService, decorators: [{
|
|
9672
9673
|
type: i0.Injectable,
|
|
9673
9674
|
args: [{
|
|
9674
9675
|
providedIn: 'root'
|
|
@@ -9811,7 +9812,7 @@
|
|
|
9811
9812
|
});
|
|
9812
9813
|
};
|
|
9813
9814
|
return DepreciationService;
|
|
9814
|
-
}(
|
|
9815
|
+
}(RestService));
|
|
9815
9816
|
DepreciationService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: DepreciationService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
9816
9817
|
DepreciationService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: DepreciationService, providedIn: 'root' });
|
|
9817
9818
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: DepreciationService, decorators: [{
|
|
@@ -9893,7 +9894,7 @@
|
|
|
9893
9894
|
}));
|
|
9894
9895
|
};
|
|
9895
9896
|
return DocumentFolderService;
|
|
9896
|
-
}(
|
|
9897
|
+
}(RestService));
|
|
9897
9898
|
DocumentFolderService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: DocumentFolderService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
9898
9899
|
DocumentFolderService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: DocumentFolderService, providedIn: 'root' });
|
|
9899
9900
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: DocumentFolderService, decorators: [{
|
|
@@ -9933,7 +9934,7 @@
|
|
|
9933
9934
|
}));
|
|
9934
9935
|
};
|
|
9935
9936
|
return EmployeeService;
|
|
9936
|
-
}(
|
|
9937
|
+
}(RestService));
|
|
9937
9938
|
EmployeeService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: EmployeeService, deps: null, target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
9938
9939
|
EmployeeService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: EmployeeService, providedIn: 'root' });
|
|
9939
9940
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: EmployeeService, decorators: [{
|
|
@@ -9982,7 +9983,7 @@
|
|
|
9982
9983
|
}));
|
|
9983
9984
|
};
|
|
9984
9985
|
return EmployeeInviteService;
|
|
9985
|
-
}(
|
|
9986
|
+
}(RestService));
|
|
9986
9987
|
EmployeeInviteService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: EmployeeInviteService, deps: null, target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
9987
9988
|
EmployeeInviteService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: EmployeeInviteService, providedIn: 'root' });
|
|
9988
9989
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: EmployeeInviteService, decorators: [{
|
|
@@ -10185,7 +10186,7 @@
|
|
|
10185
10186
|
return this.incomeSourceTypeSubject.asObservable();
|
|
10186
10187
|
};
|
|
10187
10188
|
return IncomeSourceService;
|
|
10188
|
-
}(
|
|
10189
|
+
}(RestService));
|
|
10189
10190
|
IncomeSourceService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: IncomeSourceService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
10190
10191
|
IncomeSourceService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: IncomeSourceService, providedIn: 'root' });
|
|
10191
10192
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: IncomeSourceService, decorators: [{
|
|
@@ -10271,7 +10272,7 @@
|
|
|
10271
10272
|
}).flat();
|
|
10272
10273
|
};
|
|
10273
10274
|
return IncomeSourceForecastService;
|
|
10274
|
-
}(
|
|
10275
|
+
}(RestService));
|
|
10275
10276
|
IncomeSourceForecastService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: IncomeSourceForecastService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
10276
10277
|
IncomeSourceForecastService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: IncomeSourceForecastService, providedIn: 'root' });
|
|
10277
10278
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: IncomeSourceForecastService, decorators: [{
|
|
@@ -10357,7 +10358,7 @@
|
|
|
10357
10358
|
}).flat();
|
|
10358
10359
|
};
|
|
10359
10360
|
return SalaryForecastService;
|
|
10360
|
-
}(
|
|
10361
|
+
}(RestService));
|
|
10361
10362
|
SalaryForecastService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: SalaryForecastService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
10362
10363
|
SalaryForecastService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: SalaryForecastService, providedIn: 'root' });
|
|
10363
10364
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: SalaryForecastService, decorators: [{
|
|
@@ -10440,7 +10441,7 @@
|
|
|
10440
10441
|
}).flat();
|
|
10441
10442
|
};
|
|
10442
10443
|
return SoleForecastService;
|
|
10443
|
-
}(
|
|
10444
|
+
}(RestService));
|
|
10444
10445
|
SoleForecastService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: SoleForecastService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
10445
10446
|
SoleForecastService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: SoleForecastService, providedIn: 'root' });
|
|
10446
10447
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: SoleForecastService, decorators: [{
|
|
@@ -10626,7 +10627,7 @@
|
|
|
10626
10627
|
}));
|
|
10627
10628
|
};
|
|
10628
10629
|
return LoanService;
|
|
10629
|
-
}(
|
|
10630
|
+
}(RestService));
|
|
10630
10631
|
LoanService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: LoanService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
10631
10632
|
LoanService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: LoanService, providedIn: 'root' });
|
|
10632
10633
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: LoanService, decorators: [{
|
|
@@ -10644,9 +10645,9 @@
|
|
|
10644
10645
|
/**
|
|
10645
10646
|
* Service to handle service notifications logic
|
|
10646
10647
|
*/
|
|
10647
|
-
var
|
|
10648
|
-
__extends(
|
|
10649
|
-
function
|
|
10648
|
+
var ServiceNotificationService = /** @class */ (function (_super) {
|
|
10649
|
+
__extends(ServiceNotificationService, _super);
|
|
10650
|
+
function ServiceNotificationService(http, eventDispatcherService, environment, sseService) {
|
|
10650
10651
|
var _this = _super.call(this, http, eventDispatcherService, environment) || this;
|
|
10651
10652
|
_this.http = http;
|
|
10652
10653
|
_this.eventDispatcherService = eventDispatcherService;
|
|
@@ -10661,13 +10662,13 @@
|
|
|
10661
10662
|
/**
|
|
10662
10663
|
* SSE and Event Dispatcher Services listeners
|
|
10663
10664
|
*/
|
|
10664
|
-
|
|
10665
|
+
ServiceNotificationService.prototype.listenEvents = function () {
|
|
10665
10666
|
this.listenNotifications();
|
|
10666
10667
|
};
|
|
10667
10668
|
/**
|
|
10668
10669
|
* subscribe to new chat messages
|
|
10669
10670
|
*/
|
|
10670
|
-
|
|
10671
|
+
ServiceNotificationService.prototype.listenNotifications = function () {
|
|
10671
10672
|
var _this = this;
|
|
10672
10673
|
this.sseService.on("serviceNotification").subscribe(function (notificationBase) {
|
|
10673
10674
|
var notification = classTransformer.plainToClass(Notification, notificationBase);
|
|
@@ -10684,11 +10685,11 @@
|
|
|
10684
10685
|
_this.eventDispatcherService.dispatch(new AppEvent(exports.AppEventTypeEnum.NOTIFICATION_ADDED, notification));
|
|
10685
10686
|
});
|
|
10686
10687
|
};
|
|
10687
|
-
return
|
|
10688
|
-
}(
|
|
10689
|
-
|
|
10690
|
-
|
|
10691
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type:
|
|
10688
|
+
return ServiceNotificationService;
|
|
10689
|
+
}(RestService));
|
|
10690
|
+
ServiceNotificationService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ServiceNotificationService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: SseService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
10691
|
+
ServiceNotificationService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ServiceNotificationService, providedIn: 'root' });
|
|
10692
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: ServiceNotificationService, decorators: [{
|
|
10692
10693
|
type: i0.Injectable,
|
|
10693
10694
|
args: [{
|
|
10694
10695
|
providedIn: 'root'
|
|
@@ -10955,7 +10956,7 @@
|
|
|
10955
10956
|
return this.get().pipe(operators.map(function (properties) { return properties.filter(function (property) { return property.isActive; }); }));
|
|
10956
10957
|
};
|
|
10957
10958
|
return PropertyService;
|
|
10958
|
-
}(
|
|
10959
|
+
}(RestService));
|
|
10959
10960
|
PropertyService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
10960
10961
|
PropertyService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyService, providedIn: 'root' });
|
|
10961
10962
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyService, decorators: [{
|
|
@@ -11112,7 +11113,7 @@
|
|
|
11112
11113
|
return _this;
|
|
11113
11114
|
}
|
|
11114
11115
|
return PropertyCategoryService;
|
|
11115
|
-
}(
|
|
11116
|
+
}(RestService));
|
|
11116
11117
|
PropertyCategoryService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyCategoryService, deps: null, target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
11117
11118
|
PropertyCategoryService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyCategoryService, providedIn: 'root' });
|
|
11118
11119
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyCategoryService, decorators: [{
|
|
@@ -11175,7 +11176,7 @@
|
|
|
11175
11176
|
});
|
|
11176
11177
|
};
|
|
11177
11178
|
return PropertyDocumentService;
|
|
11178
|
-
}(
|
|
11179
|
+
}(RestService));
|
|
11179
11180
|
PropertyDocumentService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyDocumentService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
11180
11181
|
PropertyDocumentService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyDocumentService, providedIn: 'root' });
|
|
11181
11182
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyDocumentService, decorators: [{
|
|
@@ -11287,7 +11288,7 @@
|
|
|
11287
11288
|
});
|
|
11288
11289
|
};
|
|
11289
11290
|
return PropertyShareService;
|
|
11290
|
-
}(
|
|
11291
|
+
}(RestService));
|
|
11291
11292
|
PropertyShareService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyShareService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
11292
11293
|
PropertyShareService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyShareService, providedIn: 'root' });
|
|
11293
11294
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyShareService, decorators: [{
|
|
@@ -11311,7 +11312,7 @@
|
|
|
11311
11312
|
return _this;
|
|
11312
11313
|
}
|
|
11313
11314
|
return PropertySaleService;
|
|
11314
|
-
}(
|
|
11315
|
+
}(RestService));
|
|
11315
11316
|
PropertySaleService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertySaleService, deps: null, target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
11316
11317
|
PropertySaleService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertySaleService, providedIn: 'root' });
|
|
11317
11318
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertySaleService, decorators: [{
|
|
@@ -11398,7 +11399,7 @@
|
|
|
11398
11399
|
}));
|
|
11399
11400
|
};
|
|
11400
11401
|
return PropertyCategoryMovementService;
|
|
11401
|
-
}(
|
|
11402
|
+
}(RestService));
|
|
11402
11403
|
PropertyCategoryMovementService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyCategoryMovementService, deps: null, target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
11403
11404
|
PropertyCategoryMovementService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyCategoryMovementService, providedIn: 'root' });
|
|
11404
11405
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: PropertyCategoryMovementService, decorators: [{
|
|
@@ -11647,7 +11648,7 @@
|
|
|
11647
11648
|
});
|
|
11648
11649
|
};
|
|
11649
11650
|
return TaxReviewService;
|
|
11650
|
-
}(
|
|
11651
|
+
}(RestService));
|
|
11651
11652
|
TaxReviewService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TaxReviewService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
11652
11653
|
TaxReviewService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TaxReviewService, providedIn: 'root' });
|
|
11653
11654
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TaxReviewService, decorators: [{
|
|
@@ -11685,7 +11686,7 @@
|
|
|
11685
11686
|
return _this;
|
|
11686
11687
|
}
|
|
11687
11688
|
return TaxReviewHistoryService;
|
|
11688
|
-
}(
|
|
11689
|
+
}(RestService));
|
|
11689
11690
|
TaxReviewHistoryService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TaxReviewHistoryService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
11690
11691
|
TaxReviewHistoryService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TaxReviewHistoryService, providedIn: 'root' });
|
|
11691
11692
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TaxReviewHistoryService, decorators: [{
|
|
@@ -12080,7 +12081,7 @@
|
|
|
12080
12081
|
});
|
|
12081
12082
|
};
|
|
12082
12083
|
return TransactionService;
|
|
12083
|
-
}(
|
|
12084
|
+
}(RestService));
|
|
12084
12085
|
TransactionService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TransactionService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
12085
12086
|
TransactionService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TransactionService, providedIn: 'root' });
|
|
12086
12087
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TransactionService, decorators: [{
|
|
@@ -12165,7 +12166,7 @@
|
|
|
12165
12166
|
});
|
|
12166
12167
|
};
|
|
12167
12168
|
return TransactionAllocationService;
|
|
12168
|
-
}(
|
|
12169
|
+
}(RestService));
|
|
12169
12170
|
TransactionAllocationService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TransactionAllocationService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
12170
12171
|
TransactionAllocationService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TransactionAllocationService, providedIn: 'root' });
|
|
12171
12172
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TransactionAllocationService, decorators: [{
|
|
@@ -12431,7 +12432,7 @@
|
|
|
12431
12432
|
}));
|
|
12432
12433
|
};
|
|
12433
12434
|
return UserEventSettingService;
|
|
12434
|
-
}(
|
|
12435
|
+
}(RestService));
|
|
12435
12436
|
UserEventSettingService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: UserEventSettingService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
12436
12437
|
UserEventSettingService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: UserEventSettingService, providedIn: 'root' });
|
|
12437
12438
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: UserEventSettingService, decorators: [{
|
|
@@ -12459,7 +12460,7 @@
|
|
|
12459
12460
|
return _this;
|
|
12460
12461
|
}
|
|
12461
12462
|
return UserEventTypeService;
|
|
12462
|
-
}(
|
|
12463
|
+
}(RestService));
|
|
12463
12464
|
UserEventTypeService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: UserEventTypeService, deps: [{ token: i1__namespace.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
12464
12465
|
UserEventTypeService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: UserEventTypeService, providedIn: 'root' });
|
|
12465
12466
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: UserEventTypeService, decorators: [{
|
|
@@ -12476,9 +12477,10 @@
|
|
|
12476
12477
|
|
|
12477
12478
|
/**
|
|
12478
12479
|
* Service that allows to work with WorkTank operations
|
|
12480
|
+
* @TODO separate into multiple services, extend restService
|
|
12479
12481
|
*/
|
|
12480
|
-
var
|
|
12481
|
-
function
|
|
12482
|
+
var VehicleService = /** @class */ (function () {
|
|
12483
|
+
function VehicleService(http, transactionService, depreciationService, chartAccountsService, eventDispatcherService, environment) {
|
|
12482
12484
|
this.http = http;
|
|
12483
12485
|
this.transactionService = transactionService;
|
|
12484
12486
|
this.depreciationService = depreciationService;
|
|
@@ -12491,7 +12493,7 @@
|
|
|
12491
12493
|
this.vehicleTaxReturnSubject = new rxjs.ReplaySubject(1);
|
|
12492
12494
|
this.incomePositionsSubject = new rxjs.ReplaySubject(1);
|
|
12493
12495
|
}
|
|
12494
|
-
|
|
12496
|
+
VehicleService.prototype.getVehicles = function () {
|
|
12495
12497
|
var _this = this;
|
|
12496
12498
|
// @TODO create backend for get logbook
|
|
12497
12499
|
if (!this._vehicles) {
|
|
@@ -12509,7 +12511,7 @@
|
|
|
12509
12511
|
/**
|
|
12510
12512
|
* Get vehicles claim amount
|
|
12511
12513
|
*/
|
|
12512
|
-
|
|
12514
|
+
VehicleService.prototype.getVehiclesClaim = function () {
|
|
12513
12515
|
var _this = this;
|
|
12514
12516
|
if (!this._vehicleClaim) {
|
|
12515
12517
|
this.http.get(this.environment.apiV2 + "/vehicle-claims")
|
|
@@ -12528,7 +12530,7 @@
|
|
|
12528
12530
|
* Add new vehicle claim
|
|
12529
12531
|
* @param claim object which should be added
|
|
12530
12532
|
*/
|
|
12531
|
-
|
|
12533
|
+
VehicleService.prototype.addVehicleClaim = function (claim) {
|
|
12532
12534
|
var _this = this;
|
|
12533
12535
|
return this.http.post(this.environment.apiV2 + "/vehicle-claims", claim).pipe(operators.map(function (response) {
|
|
12534
12536
|
_this._vehicleClaim = classTransformer.plainToClass(VehicleClaim, response);
|
|
@@ -12539,7 +12541,7 @@
|
|
|
12539
12541
|
/**
|
|
12540
12542
|
* Get vehicles claim rate for current financial year
|
|
12541
12543
|
*/
|
|
12542
|
-
|
|
12544
|
+
VehicleService.prototype.getVehiclesClaimRate = function () {
|
|
12543
12545
|
var _this = this;
|
|
12544
12546
|
if (!this._vehicleClaimRate) {
|
|
12545
12547
|
this.chartAccountsService.getChartAccountsById(exports.ChartAccountsListEnum.KLMS_TRAVELLED_FOR_WORK)
|
|
@@ -12556,7 +12558,7 @@
|
|
|
12556
12558
|
/**
|
|
12557
12559
|
* Get vehicles tax return for vehicle transactions & depreciations
|
|
12558
12560
|
*/
|
|
12559
|
-
|
|
12561
|
+
VehicleService.prototype.getVehiclesTaxReturn = function () {
|
|
12560
12562
|
var _this = this;
|
|
12561
12563
|
if (!this._vehicleTaxReturn) {
|
|
12562
12564
|
rxjs.combineLatest([
|
|
@@ -12593,7 +12595,7 @@
|
|
|
12593
12595
|
*
|
|
12594
12596
|
* @TODO alex refresh depreciation/transaction cache
|
|
12595
12597
|
*/
|
|
12596
|
-
|
|
12598
|
+
VehicleService.prototype.updateVehicleClaim = function (claim) {
|
|
12597
12599
|
var _this = this;
|
|
12598
12600
|
return this.http.put(this.environment.apiV2 + "/vehicle-claims/" + claim.id, claim).pipe(operators.map(function (response) {
|
|
12599
12601
|
var updatedVehicleClaim = classTransformer.plainToClass(VehicleClaim, response);
|
|
@@ -12608,7 +12610,7 @@
|
|
|
12608
12610
|
* @param logbook which should be added
|
|
12609
12611
|
* @param vehicle for which logbook object should be added
|
|
12610
12612
|
*/
|
|
12611
|
-
|
|
12613
|
+
VehicleService.prototype.addLogbook = function (logbook, vehicle) {
|
|
12612
12614
|
var _this = this;
|
|
12613
12615
|
return this.http.post(this.environment.apiV2 + "/vehicles/" + vehicle.id + "/logbooks", logbook)
|
|
12614
12616
|
.pipe(operators.map(function (response) {
|
|
@@ -12623,7 +12625,7 @@
|
|
|
12623
12625
|
* @param logbook which should be updated
|
|
12624
12626
|
* @param vehicle for which logbook object should be updated
|
|
12625
12627
|
*/
|
|
12626
|
-
|
|
12628
|
+
VehicleService.prototype.updateLogbook = function (logbook, vehicle) {
|
|
12627
12629
|
var _this = this;
|
|
12628
12630
|
return this.http.put(this.environment.apiV2 + "/vehicles/" + vehicle.id + "/logbooks/" + logbook.id, logbook).pipe(operators.map(function (response) {
|
|
12629
12631
|
var editedVehicle = _this._vehicles.find(function (v) { return v.id === vehicle.id; });
|
|
@@ -12639,7 +12641,7 @@
|
|
|
12639
12641
|
* @param logbook for which trip should be deleted
|
|
12640
12642
|
* @param vehicle for which trip should be deleted
|
|
12641
12643
|
*/
|
|
12642
|
-
|
|
12644
|
+
VehicleService.prototype.deleteTrip = function (logbook, vehicle) {
|
|
12643
12645
|
var _this = this;
|
|
12644
12646
|
return this.http.delete(this.environment.apiV2 + "/vehicles/" + vehicle.id + "/logbooks/" + logbook.id)
|
|
12645
12647
|
.pipe(operators.map(function () {
|
|
@@ -12655,7 +12657,7 @@
|
|
|
12655
12657
|
* Add new vehicle
|
|
12656
12658
|
* @param vehicle which should be added
|
|
12657
12659
|
*/
|
|
12658
|
-
|
|
12660
|
+
VehicleService.prototype.addVehicle = function (vehicle) {
|
|
12659
12661
|
var _this = this;
|
|
12660
12662
|
return this.http.post(this.environment.apiV2 + "/vehicles", { name: vehicle.name })
|
|
12661
12663
|
.pipe(operators.map(function (response) {
|
|
@@ -12667,7 +12669,7 @@
|
|
|
12667
12669
|
* Update vehicle
|
|
12668
12670
|
* @param vehicle which should be updated
|
|
12669
12671
|
*/
|
|
12670
|
-
|
|
12672
|
+
VehicleService.prototype.updateVehicle = function (vehicle) {
|
|
12671
12673
|
var _this = this;
|
|
12672
12674
|
return this.http.put(this.environment.apiV2 + "/vehicles/" + vehicle.id, { name: vehicle.name })
|
|
12673
12675
|
.pipe(operators.map(function (response) {
|
|
@@ -12680,7 +12682,7 @@
|
|
|
12680
12682
|
* Delete vehicle
|
|
12681
12683
|
* @param vehicle which should be deleted
|
|
12682
12684
|
*/
|
|
12683
|
-
|
|
12685
|
+
VehicleService.prototype.deleteVehicle = function (vehicle) {
|
|
12684
12686
|
var _this = this;
|
|
12685
12687
|
return this.http.delete(this.environment.apiV2 + "/vehicles/" + vehicle.id)
|
|
12686
12688
|
.pipe(operators.map(function () {
|
|
@@ -12691,11 +12693,11 @@
|
|
|
12691
12693
|
_this.vehiclesSubject.next(_this._vehicles.map(function (item) { return classTransformer.plainToClass(Vehicle, item); }));
|
|
12692
12694
|
}));
|
|
12693
12695
|
};
|
|
12694
|
-
return
|
|
12696
|
+
return VehicleService;
|
|
12695
12697
|
}());
|
|
12696
|
-
|
|
12697
|
-
|
|
12698
|
-
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type:
|
|
12698
|
+
VehicleService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: VehicleService, deps: [{ token: i1__namespace.HttpClient }, { token: TransactionService }, { token: DepreciationService }, { token: ChartAccountsService }, { token: EventDispatcherService }, { token: 'environment' }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
12699
|
+
VehicleService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: VehicleService, providedIn: 'root' });
|
|
12700
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: VehicleService, decorators: [{
|
|
12699
12701
|
type: i0.Injectable,
|
|
12700
12702
|
args: [{
|
|
12701
12703
|
providedIn: 'root'
|
|
@@ -12770,7 +12772,7 @@
|
|
|
12770
12772
|
return _this;
|
|
12771
12773
|
}
|
|
12772
12774
|
return TaxExemptionService;
|
|
12773
|
-
}(
|
|
12775
|
+
}(RestService));
|
|
12774
12776
|
TaxExemptionService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TaxExemptionService, deps: null, target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
12775
12777
|
TaxExemptionService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TaxExemptionService, providedIn: 'root' });
|
|
12776
12778
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TaxExemptionService, decorators: [{
|
|
@@ -12989,7 +12991,6 @@
|
|
|
12989
12991
|
exports.CAPITAL_COSTS_ITEMS = CAPITAL_COSTS_ITEMS;
|
|
12990
12992
|
exports.CHART_ACCOUNTS_CATEGORIES = CHART_ACCOUNTS_CATEGORIES;
|
|
12991
12993
|
exports.CalculationFormItem = CalculationFormItem;
|
|
12992
|
-
exports.CapitalProjectService = CapitalProjectService;
|
|
12993
12994
|
exports.ChartAccounts = ChartAccounts;
|
|
12994
12995
|
exports.ChartAccountsDepreciation = ChartAccountsDepreciation;
|
|
12995
12996
|
exports.ChartAccountsDepreciationService = ChartAccountsDepreciationService;
|
|
@@ -13023,6 +13024,7 @@
|
|
|
13023
13024
|
exports.DataTableColumn = DataTableColumn;
|
|
13024
13025
|
exports.Depreciation = Depreciation;
|
|
13025
13026
|
exports.DepreciationCapitalProject = DepreciationCapitalProject;
|
|
13027
|
+
exports.DepreciationCapitalProjectService = DepreciationCapitalProjectService;
|
|
13026
13028
|
exports.DepreciationCollection = DepreciationCollection;
|
|
13027
13029
|
exports.DepreciationForecast = DepreciationForecast;
|
|
13028
13030
|
exports.DepreciationForecastCollection = DepreciationForecastCollection;
|
|
@@ -13075,7 +13077,6 @@
|
|
|
13075
13077
|
exports.MessageService = MessageService;
|
|
13076
13078
|
exports.MyAccountHistory = MyAccountHistory;
|
|
13077
13079
|
exports.Notification = Notification;
|
|
13078
|
-
exports.NotificationService = NotificationService;
|
|
13079
13080
|
exports.Occupation = Occupation;
|
|
13080
13081
|
exports.OccupationService = OccupationService;
|
|
13081
13082
|
exports.PasswordForm = PasswordForm;
|
|
@@ -13113,6 +13114,7 @@
|
|
|
13113
13114
|
exports.SUBSCRIPTION_TITLE = SUBSCRIPTION_TITLE;
|
|
13114
13115
|
exports.SalaryForecast = SalaryForecast;
|
|
13115
13116
|
exports.SalaryForecastService = SalaryForecastService;
|
|
13117
|
+
exports.ServiceNotificationService = ServiceNotificationService;
|
|
13116
13118
|
exports.ServicePayment = ServicePayment;
|
|
13117
13119
|
exports.ServicePrice = ServicePrice;
|
|
13118
13120
|
exports.ServicePriceCollection = ServicePriceCollection;
|
|
@@ -13161,8 +13163,8 @@
|
|
|
13161
13163
|
exports.Vehicle = Vehicle;
|
|
13162
13164
|
exports.VehicleClaim = VehicleClaim;
|
|
13163
13165
|
exports.VehicleLogbook = VehicleLogbook;
|
|
13166
|
+
exports.VehicleService = VehicleService;
|
|
13164
13167
|
exports.WORK_TANK_LOGBOOK_PURPOSE_OPTIONS = WORK_TANK_LOGBOOK_PURPOSE_OPTIONS;
|
|
13165
|
-
exports.WorkTankService = WorkTankService;
|
|
13166
13168
|
exports.XlsxService = XlsxService;
|
|
13167
13169
|
exports.cloneDeep = cloneDeep;
|
|
13168
13170
|
exports.compare = compare;
|