@colijnit/transactionapi 254.1.2 → 254.1.4
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/build/model/acceptance-container.bo.js +4 -4
- package/build/model/analyzed-order-confirmation.bo.js +1 -1
- package/build/model/art-quick-sel-o-article.js +4 -4
- package/build/model/article-category.js +2 -2
- package/build/model/article-full-object.js +6 -6
- package/build/model/article-group-image.js +1 -1
- package/build/model/article-group.js +1 -1
- package/build/model/article-list-object-extended.js +9 -9
- package/build/model/article-list-object.js +2 -2
- package/build/model/article-pricing.js +1 -1
- package/build/model/article.js +9 -9
- package/build/model/cash-drawer.bo.js +39 -39
- package/build/model/cash-register-group.bo.js +1 -1
- package/build/model/cash-type.bo.js +1 -1
- package/build/model/change-header-expected-scoring-date-request.js +1 -1
- package/build/model/change-line-delivery-date-request.js +1 -1
- package/build/model/change-line-direct-sell-request.js +1 -1
- package/build/model/color.js +10 -10
- package/build/model/copy-transaction-request.js +1 -1
- package/build/model/customer-group.bo.js +1 -1
- package/build/model/delivery-method.bo.js +4 -4
- package/build/model/deposit-payment.bo.js +1 -1
- package/build/model/doc-delivery-batch.bo.js +1 -1
- package/build/model/get-postal-code-retrieval-output-params.js +2 -2
- package/build/model/get-transport-orders-request.bo.js +1 -1
- package/build/model/info.js +2 -2
- package/build/model/linked-article.js +5 -5
- package/build/model/logistical-state-detail.bo.js +1 -1
- package/build/model/on-hold-code.bo.js +1 -1
- package/build/model/order-confirmation-analysis-result.bo.js +2 -2
- package/build/model/order-line-set-dto.js +1 -1
- package/build/model/order-line-set-info.bo.js +3 -3
- package/build/model/package-lsp.bo.js +1 -1
- package/build/model/payment-link-status.bo.js +4 -4
- package/build/model/payment-method.bo.js +3 -3
- package/build/model/payment.bo.js +2 -2
- package/build/model/plan-order-line.bo.js +4 -4
- package/build/model/plan-order.bo.js +14 -14
- package/build/model/planning-task-object.bo.js +5 -5
- package/build/model/planning-transport-week-day-part.bo.js +2 -2
- package/build/model/planning-transport-week-day.bo.js +5 -5
- package/build/model/planning-transport.bo.js +5 -5
- package/build/model/pos-group.bo.js +1 -1
- package/build/model/price-list.js +2 -2
- package/build/model/project-code.bo.js +2 -2
- package/build/model/psp-transaction-status.bo.js +1 -1
- package/build/model/purchase-advice-line.bo.js +3 -3
- package/build/model/purchase-order-line.bo.js +1 -1
- package/build/model/purchase-portal-line.bo.js +1 -1
- package/build/model/ref-transaction.bo.js +1 -1
- package/build/model/supplier-product.bo.js +3 -3
- package/build/model/supplier-stock-forecast.js +3 -3
- package/build/model/transaction-add-text-line-request.bo.js +1 -1
- package/build/model/transaction-article-warehouse.bo.js +7 -7
- package/build/model/transaction-deposit-payment-info.bo.js +1 -1
- package/build/model/transaction-info-history.bo.js +1 -1
- package/build/model/transaction-info-response.bo.js +7 -7
- package/build/model/transaction-info.bo.js +16 -16
- package/build/model/transaction-line-info.bo.js +36 -36
- package/build/model/transaction-list-object.bo.js +12 -12
- package/build/model/transaction-lock-result.bo.js +1 -1
- package/build/model/transaction-registered-payment-info.bo.js +1 -1
- package/build/model/transaction-search-view.bo.js +18 -18
- package/build/model/transaction-service-info.bo.js +4 -4
- package/build/model/transactionLineCharacteristic.bo.js +1 -1
- package/build/model/tree-object.js +3 -3
- package/build/model/turnover-group-image.js +1 -1
- package/build/model/vat.js +2 -2
- package/build/model/warehouse.bo.js +6 -6
- package/build/transaction-auth.js +1 -1
- package/build/type/object-configuration-default-value-type.d.ts +1 -1
- package/build/websocket/socket.js +3 -3
- package/package.json +1 -1
|
@@ -24,7 +24,7 @@ class LinkedArticle extends business_object_1.BusinessObject {
|
|
|
24
24
|
return this.artQuickSel ? this.artQuickSel.images : [];
|
|
25
25
|
}
|
|
26
26
|
get stockStatusAsStringEnum() {
|
|
27
|
-
return
|
|
27
|
+
return stock_status_enum_1.NumberToStockStatus(this.stockStatus);
|
|
28
28
|
}
|
|
29
29
|
get hasSelectorPublicatedImages() {
|
|
30
30
|
return this.selectorPublicatedImages.length > 0;
|
|
@@ -51,19 +51,19 @@ class LinkedArticle extends business_object_1.BusinessObject {
|
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
__decorate([
|
|
54
|
-
|
|
54
|
+
complex_field_decorator_1.ComplexField(co_document_1.CoDocument),
|
|
55
55
|
__metadata("design:type", co_document_1.CoDocument)
|
|
56
56
|
], LinkedArticle.prototype, "image", void 0);
|
|
57
57
|
__decorate([
|
|
58
|
-
|
|
58
|
+
no_db_field_decorator_1.NoDbField(),
|
|
59
59
|
__metadata("design:type", String)
|
|
60
60
|
], LinkedArticle.prototype, "mainImageDataUri", void 0);
|
|
61
61
|
__decorate([
|
|
62
|
-
|
|
62
|
+
no_db_field_decorator_1.NoDbField(),
|
|
63
63
|
__metadata("design:type", Boolean)
|
|
64
64
|
], LinkedArticle.prototype, "hasNoMainImageInDb", void 0);
|
|
65
65
|
__decorate([
|
|
66
|
-
|
|
66
|
+
no_db_field_decorator_1.NoDbField(),
|
|
67
67
|
__metadata("design:type", art_quick_sel_o_article_1.ArtQuickSelOArticle)
|
|
68
68
|
], LinkedArticle.prototype, "artQuickSel", void 0);
|
|
69
69
|
exports.LinkedArticle = LinkedArticle;
|
|
@@ -15,7 +15,7 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
15
15
|
class LogisticalStateDetail extends business_object_1.BusinessObject {
|
|
16
16
|
}
|
|
17
17
|
__decorate([
|
|
18
|
-
|
|
18
|
+
date_field_decorator_1.DateField(),
|
|
19
19
|
__metadata("design:type", Date)
|
|
20
20
|
], LogisticalStateDetail.prototype, "date", void 0);
|
|
21
21
|
exports.LogisticalStateDetail = LogisticalStateDetail;
|
|
@@ -16,7 +16,7 @@ let OnHoldCode = class OnHoldCode extends business_object_1.BusinessObject {
|
|
|
16
16
|
}
|
|
17
17
|
};
|
|
18
18
|
OnHoldCode = __decorate([
|
|
19
|
-
|
|
19
|
+
business_object_data_decorator_1.BusinessObjectData({
|
|
20
20
|
name: "OnHoldCode",
|
|
21
21
|
mapping: data_mapping_enum_1.DataMapping.Simplebasedata,
|
|
22
22
|
label: "ON_HOLD_CODE",
|
|
@@ -15,11 +15,11 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
15
15
|
class OrderConfirmationAnalysisResult extends business_object_1.BusinessObject {
|
|
16
16
|
}
|
|
17
17
|
__decorate([
|
|
18
|
-
|
|
18
|
+
date_field_decorator_1.DateField(),
|
|
19
19
|
__metadata("design:type", Date)
|
|
20
20
|
], OrderConfirmationAnalysisResult.prototype, "deliveryDate", void 0);
|
|
21
21
|
__decorate([
|
|
22
|
-
|
|
22
|
+
date_field_decorator_1.DateField(),
|
|
23
23
|
__metadata("design:type", Date)
|
|
24
24
|
], OrderConfirmationAnalysisResult.prototype, "orderConfirmationDate", void 0);
|
|
25
25
|
exports.OrderConfirmationAnalysisResult = OrderConfirmationAnalysisResult;
|
|
@@ -20,7 +20,7 @@ class OrderLineSetDTO {
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
__decorate([
|
|
23
|
-
|
|
23
|
+
no_db_field_decorator_1.NoDbField(),
|
|
24
24
|
__metadata("design:type", Boolean),
|
|
25
25
|
__metadata("design:paramtypes", [])
|
|
26
26
|
], OrderLineSetDTO.prototype, "isExternalOrderSet", null);
|
|
@@ -14,12 +14,12 @@ const no_db_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/d
|
|
|
14
14
|
const is_nill_function_1 = require("@colijnit/ioneconnector/build/utils/function/is-nill.function");
|
|
15
15
|
class OrderLineSetInfo {
|
|
16
16
|
get isExternalOrderSet() {
|
|
17
|
-
return (!
|
|
18
|
-
(!
|
|
17
|
+
return (!is_nill_function_1.isNill(this.catalogId) &&
|
|
18
|
+
(!is_nill_function_1.isNill(this.wtProjectNr) || !is_nill_function_1.isNill(this.vdProjectId) || !is_nill_function_1.isNill(this.aupOrderNr) || !is_nill_function_1.isNill(this.hdVariantId)));
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
__decorate([
|
|
22
|
-
|
|
22
|
+
no_db_field_decorator_1.NoDbField(),
|
|
23
23
|
__metadata("design:type", Boolean),
|
|
24
24
|
__metadata("design:paramtypes", [])
|
|
25
25
|
], OrderLineSetInfo.prototype, "isExternalOrderSet", null);
|
|
@@ -15,7 +15,7 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
15
15
|
class PackageLSP extends business_object_1.BusinessObject {
|
|
16
16
|
}
|
|
17
17
|
__decorate([
|
|
18
|
-
|
|
18
|
+
date_field_decorator_1.DateField(),
|
|
19
19
|
__metadata("design:type", Date)
|
|
20
20
|
], PackageLSP.prototype, "creationDate", void 0);
|
|
21
21
|
exports.PackageLSP = PackageLSP;
|
|
@@ -17,19 +17,19 @@ const complex_field_decorator_1 = require("@colijnit/ioneconnector/build/factory
|
|
|
17
17
|
class PaymentLinkStatus extends business_object_1.BusinessObject {
|
|
18
18
|
}
|
|
19
19
|
__decorate([
|
|
20
|
-
|
|
20
|
+
date_field_decorator_1.DateField(),
|
|
21
21
|
__metadata("design:type", Date)
|
|
22
22
|
], PaymentLinkStatus.prototype, "creationDate", void 0);
|
|
23
23
|
__decorate([
|
|
24
|
-
|
|
24
|
+
date_field_decorator_1.DateField(),
|
|
25
25
|
__metadata("design:type", Date)
|
|
26
26
|
], PaymentLinkStatus.prototype, "notificationDate", void 0);
|
|
27
27
|
__decorate([
|
|
28
|
-
|
|
28
|
+
date_field_decorator_1.DateField(),
|
|
29
29
|
__metadata("design:type", Date)
|
|
30
30
|
], PaymentLinkStatus.prototype, "payedDate", void 0);
|
|
31
31
|
__decorate([
|
|
32
|
-
|
|
32
|
+
complex_field_decorator_1.ComplexField(psp_transaction_status_bo_1.PspTransactionStatus),
|
|
33
33
|
__metadata("design:type", psp_transaction_status_bo_1.PspTransactionStatus)
|
|
34
34
|
], PaymentLinkStatus.prototype, "pspTransactionStatusDTO", void 0);
|
|
35
35
|
exports.PaymentLinkStatus = PaymentLinkStatus;
|
|
@@ -24,15 +24,15 @@ class PaymentMethod extends business_object_1.BusinessObject {
|
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
__decorate([
|
|
27
|
-
|
|
27
|
+
complex_array_decorator_1.ComplexArray(admin_payment_method_bo_1.AdminPaymentMethod),
|
|
28
28
|
__metadata("design:type", Array)
|
|
29
29
|
], PaymentMethod.prototype, "adminLinks", void 0);
|
|
30
30
|
__decorate([
|
|
31
|
-
|
|
31
|
+
complex_array_decorator_1.ComplexArray(co_document_1.CoDocument),
|
|
32
32
|
__metadata("design:type", Array)
|
|
33
33
|
], PaymentMethod.prototype, "documents", void 0);
|
|
34
34
|
__decorate([
|
|
35
|
-
|
|
35
|
+
complex_array_decorator_1.ComplexArray(cash_register_group_bo_1.CashRegisterGroup),
|
|
36
36
|
__metadata("design:type", Array)
|
|
37
37
|
], PaymentMethod.prototype, "posGroups", void 0);
|
|
38
38
|
exports.PaymentMethod = PaymentMethod;
|
|
@@ -17,11 +17,11 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
17
17
|
class Payment extends business_object_1.BusinessObject {
|
|
18
18
|
}
|
|
19
19
|
__decorate([
|
|
20
|
-
|
|
20
|
+
complex_field_decorator_1.ComplexField(deposit_payment_bo_1.DepositPayment),
|
|
21
21
|
__metadata("design:type", deposit_payment_bo_1.DepositPayment)
|
|
22
22
|
], Payment.prototype, "depositPayment", void 0);
|
|
23
23
|
__decorate([
|
|
24
|
-
|
|
24
|
+
date_field_decorator_1.DateField(),
|
|
25
25
|
__metadata("design:type", Date)
|
|
26
26
|
], Payment.prototype, "paymentDateTime", void 0);
|
|
27
27
|
exports.Payment = Payment;
|
|
@@ -16,19 +16,19 @@ const boolean_decorator_1 = require("@colijnit/ioneconnector/build/factory/decor
|
|
|
16
16
|
class PlanOrderLine extends business_object_1.BusinessObject {
|
|
17
17
|
}
|
|
18
18
|
__decorate([
|
|
19
|
-
|
|
19
|
+
date_field_decorator_1.DateField(),
|
|
20
20
|
__metadata("design:type", Date)
|
|
21
21
|
], PlanOrderLine.prototype, "deliveryDate", void 0);
|
|
22
22
|
__decorate([
|
|
23
|
-
|
|
23
|
+
boolean_decorator_1.BooleanText("T"),
|
|
24
24
|
__metadata("design:type", Boolean)
|
|
25
25
|
], PlanOrderLine.prototype, "planned", void 0);
|
|
26
26
|
__decorate([
|
|
27
|
-
|
|
27
|
+
boolean_decorator_1.BooleanText("T"),
|
|
28
28
|
__metadata("design:type", Boolean)
|
|
29
29
|
], PlanOrderLine.prototype, "fullyPlanned", void 0);
|
|
30
30
|
__decorate([
|
|
31
|
-
|
|
31
|
+
boolean_decorator_1.BooleanText("T"),
|
|
32
32
|
__metadata("design:type", Boolean)
|
|
33
33
|
], PlanOrderLine.prototype, "fullyInvoiced", void 0);
|
|
34
34
|
exports.PlanOrderLine = PlanOrderLine;
|
|
@@ -19,59 +19,59 @@ const complex_array_decorator_1 = require("@colijnit/ioneconnector/build/factory
|
|
|
19
19
|
class PlanOrder extends business_object_1.BusinessObject {
|
|
20
20
|
}
|
|
21
21
|
__decorate([
|
|
22
|
-
|
|
22
|
+
boolean_decorator_1.BooleanText("J"),
|
|
23
23
|
__metadata("design:type", Boolean)
|
|
24
24
|
], PlanOrder.prototype, "partDelivery", void 0);
|
|
25
25
|
__decorate([
|
|
26
|
-
|
|
26
|
+
date_field_decorator_1.DateField(),
|
|
27
27
|
__metadata("design:type", Date)
|
|
28
28
|
], PlanOrder.prototype, "startTime", void 0);
|
|
29
29
|
__decorate([
|
|
30
|
-
|
|
30
|
+
boolean_decorator_1.BooleanText("T"),
|
|
31
31
|
__metadata("design:type", Boolean)
|
|
32
32
|
], PlanOrder.prototype, "isDrop", void 0);
|
|
33
33
|
__decorate([
|
|
34
|
-
|
|
34
|
+
date_field_decorator_1.DateField(),
|
|
35
35
|
__metadata("design:type", Date)
|
|
36
36
|
], PlanOrder.prototype, "deliveryDate", void 0);
|
|
37
37
|
__decorate([
|
|
38
|
-
|
|
38
|
+
complex_array_decorator_1.ComplexArray(plan_order_line_bo_1.PlanOrderLine),
|
|
39
39
|
__metadata("design:type", Array)
|
|
40
40
|
], PlanOrder.prototype, "lines", void 0);
|
|
41
41
|
__decorate([
|
|
42
|
-
|
|
42
|
+
boolean_decorator_1.BooleanText("J"),
|
|
43
43
|
__metadata("design:type", Boolean)
|
|
44
44
|
], PlanOrder.prototype, "deliveryDateDefinite", void 0);
|
|
45
45
|
__decorate([
|
|
46
|
-
|
|
46
|
+
date_field_decorator_1.DateField(),
|
|
47
47
|
__metadata("design:type", Date)
|
|
48
48
|
], PlanOrder.prototype, "transactionDate", void 0);
|
|
49
49
|
__decorate([
|
|
50
|
-
|
|
50
|
+
boolean_decorator_1.BooleanText("T"),
|
|
51
51
|
__metadata("design:type", Boolean)
|
|
52
52
|
], PlanOrder.prototype, "containsLines", void 0);
|
|
53
53
|
__decorate([
|
|
54
|
-
|
|
54
|
+
date_field_decorator_1.DateField(),
|
|
55
55
|
__metadata("design:type", Date)
|
|
56
56
|
], PlanOrder.prototype, "endTime", void 0);
|
|
57
57
|
__decorate([
|
|
58
|
-
|
|
58
|
+
date_field_decorator_1.DateField(),
|
|
59
59
|
__metadata("design:type", Date)
|
|
60
60
|
], PlanOrder.prototype, "preferredDeliveryDate", void 0);
|
|
61
61
|
__decorate([
|
|
62
|
-
|
|
62
|
+
boolean_decorator_1.BooleanText("T"),
|
|
63
63
|
__metadata("design:type", Boolean)
|
|
64
64
|
], PlanOrder.prototype, "chained", void 0);
|
|
65
65
|
__decorate([
|
|
66
|
-
|
|
66
|
+
boolean_decorator_1.BooleanText("T"),
|
|
67
67
|
__metadata("design:type", Boolean)
|
|
68
68
|
], PlanOrder.prototype, "linesLoaded", void 0);
|
|
69
69
|
__decorate([
|
|
70
|
-
|
|
70
|
+
boolean_decorator_1.BooleanText("T"),
|
|
71
71
|
__metadata("design:type", Boolean)
|
|
72
72
|
], PlanOrder.prototype, "tasksLoaded", void 0);
|
|
73
73
|
__decorate([
|
|
74
|
-
|
|
74
|
+
complex_array_decorator_1.ComplexArray(planning_task_object_bo_1.PlanningTask),
|
|
75
75
|
__metadata("design:type", Array)
|
|
76
76
|
], PlanOrder.prototype, "tasks", void 0);
|
|
77
77
|
exports.PlanOrder = PlanOrder;
|
|
@@ -16,23 +16,23 @@ const boolean_decorator_1 = require("@colijnit/ioneconnector/build/factory/decor
|
|
|
16
16
|
class PlanningTask extends business_object_1.BusinessObject {
|
|
17
17
|
}
|
|
18
18
|
__decorate([
|
|
19
|
-
|
|
19
|
+
boolean_decorator_1.BooleanText("T"),
|
|
20
20
|
__metadata("design:type", Boolean)
|
|
21
21
|
], PlanningTask.prototype, "selected", void 0);
|
|
22
22
|
__decorate([
|
|
23
|
-
|
|
23
|
+
date_field_decorator_1.DateField(),
|
|
24
24
|
__metadata("design:type", Date)
|
|
25
25
|
], PlanningTask.prototype, "creationDate", void 0);
|
|
26
26
|
__decorate([
|
|
27
|
-
|
|
27
|
+
date_field_decorator_1.DateField(),
|
|
28
28
|
__metadata("design:type", Date)
|
|
29
29
|
], PlanningTask.prototype, "executionDate", void 0);
|
|
30
30
|
__decorate([
|
|
31
|
-
|
|
31
|
+
boolean_decorator_1.BooleanText("T"),
|
|
32
32
|
__metadata("design:type", Boolean)
|
|
33
33
|
], PlanningTask.prototype, "planned", void 0);
|
|
34
34
|
__decorate([
|
|
35
|
-
|
|
35
|
+
date_field_decorator_1.DateField(),
|
|
36
36
|
__metadata("design:type", Date)
|
|
37
37
|
], PlanningTask.prototype, "preferredDate", void 0);
|
|
38
38
|
exports.PlanningTask = PlanningTask;
|
|
@@ -15,11 +15,11 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
15
15
|
class PlanningTransportWeekDayPart extends business_object_1.BusinessObject {
|
|
16
16
|
}
|
|
17
17
|
__decorate([
|
|
18
|
-
|
|
18
|
+
date_field_decorator_1.DateField(),
|
|
19
19
|
__metadata("design:type", Date)
|
|
20
20
|
], PlanningTransportWeekDayPart.prototype, "startDate", void 0);
|
|
21
21
|
__decorate([
|
|
22
|
-
|
|
22
|
+
date_field_decorator_1.DateField(),
|
|
23
23
|
__metadata("design:type", Date)
|
|
24
24
|
], PlanningTransportWeekDayPart.prototype, "endDate", void 0);
|
|
25
25
|
exports.PlanningTransportWeekDayPart = PlanningTransportWeekDayPart;
|
|
@@ -19,23 +19,23 @@ const complex_array_decorator_1 = require("@colijnit/ioneconnector/build/factory
|
|
|
19
19
|
class PlanningTransportWeekDay extends business_object_1.BusinessObject {
|
|
20
20
|
}
|
|
21
21
|
__decorate([
|
|
22
|
-
|
|
22
|
+
date_field_decorator_1.DateField(),
|
|
23
23
|
__metadata("design:type", Date)
|
|
24
24
|
], PlanningTransportWeekDay.prototype, "date", void 0);
|
|
25
25
|
__decorate([
|
|
26
|
-
|
|
26
|
+
boolean_decorator_1.BooleanText("J"),
|
|
27
27
|
__metadata("design:type", Boolean)
|
|
28
28
|
], PlanningTransportWeekDay.prototype, "availableOnDate", void 0);
|
|
29
29
|
__decorate([
|
|
30
|
-
|
|
30
|
+
complex_array_decorator_1.ComplexArray(plan_order_bo_1.PlanOrder),
|
|
31
31
|
__metadata("design:type", Array)
|
|
32
32
|
], PlanningTransportWeekDay.prototype, "plannedOrders", void 0);
|
|
33
33
|
__decorate([
|
|
34
|
-
|
|
34
|
+
boolean_decorator_1.BooleanText("T"),
|
|
35
35
|
__metadata("design:type", Boolean)
|
|
36
36
|
], PlanningTransportWeekDay.prototype, "ordersLoaded", void 0);
|
|
37
37
|
__decorate([
|
|
38
|
-
|
|
38
|
+
complex_array_decorator_1.ComplexArray(planning_employee_bo_1.PlanningEmployee),
|
|
39
39
|
__metadata("design:type", Array)
|
|
40
40
|
], PlanningTransportWeekDay.prototype, "employees", void 0);
|
|
41
41
|
exports.PlanningTransportWeekDay = PlanningTransportWeekDay;
|
|
@@ -16,23 +16,23 @@ const boolean_decorator_1 = require("@colijnit/ioneconnector/build/factory/decor
|
|
|
16
16
|
class PlanningTransport extends business_object_1.BusinessObject {
|
|
17
17
|
}
|
|
18
18
|
__decorate([
|
|
19
|
-
|
|
19
|
+
boolean_decorator_1.BooleanText("J"),
|
|
20
20
|
__metadata("design:type", Boolean)
|
|
21
21
|
], PlanningTransport.prototype, "available", void 0);
|
|
22
22
|
__decorate([
|
|
23
|
-
|
|
23
|
+
boolean_decorator_1.BooleanText("T"),
|
|
24
24
|
__metadata("design:type", Boolean)
|
|
25
25
|
], PlanningTransport.prototype, "active", void 0);
|
|
26
26
|
__decorate([
|
|
27
|
-
|
|
27
|
+
boolean_decorator_1.BooleanText("T"),
|
|
28
28
|
__metadata("design:type", Boolean)
|
|
29
29
|
], PlanningTransport.prototype, "display2", void 0);
|
|
30
30
|
__decorate([
|
|
31
|
-
|
|
31
|
+
date_field_decorator_1.DateField(),
|
|
32
32
|
__metadata("design:type", Date)
|
|
33
33
|
], PlanningTransport.prototype, "startTime", void 0);
|
|
34
34
|
__decorate([
|
|
35
|
-
|
|
35
|
+
date_field_decorator_1.DateField(),
|
|
36
36
|
__metadata("design:type", Date)
|
|
37
37
|
], PlanningTransport.prototype, "endTime", void 0);
|
|
38
38
|
exports.PlanningTransport = PlanningTransport;
|
|
@@ -20,7 +20,7 @@ class PosGroup extends business_object_1.BusinessObject {
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
__decorate([
|
|
23
|
-
|
|
23
|
+
complex_array_decorator_1.ComplexArray(admin_pos_group_bo_1.AdminPosGroup),
|
|
24
24
|
__metadata("design:type", Array)
|
|
25
25
|
], PosGroup.prototype, "adminLinks", void 0);
|
|
26
26
|
exports.PosGroup = PosGroup;
|
|
@@ -18,11 +18,11 @@ class PriceList extends business_object_1.BusinessObject {
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
__decorate([
|
|
21
|
-
|
|
21
|
+
date_field_decorator_1.DateField(),
|
|
22
22
|
__metadata("design:type", Date)
|
|
23
23
|
], PriceList.prototype, "startDate", void 0);
|
|
24
24
|
__decorate([
|
|
25
|
-
|
|
25
|
+
date_field_decorator_1.DateField(),
|
|
26
26
|
__metadata("design:type", Date)
|
|
27
27
|
], PriceList.prototype, "endDate", void 0);
|
|
28
28
|
exports.PriceList = PriceList;
|
|
@@ -15,11 +15,11 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
15
15
|
class ProjectCode extends business_object_1.BusinessObject {
|
|
16
16
|
}
|
|
17
17
|
__decorate([
|
|
18
|
-
|
|
18
|
+
date_field_decorator_1.DateField(),
|
|
19
19
|
__metadata("design:type", Date)
|
|
20
20
|
], ProjectCode.prototype, "startDate", void 0);
|
|
21
21
|
__decorate([
|
|
22
|
-
|
|
22
|
+
date_field_decorator_1.DateField(),
|
|
23
23
|
__metadata("design:type", Date)
|
|
24
24
|
], ProjectCode.prototype, "endDate", void 0);
|
|
25
25
|
exports.ProjectCode = ProjectCode;
|
|
@@ -15,7 +15,7 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
15
15
|
class PspTransactionStatus extends business_object_1.BusinessObject {
|
|
16
16
|
}
|
|
17
17
|
__decorate([
|
|
18
|
-
|
|
18
|
+
date_field_decorator_1.DateField(),
|
|
19
19
|
__metadata("design:type", Date)
|
|
20
20
|
], PspTransactionStatus.prototype, "statusDate", void 0);
|
|
21
21
|
exports.PspTransactionStatus = PspTransactionStatus;
|
|
@@ -15,15 +15,15 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
15
15
|
class PurchaseAdviceLine extends business_object_1.BusinessObject {
|
|
16
16
|
}
|
|
17
17
|
__decorate([
|
|
18
|
-
|
|
18
|
+
date_field_decorator_1.DateField(),
|
|
19
19
|
__metadata("design:type", Date)
|
|
20
20
|
], PurchaseAdviceLine.prototype, "orderDate", void 0);
|
|
21
21
|
__decorate([
|
|
22
|
-
|
|
22
|
+
date_field_decorator_1.DateField(),
|
|
23
23
|
__metadata("design:type", Date)
|
|
24
24
|
], PurchaseAdviceLine.prototype, "deliveryDate", void 0);
|
|
25
25
|
__decorate([
|
|
26
|
-
|
|
26
|
+
date_field_decorator_1.DateField(),
|
|
27
27
|
__metadata("design:type", Date)
|
|
28
28
|
], PurchaseAdviceLine.prototype, "deliveryDateSales", void 0);
|
|
29
29
|
exports.PurchaseAdviceLine = PurchaseAdviceLine;
|
|
@@ -15,7 +15,7 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
15
15
|
class PurchaseOrderLine extends business_object_1.BusinessObject {
|
|
16
16
|
}
|
|
17
17
|
__decorate([
|
|
18
|
-
|
|
18
|
+
date_field_decorator_1.DateField(),
|
|
19
19
|
__metadata("design:type", Date)
|
|
20
20
|
], PurchaseOrderLine.prototype, "acceptDate", void 0);
|
|
21
21
|
exports.PurchaseOrderLine = PurchaseOrderLine;
|
|
@@ -20,7 +20,7 @@ class PurchasePortalLine extends business_object_1.BusinessObject {
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
__decorate([
|
|
23
|
-
|
|
23
|
+
complex_array_decorator_1.ComplexArray(doc_delivery_batch_bo_1.DocDeliveryBatch),
|
|
24
24
|
__metadata("design:type", Array)
|
|
25
25
|
], PurchasePortalLine.prototype, "docBatchArray", void 0);
|
|
26
26
|
exports.PurchasePortalLine = PurchasePortalLine;
|
|
@@ -15,7 +15,7 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
15
15
|
class RefTransaction extends business_object_1.BusinessObject {
|
|
16
16
|
}
|
|
17
17
|
__decorate([
|
|
18
|
-
|
|
18
|
+
date_field_decorator_1.DateField(),
|
|
19
19
|
__metadata("design:type", Date)
|
|
20
20
|
], RefTransaction.prototype, "refTransactionDate", void 0);
|
|
21
21
|
exports.RefTransaction = RefTransaction;
|
|
@@ -15,15 +15,15 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
15
15
|
class SupplierProduct extends business_object_1.BusinessObject {
|
|
16
16
|
}
|
|
17
17
|
__decorate([
|
|
18
|
-
|
|
18
|
+
date_field_decorator_1.DateField(),
|
|
19
19
|
__metadata("design:type", Date)
|
|
20
20
|
], SupplierProduct.prototype, "updateStock", void 0);
|
|
21
21
|
__decorate([
|
|
22
|
-
|
|
22
|
+
date_field_decorator_1.DateField(),
|
|
23
23
|
__metadata("design:type", Date)
|
|
24
24
|
], SupplierProduct.prototype, "periodStartNotApplicable", void 0);
|
|
25
25
|
__decorate([
|
|
26
|
-
|
|
26
|
+
date_field_decorator_1.DateField(),
|
|
27
27
|
__metadata("design:type", Date)
|
|
28
28
|
], SupplierProduct.prototype, "periodStopNotApplicable", void 0);
|
|
29
29
|
exports.SupplierProduct = SupplierProduct;
|
|
@@ -14,15 +14,15 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
14
14
|
class SupplierStockForecast {
|
|
15
15
|
}
|
|
16
16
|
__decorate([
|
|
17
|
-
|
|
17
|
+
date_field_decorator_1.DateField(),
|
|
18
18
|
__metadata("design:type", Date)
|
|
19
19
|
], SupplierStockForecast.prototype, "deliveryDate", void 0);
|
|
20
20
|
__decorate([
|
|
21
|
-
|
|
21
|
+
date_field_decorator_1.DateField(),
|
|
22
22
|
__metadata("design:type", Date)
|
|
23
23
|
], SupplierStockForecast.prototype, "confirmedDeliveryDate", void 0);
|
|
24
24
|
__decorate([
|
|
25
|
-
|
|
25
|
+
date_field_decorator_1.DateField(),
|
|
26
26
|
__metadata("design:type", Date)
|
|
27
27
|
], SupplierStockForecast.prototype, "arrivalDate", void 0);
|
|
28
28
|
exports.SupplierStockForecast = SupplierStockForecast;
|
|
@@ -17,7 +17,7 @@ let TransactionAddTextLineRequest = class TransactionAddTextLineRequest extends
|
|
|
17
17
|
}
|
|
18
18
|
};
|
|
19
19
|
TransactionAddTextLineRequest = __decorate([
|
|
20
|
-
|
|
20
|
+
business_object_data_decorator_1.BusinessObjectData({
|
|
21
21
|
name: "TransactionLineInfo",
|
|
22
22
|
mapping: data_mapping_enum_1.DataMapping.Transaction,
|
|
23
23
|
})
|
|
@@ -25,28 +25,28 @@ class TransactionArticleWarehouse extends business_object_1.BusinessObject {
|
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
__decorate([
|
|
28
|
-
|
|
28
|
+
boolean_decorator_1.BooleanText(),
|
|
29
29
|
__metadata("design:type", Boolean)
|
|
30
30
|
], TransactionArticleWarehouse.prototype, "noReturns", void 0);
|
|
31
31
|
__decorate([
|
|
32
|
-
|
|
32
|
+
boolean_decorator_1.BooleanText(),
|
|
33
33
|
__metadata("design:type", Boolean)
|
|
34
34
|
], TransactionArticleWarehouse.prototype, "defaultWarehouse", void 0);
|
|
35
35
|
__decorate([
|
|
36
|
-
|
|
36
|
+
boolean_decorator_1.BooleanText(),
|
|
37
37
|
__metadata("design:type", Boolean)
|
|
38
38
|
], TransactionArticleWarehouse.prototype, "ownWarehouse", void 0);
|
|
39
39
|
__decorate([
|
|
40
|
-
|
|
40
|
+
boolean_decorator_1.BooleanText(),
|
|
41
41
|
__metadata("design:type", Boolean)
|
|
42
42
|
], TransactionArticleWarehouse.prototype, "interbranch", void 0);
|
|
43
43
|
__decorate([
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
no_db_field_decorator_1.NoDbField(),
|
|
45
|
+
boolean_decorator_1.BooleanText(),
|
|
46
46
|
__metadata("design:type", Boolean)
|
|
47
47
|
], TransactionArticleWarehouse.prototype, "taggedStockSelected", void 0);
|
|
48
48
|
__decorate([
|
|
49
|
-
|
|
49
|
+
complex_array_decorator_1.ComplexArray(tag_stock_item_bo_1.TagStockItem),
|
|
50
50
|
__metadata("design:type", Array)
|
|
51
51
|
], TransactionArticleWarehouse.prototype, "taggedStock", void 0);
|
|
52
52
|
exports.TransactionArticleWarehouse = TransactionArticleWarehouse;
|
|
@@ -20,7 +20,7 @@ class TransactionDepositPaymentInfo extends business_object_1.BusinessObject {
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
__decorate([
|
|
23
|
-
|
|
23
|
+
complex_array_decorator_1.ComplexArray(deposit_payment_bo_1.DepositPayment),
|
|
24
24
|
__metadata("design:type", Array)
|
|
25
25
|
], TransactionDepositPaymentInfo.prototype, "depositPayments", void 0);
|
|
26
26
|
exports.TransactionDepositPaymentInfo = TransactionDepositPaymentInfo;
|
|
@@ -14,7 +14,7 @@ const date_field_decorator_1 = require("@colijnit/ioneconnector/build/factory/de
|
|
|
14
14
|
class TransactionInfoHistory {
|
|
15
15
|
}
|
|
16
16
|
__decorate([
|
|
17
|
-
|
|
17
|
+
date_field_decorator_1.DateField(),
|
|
18
18
|
__metadata("design:type", Date)
|
|
19
19
|
], TransactionInfoHistory.prototype, "transactionDate", void 0);
|
|
20
20
|
exports.TransactionInfoHistory = TransactionInfoHistory;
|
|
@@ -33,31 +33,31 @@ class TransactionInfoResponse extends transaction_response_base_bo_1.Transaction
|
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
__decorate([
|
|
36
|
-
|
|
36
|
+
complex_field_decorator_1.ComplexField(transaction_info_bo_1.TransactionInfo),
|
|
37
37
|
__metadata("design:type", transaction_info_bo_1.TransactionInfo)
|
|
38
38
|
], TransactionInfoResponse.prototype, "transactionInfo", void 0);
|
|
39
39
|
__decorate([
|
|
40
|
-
|
|
40
|
+
complex_array_decorator_1.ComplexArray(transaction_line_info_bo_1.TransactionLineInfo),
|
|
41
41
|
__metadata("design:type", Array)
|
|
42
42
|
], TransactionInfoResponse.prototype, "transactionLines", void 0);
|
|
43
43
|
__decorate([
|
|
44
|
-
|
|
44
|
+
complex_array_decorator_1.ComplexArray(transaction_delivery_cost_line_info_bo_1.TransactionDeliveryCostLineInfo),
|
|
45
45
|
__metadata("design:type", Array)
|
|
46
46
|
], TransactionInfoResponse.prototype, "deliveryCostLines", void 0);
|
|
47
47
|
__decorate([
|
|
48
|
-
|
|
48
|
+
complex_field_decorator_1.ComplexField(transaction_service_info_bo_1.TransactionServiceInfo),
|
|
49
49
|
__metadata("design:type", transaction_service_info_bo_1.TransactionServiceInfo)
|
|
50
50
|
], TransactionInfoResponse.prototype, "transactionServiceInfo", void 0);
|
|
51
51
|
__decorate([
|
|
52
|
-
|
|
52
|
+
complex_field_decorator_1.ComplexField(transaction_total_bo_1.TransactionTotal),
|
|
53
53
|
__metadata("design:type", transaction_total_bo_1.TransactionTotal)
|
|
54
54
|
], TransactionInfoResponse.prototype, "transactionTotal", void 0);
|
|
55
55
|
__decorate([
|
|
56
|
-
|
|
56
|
+
complex_array_decorator_1.ComplexArray(header_operation_status_bo_1.HeaderOperationStatus),
|
|
57
57
|
__metadata("design:type", Array)
|
|
58
58
|
], TransactionInfoResponse.prototype, "headerOperationStatuses", void 0);
|
|
59
59
|
__decorate([
|
|
60
|
-
|
|
60
|
+
complex_array_decorator_1.ComplexArray(line_operation_status_bo_1.LineOperationStatus),
|
|
61
61
|
__metadata("design:type", Array)
|
|
62
62
|
], TransactionInfoResponse.prototype, "lineOperationStatuses", void 0);
|
|
63
63
|
exports.TransactionInfoResponse = TransactionInfoResponse;
|