@colijnit/transactionapi 1.1.159 → 1.1.160
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.
|
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.PlanOrderLine = void 0;
|
|
13
13
|
const business_object_1 = require("@colijnit/ioneconnector/build/model/business-object");
|
|
14
14
|
const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/decorators/date-field.decorator");
|
|
15
|
+
const boolean_decorator_1 = require("@colijnit/ioneconnector/build/factory/decorators/boolean.decorator");
|
|
15
16
|
class PlanOrderLine extends business_object_1.BusinessObject {
|
|
16
17
|
constructor() {
|
|
17
18
|
super(...arguments);
|
|
@@ -22,4 +23,16 @@ __decorate([
|
|
|
22
23
|
date_field_decorator_1.DateField(),
|
|
23
24
|
__metadata("design:type", Date)
|
|
24
25
|
], PlanOrderLine.prototype, "deliveryDate", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
boolean_decorator_1.BooleanText("T"),
|
|
28
|
+
__metadata("design:type", Boolean)
|
|
29
|
+
], PlanOrderLine.prototype, "planned", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
boolean_decorator_1.BooleanText("T"),
|
|
32
|
+
__metadata("design:type", Boolean)
|
|
33
|
+
], PlanOrderLine.prototype, "fullyPlanned", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
boolean_decorator_1.BooleanText("T"),
|
|
36
|
+
__metadata("design:type", Boolean)
|
|
37
|
+
], PlanOrderLine.prototype, "fullyInvoiced", void 0);
|
|
25
38
|
exports.PlanOrderLine = PlanOrderLine;
|