@colijnit/transactionapi 257.1.5 → 257.1.6
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.
|
@@ -122,6 +122,7 @@ export declare class TransactionLineInfo extends BusinessObject {
|
|
|
122
122
|
purchasePortalLine: PurchasePortalLine;
|
|
123
123
|
refTransactions: TransactionRefTransaction[];
|
|
124
124
|
refServiceTransactions: TransactionRefTransaction[];
|
|
125
|
+
refTransactionsPurchase: TransactionRefTransaction[];
|
|
125
126
|
deliveryCostLine: boolean;
|
|
126
127
|
linkedAnalysisResultId: number;
|
|
127
128
|
set visible(value: boolean);
|
|
@@ -35,6 +35,7 @@ class TransactionLineInfo extends business_object_1.BusinessObject {
|
|
|
35
35
|
this.purchasePortalLine = new purchase_portal_line_bo_1.PurchasePortalLine();
|
|
36
36
|
this.refTransactions = [];
|
|
37
37
|
this.refServiceTransactions = [];
|
|
38
|
+
this.refTransactionsPurchase = [];
|
|
38
39
|
this.deliveryCostLine = false;
|
|
39
40
|
this.visibilityChange = new rxjs_1.Subject();
|
|
40
41
|
this._visible = false;
|
|
@@ -228,6 +229,10 @@ __decorate([
|
|
|
228
229
|
(0, no_db_field_decorator_1.NoDbField)(),
|
|
229
230
|
__metadata("design:type", Array)
|
|
230
231
|
], TransactionLineInfo.prototype, "refServiceTransactions", void 0);
|
|
232
|
+
__decorate([
|
|
233
|
+
(0, no_db_field_decorator_1.NoDbField)(),
|
|
234
|
+
__metadata("design:type", Array)
|
|
235
|
+
], TransactionLineInfo.prototype, "refTransactionsPurchase", void 0);
|
|
231
236
|
__decorate([
|
|
232
237
|
(0, no_db_field_decorator_1.NoDbField)(),
|
|
233
238
|
__metadata("design:type", Boolean)
|