@colijnit/transactionapi 258.1.11 → 258.1.13
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.
|
@@ -96,6 +96,10 @@ export declare class TransactionLineInfo extends BusinessObject {
|
|
|
96
96
|
defaultLocationNr: string;
|
|
97
97
|
interBranchSourceWarehouseNr: number;
|
|
98
98
|
interBranchSourceCommissionCode: string;
|
|
99
|
+
packagesAmountForTransport: number;
|
|
100
|
+
purchasePackageCode: string;
|
|
101
|
+
salesPackageCode: string;
|
|
102
|
+
chosenPackageAmount: number;
|
|
99
103
|
get articleTextAsArray(): string[];
|
|
100
104
|
get configuration(): string;
|
|
101
105
|
set configuration(value: string);
|
|
@@ -126,6 +130,7 @@ export declare class TransactionLineInfo extends BusinessObject {
|
|
|
126
130
|
refTransactions: TransactionRefTransaction[];
|
|
127
131
|
refServiceTransactions: TransactionRefTransaction[];
|
|
128
132
|
refTransactionsPurchase: TransactionRefTransaction[];
|
|
133
|
+
refTransactionsInvoice: TransactionRefTransaction[];
|
|
129
134
|
deliveryCostLine: boolean;
|
|
130
135
|
linkedAnalysisResultId: number;
|
|
131
136
|
set visible(value: boolean);
|
|
@@ -36,6 +36,7 @@ class TransactionLineInfo extends business_object_1.BusinessObject {
|
|
|
36
36
|
this.refTransactions = [];
|
|
37
37
|
this.refServiceTransactions = [];
|
|
38
38
|
this.refTransactionsPurchase = [];
|
|
39
|
+
this.refTransactionsInvoice = [];
|
|
39
40
|
this.deliveryCostLine = false;
|
|
40
41
|
this.visibilityChange = new rxjs_1.Subject();
|
|
41
42
|
this._visible = false;
|
|
@@ -114,6 +115,10 @@ __decorate([
|
|
|
114
115
|
(0, complex_field_decorator_1.ComplexField)(article_line_status_bo_1.ArticleLineStatus),
|
|
115
116
|
__metadata("design:type", article_line_status_bo_1.ArticleLineStatus)
|
|
116
117
|
], TransactionLineInfo.prototype, "articleLineStatus", void 0);
|
|
118
|
+
__decorate([
|
|
119
|
+
(0, no_db_field_decorator_1.NoDbField)(),
|
|
120
|
+
__metadata("design:type", Number)
|
|
121
|
+
], TransactionLineInfo.prototype, "chosenPackageAmount", void 0);
|
|
117
122
|
__decorate([
|
|
118
123
|
(0, no_db_field_decorator_1.NoDbField)(),
|
|
119
124
|
__metadata("design:type", Array),
|
|
@@ -233,6 +238,10 @@ __decorate([
|
|
|
233
238
|
(0, no_db_field_decorator_1.NoDbField)(),
|
|
234
239
|
__metadata("design:type", Array)
|
|
235
240
|
], TransactionLineInfo.prototype, "refTransactionsPurchase", void 0);
|
|
241
|
+
__decorate([
|
|
242
|
+
(0, no_db_field_decorator_1.NoDbField)(),
|
|
243
|
+
__metadata("design:type", Array)
|
|
244
|
+
], TransactionLineInfo.prototype, "refTransactionsInvoice", void 0);
|
|
236
245
|
__decorate([
|
|
237
246
|
(0, no_db_field_decorator_1.NoDbField)(),
|
|
238
247
|
__metadata("design:type", Boolean)
|