@colijnit/transactionapi 260.1.2 → 260.1.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.
|
@@ -8,4 +8,6 @@ var LayoutCode;
|
|
|
8
8
|
LayoutCode["Invoice"] = "Factuur";
|
|
9
9
|
LayoutCode["PurchaseOrder"] = "Bestelbon";
|
|
10
10
|
LayoutCode["Quotation"] = "Offerte";
|
|
11
|
+
LayoutCode["ReserveSticker"] = "Reserveringssticker";
|
|
12
|
+
LayoutCode["OrderingSticker"] = "Bestelsticker";
|
|
11
13
|
})(LayoutCode = exports.LayoutCode || (exports.LayoutCode = {}));
|
|
@@ -104,6 +104,8 @@ export declare class TransactionLineInfo extends BusinessObject {
|
|
|
104
104
|
isFormFinal: boolean;
|
|
105
105
|
formId: number;
|
|
106
106
|
chosenPackageAmount: number;
|
|
107
|
+
chosenReservationAmount: number;
|
|
108
|
+
chosenOrderingAmount: number;
|
|
107
109
|
get articleTextAsArray(): string[];
|
|
108
110
|
get configuration(): string;
|
|
109
111
|
set configuration(value: string);
|
|
@@ -124,6 +124,14 @@ __decorate([
|
|
|
124
124
|
(0, no_db_field_decorator_1.NoDbField)(),
|
|
125
125
|
__metadata("design:type", Number)
|
|
126
126
|
], TransactionLineInfo.prototype, "chosenPackageAmount", void 0);
|
|
127
|
+
__decorate([
|
|
128
|
+
(0, no_db_field_decorator_1.NoDbField)(),
|
|
129
|
+
__metadata("design:type", Number)
|
|
130
|
+
], TransactionLineInfo.prototype, "chosenReservationAmount", void 0);
|
|
131
|
+
__decorate([
|
|
132
|
+
(0, no_db_field_decorator_1.NoDbField)(),
|
|
133
|
+
__metadata("design:type", Number)
|
|
134
|
+
], TransactionLineInfo.prototype, "chosenOrderingAmount", void 0);
|
|
127
135
|
__decorate([
|
|
128
136
|
(0, no_db_field_decorator_1.NoDbField)(),
|
|
129
137
|
__metadata("design:type", Array),
|