@colijnit/transaction 12.1.83 → 12.1.85
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/bundles/colijnit-transaction.umd.js +270 -219
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +57 -55
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +58 -56
- package/esm2015/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.js +3 -3
- package/esm2015/lib/component/checkout/checkout-overview-payment/checkout-overview-payment.component.js +2 -2
- package/esm2015/lib/component/checkout/checkout.module.js +5 -7
- package/esm2015/lib/component/deposit-payment/deposit-payment.component.js +71 -0
- package/esm2015/lib/component/deposit-payment/deposit-payment.module.js +27 -0
- package/esm2015/lib/component/payment/payment.component.js +25 -25
- package/esm2015/lib/component/payment/payment.module.js +3 -3
- package/esm2015/lib/component/transaction/transaction.module.js +3 -1
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.js +12 -12
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.js +5 -5
- package/esm2015/lib/component/transaction-header-fields/transaction-header-deposit-amount.component.js +58 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-deposit-amount.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-deposit-percentage.component.js +57 -0
- package/esm2015/lib/component/transaction-header-fields/{transaction-header-downpayment-amount.module.js → transaction-header-deposit-percentage.module.js} +6 -6
- package/esm2015/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.component.js +94 -0
- package/esm2015/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.module.js +40 -0
- package/esm2015/lib/component/transaction-line-statusbar/transaction-line-statusbar.component.js +2 -3
- package/esm2015/lib/enum/icon.enum.js +2 -1
- package/esm2015/lib/model/deposit-payment-view-model.js +7 -0
- package/esm2015/lib/model/icon-svg.js +2 -1
- package/esm2015/lib/service/payment.service.js +5 -5
- package/esm2015/lib/service/transaction-connector-adapter.service.js +14 -29
- package/esm2015/lib/service/transaction-connector.service.js +5 -15
- package/esm2015/lib/service/transaction-mapping.service.js +3 -1
- package/esm2015/lib/service/transaction.service.js +5 -5
- package/fesm2015/colijnit-transaction.js +252 -162
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/{down-payment/down-payment.component.d.ts → deposit-payment/deposit-payment.component.d.ts} +4 -4
- package/lib/component/deposit-payment/deposit-payment.module.d.ts +2 -0
- package/lib/component/{down-payment → deposit-payment}/style/_layout.scss +2 -2
- package/lib/component/{down-payment → deposit-payment}/style/_material-definition.scss +0 -0
- package/lib/component/deposit-payment/style/_theme.scss +4 -0
- package/lib/component/{down-payment → deposit-payment}/style/material.scss +0 -0
- package/lib/component/payment/payment.component.d.ts +4 -4
- package/lib/component/payment/style/_layout.scss +2 -2
- package/lib/component/payment/style/material.scss +1 -1
- package/lib/component/transaction-header/transaction-header-payment/style/_layout.scss +1 -1
- package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.d.ts +1 -1
- package/lib/component/transaction-header-fields/{transaction-header-downpayment-percentage.component.d.ts → transaction-header-deposit-amount.component.d.ts} +1 -1
- package/lib/component/transaction-header-fields/transaction-header-deposit-amount.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/{transaction-header-downpayment-amount.component.d.ts → transaction-header-deposit-percentage.component.d.ts} +1 -1
- package/lib/component/transaction-header-fields/transaction-header-deposit-percentage.module.d.ts +2 -0
- package/lib/component/transaction-line/transaction-purchase-order-line/style/_layout.scss +57 -0
- package/lib/component/transaction-line/transaction-purchase-order-line/style/_material-definition.scss +0 -0
- package/lib/component/transaction-line/transaction-purchase-order-line/style/_theme.scss +4 -0
- package/lib/component/transaction-line/transaction-purchase-order-line/style/material.scss +4 -0
- package/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.component.d.ts +25 -0
- package/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.module.d.ts +2 -0
- package/lib/component/transaction-lines/style/material.scss +1 -0
- package/lib/enum/icon.enum.d.ts +1 -0
- package/lib/model/deposit-payment-view-model.d.ts +7 -0
- package/lib/service/payment.service.d.ts +3 -3
- package/lib/service/transaction-connector-adapter.service.d.ts +5 -8
- package/lib/service/transaction-connector.service.d.ts +2 -6
- package/lib/service/transaction.service.d.ts +2 -2
- package/lib/style/_variables.scss +3 -1
- package/package.json +2 -2
- package/esm2015/lib/component/down-payment/down-payment.component.js +0 -71
- package/esm2015/lib/component/down-payment/down-payment.module.js +0 -27
- package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-amount.component.js +0 -58
- package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.component.js +0 -58
- package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.module.js +0 -23
- package/esm2015/lib/model/down-payment-view-model.js +0 -7
- package/lib/component/down-payment/down-payment.module.d.ts +0 -2
- package/lib/component/down-payment/style/_theme.scss +0 -4
- package/lib/component/transaction-header-fields/transaction-header-downpayment-amount.module.d.ts +0 -2
- package/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.module.d.ts +0 -2
- package/lib/model/down-payment-view-model.d.ts +0 -7
|
@@ -40,7 +40,6 @@ import { RelationKind } from '@colijnit/articleapi/build/enum/relation-kind.enum
|
|
|
40
40
|
import { NULL_CUSTOMER_FULL_OBJECT, NULL_RELATION_OBJECT } from '@colijnit/relationapi/build/model/nul-relation-object';
|
|
41
41
|
import { RelationNameKind } from '@colijnit/relationapi/build/enum/relation-name-kind.enum';
|
|
42
42
|
import { trigger, state, style, transition, animate } from '@angular/animations';
|
|
43
|
-
import { TransactionDownPaymentInfo } from '@colijnit/transactionapi/build/model/transaction-down-payment-info.bo';
|
|
44
43
|
import { TransactionLockResult } from '@colijnit/transactionapi/build/model/transaction-lock-result.bo';
|
|
45
44
|
import { PrivacySetting } from '@colijnit/mainapi/build/model/privacy-setting.bo';
|
|
46
45
|
import { RelationPrivacySetting } from '@colijnit/relationapi/build/model/relation-privacy-setting.bo';
|
|
@@ -58,6 +57,7 @@ import { GoodsAllocationStatusWithHistory } from '@colijnit/transactionapi/build
|
|
|
58
57
|
import { ReportLayoutSelectionEmail } from '@colijnit/mainapi/build/model/report-layout-selection-email.bo';
|
|
59
58
|
import { ReportLayoutSelectionPrint } from '@colijnit/mainapi/build/model/report-layout-selection-print.bo';
|
|
60
59
|
import { PurchaseAdviceLine } from '@colijnit/transactionapi/build/model/purchase-advice-line.bo';
|
|
60
|
+
import { TransactionDepositPaymentInfo } from '@colijnit/transactionapi/build/model/transaction-deposit-payment-info.bo';
|
|
61
61
|
import { ResolveLinePendingReasonRequest } from '@colijnit/transactionapi/build/model/resolve-pending-reason-request.bo';
|
|
62
62
|
import { Articles } from '@colijnit/articleapi/build/articles';
|
|
63
63
|
import { StockLocation } from '@colijnit/articleapi/build/model/stock-location.bo';
|
|
@@ -680,6 +680,7 @@ var Icon;
|
|
|
680
680
|
Icon["GripDotsVerticalSolid"] = "grip_dots_vertical_solid";
|
|
681
681
|
Icon["IdealLogo"] = "ideal_logo";
|
|
682
682
|
Icon["InboxInSolid"] = "inbox_in_solid";
|
|
683
|
+
Icon["IndustrySolid"] = "industry_solid";
|
|
683
684
|
Icon["ListRegular"] = "list_regular";
|
|
684
685
|
Icon["ListView"] = "list_view";
|
|
685
686
|
Icon["LocationDotSolid"] = "location_dot_solid";
|
|
@@ -763,6 +764,7 @@ const IconSvg = {
|
|
|
763
764
|
"grip_dots_vertical_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 512\"><path d=\"M48 144c26.5 0 48-21.5 48-48s-21.5-48-48-48S0 69.5 0 96s21.5 48 48 48zm0 160c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM96 416c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM208 144c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm48 112c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM208 464c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48z\"/></svg>",
|
|
764
765
|
"ideal_logo": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 306.1 269.8\" style=\"enable-background:new 0 0 306.1 269.8;\" ><style type=\"text/css\">.st0{fill:#FFFFFF;}.st1{fill:#CC0066;}</style><g><g><path class=\"st0\" d=\"M0,20v229.8c0,11,9,20,20,20h137.3c103.8,0,148.8-58.1,148.8-135.2C306.1,57.9,261.1,0,157.3,0H20C9,0,0,9,0,20z\"/><path class=\"st1\" d=\"M91.9,56.4v169.8h73.9c67.1,0,96.2-37.9,96.2-91.5c0-51.3-29.1-91.1-96.2-91.1h-61.1C97.6,43.6,91.9,49.4,91.9,56.4z\"/><g><g><path d=\"M157.3,251.5H37.9c-10.6,0-19.2-8.6-19.2-19.2V37.6c0-10.6,8.6-19.2,19.2-19.2h119.4c113.3,0,130.2,72.9,130.2,116.3C287.5,210,241.2,251.5,157.3,251.5z M37.9,24.8c-7.1,0-12.8,5.7-12.8,12.8v194.7c0,7.1,5.7,12.8,12.8,12.8h119.4c79.8,0,123.8-39.2,123.8-110.4c0-95.6-77.6-109.9-123.8-109.9H37.9z\"/></g></g></g><g><path class=\"st0\" d=\"M117.9,111.8c2.6,0,5,0.4,7.3,1.2c2.3,0.8,4.2,2.1,5.9,3.7c1.6,1.7,2.9,3.8,3.9,6.2c0.9,2.5,1.4,5.4,1.4,8.8c0,3-0.4,5.7-1.1,8.2c-0.8,2.5-1.9,4.7-3.4,6.5c-1.5,1.8-3.4,3.2-5.7,4.3c-2.3,1-5,1.6-8.1,1.6h-17.5v-40.6H117.9z M117.3,144.9c1.3,0,2.5-0.2,3.8-0.6c1.2-0.4,2.3-1.1,3.2-2.1c0.9-1,1.7-2.2,2.3-3.8c0.6-1.6,0.9-3.4,0.9-5.7c0-2-0.2-3.9-0.6-5.5c-0.4-1.6-1.1-3.1-2-4.2s-2.1-2.1-3.6-2.7c-1.5-0.6-3.3-0.9-5.5-0.9h-6.4v25.6H117.3z\"/><path class=\"st0\" d=\"M172.5,111.8v7.5h-21.4v8.7h19.7v6.9h-19.7v9.9H173v7.5h-30.8v-40.6H172.5z\"/><path class=\"st0\" d=\"M203.1,111.8l15.2,40.6H209l-3.1-9h-15.2l-3.2,9h-9l15.3-40.6H203.1z M203.6,136.7l-5.1-14.9h-0.1l-5.3,14.9H203.6z\"/><path class=\"st0\" d=\"M232.8,111.8v33.1h19.8v7.5h-28.7v-40.6H232.8z\"/></g><g><circle cx=\"58.5\" cy=\"132.1\" r=\"18.7\"/></g><path d=\"M72.6,226.2L72.6,226.2c-15.7,0-28.3-12.7-28.3-28.3v-22.1c0-7.8,6.3-14.2,14.2-14.2h0c7.8,0,14.2,6.3,14.2,14.2V226.2z\"/></g></svg>",
|
|
765
766
|
"inbox_in_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M288 32V210.7l41.4-41.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 210.7V32c0-17.7 14.3-32 32-32s32 14.3 32 32zM48 320h76.2c12.1 0 23.2 6.8 28.6 17.7l14.3 28.6c5.4 10.8 16.5 17.7 28.6 17.7H316.2c12.1 0 23.2-6.8 28.6-17.7l14.3-28.6c5.4-10.8 16.5-17.7 28.6-17.7H464c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48z\"/></svg>",
|
|
767
|
+
"industry_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M32 32C14.3 32 0 46.3 0 64V304v48 80c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V304 152.2c0-18.2-19.4-29.7-35.4-21.1L320 215.4V152.2c0-18.2-19.4-29.7-35.4-21.1L128 215.4V64c0-17.7-14.3-32-32-32H32z\"/></svg>",
|
|
766
768
|
"list_regular": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M88 48C101.3 48 112 58.75 112 72V120C112 133.3 101.3 144 88 144H40C26.75 144 16 133.3 16 120V72C16 58.75 26.75 48 40 48H88zM488 72C501.3 72 512 82.75 512 96C512 109.3 501.3 120 488 120H184C170.7 120 160 109.3 160 96C160 82.75 170.7 72 184 72H488zM488 232C501.3 232 512 242.7 512 256C512 269.3 501.3 280 488 280H184C170.7 280 160 269.3 160 256C160 242.7 170.7 232 184 232H488zM488 392C501.3 392 512 402.7 512 416C512 429.3 501.3 440 488 440H184C170.7 440 160 429.3 160 416C160 402.7 170.7 392 184 392H488zM16 232C16 218.7 26.75 208 40 208H88C101.3 208 112 218.7 112 232V280C112 293.3 101.3 304 88 304H40C26.75 304 16 293.3 16 280V232zM88 368C101.3 368 112 378.7 112 392V440C112 453.3 101.3 464 88 464H40C26.75 464 16 453.3 16 440V392C16 378.7 26.75 368 40 368H88z\"/></svg>",
|
|
767
769
|
"list_view": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 51 51\"><rect x=\"26.5\" y=\"13\" width=\"14\" height=\"7\" fill=\"#4d5050\"/><rect x=\"10.5\" y=\"13\" width=\"14\" height=\"7\" fill=\"#4d5050\"/><rect x=\"10.5\" y=\"22\" width=\"14\" height=\"7\" fill=\"#4d5050\"/><rect x=\"26.5\" y=\"22\" width=\"14\" height=\"7\" fill=\"#4d5050\"/><rect x=\"10.5\" y=\"31\" width=\"14\" height=\"7\" fill=\"#4d5050\"/><rect x=\"26.5\" y=\"31\" width=\"14\" height=\"7\" fill=\"#4d5050\"/></svg>",
|
|
768
770
|
"location_dot_solid": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path d=\"M168.3 499.2C116.1 435 0 279.4 0 192C0 85.96 85.96 0 192 0C298 0 384 85.96 384 192C384 279.4 267 435 215.7 499.2C203.4 514.5 180.6 514.5 168.3 499.2H168.3zM192 256C227.3 256 256 227.3 256 192C256 156.7 227.3 128 192 128C156.7 128 128 156.7 128 192C128 227.3 156.7 256 192 256z\"/></svg>",
|
|
@@ -2332,21 +2334,6 @@ class TransactionConnectorAdapterService {
|
|
|
2332
2334
|
});
|
|
2333
2335
|
});
|
|
2334
2336
|
}
|
|
2335
|
-
setTransactionDeliveryOptions(transactionDeliveryOptionsRequest) {
|
|
2336
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
2337
|
-
return new Promise((resolve, reject) => {
|
|
2338
|
-
return this.connector.setTransactionDeliveryOptions(transactionDeliveryOptionsRequest).then((result) => {
|
|
2339
|
-
if (result.validationResult && result.validationResult.success) {
|
|
2340
|
-
resolve(this._boFactory.makeWithRawBackendData(TransactionInfoResponse, result.resultObject));
|
|
2341
|
-
}
|
|
2342
|
-
else {
|
|
2343
|
-
this._handleExceptionFromResponse(result);
|
|
2344
|
-
reject(null);
|
|
2345
|
-
}
|
|
2346
|
-
});
|
|
2347
|
-
});
|
|
2348
|
-
});
|
|
2349
|
-
}
|
|
2350
2337
|
changeLineSequence(uuid, lineUuid, aboveLineNr, belowLineNr) {
|
|
2351
2338
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2352
2339
|
return new Promise((resolve, reject) => {
|
|
@@ -2787,13 +2774,13 @@ class TransactionConnectorAdapterService {
|
|
|
2787
2774
|
}
|
|
2788
2775
|
});
|
|
2789
2776
|
}
|
|
2790
|
-
|
|
2777
|
+
changeHeaderDepositPercentage(uuid, amount) {
|
|
2791
2778
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2792
2779
|
const request = {
|
|
2793
2780
|
transactionUuid: uuid,
|
|
2794
|
-
|
|
2781
|
+
newDepositPercentage: amount
|
|
2795
2782
|
};
|
|
2796
|
-
const response = yield this.connector.
|
|
2783
|
+
const response = yield this.connector.changeHeaderDepositPercentage(request);
|
|
2797
2784
|
if (response && response.validationResult && response.validationResult.success) {
|
|
2798
2785
|
return this._boFactory.makeWithRawBackendData(TransactionInfoResponse, response.resultObject);
|
|
2799
2786
|
}
|
|
@@ -2803,13 +2790,13 @@ class TransactionConnectorAdapterService {
|
|
|
2803
2790
|
}
|
|
2804
2791
|
});
|
|
2805
2792
|
}
|
|
2806
|
-
|
|
2793
|
+
changeHeaderDepositAmount(uuid, amount) {
|
|
2807
2794
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2808
2795
|
const request = {
|
|
2809
2796
|
transactionUuid: uuid,
|
|
2810
|
-
|
|
2797
|
+
newDepositAmount: amount
|
|
2811
2798
|
};
|
|
2812
|
-
const response = yield this.connector.
|
|
2799
|
+
const response = yield this.connector.changeHeaderDepositAmount(request);
|
|
2813
2800
|
if (response && response.validationResult && response.validationResult.success) {
|
|
2814
2801
|
return this._boFactory.makeWithRawBackendData(TransactionInfoResponse, response.resultObject);
|
|
2815
2802
|
}
|
|
@@ -2949,13 +2936,13 @@ class TransactionConnectorAdapterService {
|
|
|
2949
2936
|
}
|
|
2950
2937
|
});
|
|
2951
2938
|
}
|
|
2952
|
-
|
|
2939
|
+
changeHeaderTransactionDepositAmount(uuid, amount) {
|
|
2953
2940
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2954
2941
|
const request = {
|
|
2955
2942
|
transactionUuid: uuid,
|
|
2956
|
-
|
|
2943
|
+
newDepositAmount: amount
|
|
2957
2944
|
};
|
|
2958
|
-
const response = yield this.connector.
|
|
2945
|
+
const response = yield this.connector.changeHeaderDepositAmount(request);
|
|
2959
2946
|
if (response && response.validationResult && response.validationResult.success) {
|
|
2960
2947
|
return this._boFactory.makeWithRawBackendData(TransactionInfoResponse, response.resultObject);
|
|
2961
2948
|
}
|
|
@@ -3046,11 +3033,11 @@ class TransactionConnectorAdapterService {
|
|
|
3046
3033
|
}
|
|
3047
3034
|
});
|
|
3048
3035
|
}
|
|
3049
|
-
|
|
3036
|
+
getDepositPaymentInfo(uuid) {
|
|
3050
3037
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3051
|
-
const response = yield this.connector.
|
|
3038
|
+
const response = yield this.connector.getDepositPaymentInfo(uuid);
|
|
3052
3039
|
if (response && response.validationResult && response.validationResult.success) {
|
|
3053
|
-
return this._boFactory.makeWithRawBackendData(
|
|
3040
|
+
return this._boFactory.makeWithRawBackendData(TransactionDepositPaymentInfo, response.resultObject);
|
|
3054
3041
|
}
|
|
3055
3042
|
else {
|
|
3056
3043
|
this._handleExceptionFromResponse(response);
|
|
@@ -3727,11 +3714,6 @@ class TransactionConnectorService {
|
|
|
3727
3714
|
return this._adapterService.addRelationToTransaction(uuid, relationId);
|
|
3728
3715
|
});
|
|
3729
3716
|
}
|
|
3730
|
-
setTransactionDeliveryOptions(transactionDeliveryOptionsRequest) {
|
|
3731
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
3732
|
-
return this._adapterService.setTransactionDeliveryOptions(transactionDeliveryOptionsRequest);
|
|
3733
|
-
});
|
|
3734
|
-
}
|
|
3735
3717
|
getPostalCodeRetrieval(postcalCode, houseNo) {
|
|
3736
3718
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3737
3719
|
return this._adapterService.getPostalCodeRetrieval(postcalCode, houseNo);
|
|
@@ -3966,14 +3948,14 @@ class TransactionConnectorService {
|
|
|
3966
3948
|
return this._adapterService.changeHeaderTransactionRelationReference(uuid, reference);
|
|
3967
3949
|
});
|
|
3968
3950
|
}
|
|
3969
|
-
|
|
3951
|
+
changeHeaderDepositPercentage(uuid, amount) {
|
|
3970
3952
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3971
|
-
return this._adapterService.
|
|
3953
|
+
return this._adapterService.changeHeaderDepositPercentage(uuid, amount);
|
|
3972
3954
|
});
|
|
3973
3955
|
}
|
|
3974
|
-
|
|
3956
|
+
changeHeaderDepositAmount(uuid, amount) {
|
|
3975
3957
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3976
|
-
return this._adapterService.
|
|
3958
|
+
return this._adapterService.changeHeaderDepositAmount(uuid, amount);
|
|
3977
3959
|
});
|
|
3978
3960
|
}
|
|
3979
3961
|
changeHeaderTransactionPreferredDeliveryDate(uuid, date) {
|
|
@@ -4016,11 +3998,6 @@ class TransactionConnectorService {
|
|
|
4016
3998
|
return this._adapterService.changeHeaderTransactionDiscount(uuid, type, amount);
|
|
4017
3999
|
});
|
|
4018
4000
|
}
|
|
4019
|
-
changeHeaderTransactionToDownPay(uuid, downPayment) {
|
|
4020
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
4021
|
-
return this._adapterService.changeHeaderTransactionToDownPay(uuid, downPayment);
|
|
4022
|
-
});
|
|
4023
|
-
}
|
|
4024
4001
|
createOutstandingEntry(uuid, amount) {
|
|
4025
4002
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4026
4003
|
return this._adapterService.createOutstandingEntry(uuid, amount);
|
|
@@ -5185,18 +5162,18 @@ class TransactionService extends PendingReasonService {
|
|
|
5185
5162
|
return false;
|
|
5186
5163
|
});
|
|
5187
5164
|
}
|
|
5188
|
-
|
|
5165
|
+
updateHeaderTransactionDepositAmount(uuid, amount) {
|
|
5189
5166
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5190
|
-
const response = yield this.connector.
|
|
5167
|
+
const response = yield this.connector.changeHeaderDepositAmount(uuid, amount);
|
|
5191
5168
|
if (response) {
|
|
5192
5169
|
return this.handleHeaderOperationStatuses(response);
|
|
5193
5170
|
}
|
|
5194
5171
|
return false;
|
|
5195
5172
|
});
|
|
5196
5173
|
}
|
|
5197
|
-
|
|
5174
|
+
updateHeaderTransactionDepositPercentage(uuid, amount) {
|
|
5198
5175
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5199
|
-
const response = yield this.connector.
|
|
5176
|
+
const response = yield this.connector.changeHeaderDepositPercentage(uuid, amount);
|
|
5200
5177
|
if (response) {
|
|
5201
5178
|
return this.handleHeaderOperationStatuses(response);
|
|
5202
5179
|
}
|
|
@@ -6443,8 +6420,8 @@ CheckoutOverviewDeliveryEditComponent.decorators = [
|
|
|
6443
6420
|
</div>
|
|
6444
6421
|
<div class="checkout-data-column">
|
|
6445
6422
|
<div class="checkout-data-row">
|
|
6446
|
-
<co-transaction-header-
|
|
6447
|
-
<co-transaction-header-
|
|
6423
|
+
<co-transaction-header-deposit-percentage [transactionInfo]="transaction.transactionInfo"></co-transaction-header-deposit-percentage>
|
|
6424
|
+
<co-transaction-header-deposit-amount [transactionInfo]="transaction.transactionInfo"></co-transaction-header-deposit-amount>
|
|
6448
6425
|
</div>
|
|
6449
6426
|
<!--
|
|
6450
6427
|
<div class="checkout-data-row">
|
|
@@ -11377,6 +11354,93 @@ TransactionCardPurchaseOverviewComponent.propDecorators = {
|
|
|
11377
11354
|
showClass: [{ type: HostBinding, args: ["class.co-transaction-card-purchase-overview",] }]
|
|
11378
11355
|
};
|
|
11379
11356
|
|
|
11357
|
+
class TransactionPurchaseOrderLineComponent extends TransactionBaseComponent {
|
|
11358
|
+
constructor(iconCacheService, transactionService, _transactionEventService) {
|
|
11359
|
+
super(transactionService);
|
|
11360
|
+
this.iconCacheService = iconCacheService;
|
|
11361
|
+
this.transactionService = transactionService;
|
|
11362
|
+
this._transactionEventService = _transactionEventService;
|
|
11363
|
+
this.selected = false;
|
|
11364
|
+
this.showDialogDiscount = false;
|
|
11365
|
+
this.showCheckboxForLine = false;
|
|
11366
|
+
this.viewModel = new ExtendedTransactionLineViewModel();
|
|
11367
|
+
this.transactionTypeCategory = TransactionTypeCategory;
|
|
11368
|
+
this._subs = [];
|
|
11369
|
+
}
|
|
11370
|
+
showClass() {
|
|
11371
|
+
return true;
|
|
11372
|
+
}
|
|
11373
|
+
ngOnInit() {
|
|
11374
|
+
this.transactionKind = this.transactionService.currentTransaction.transactionInfo.transactionKind;
|
|
11375
|
+
console.log(this.transactionLine);
|
|
11376
|
+
this._subs.push(this._transactionEventService.selectAllSalesOrderLinesForPurchase.subscribe((value) => {
|
|
11377
|
+
this.selected = value;
|
|
11378
|
+
}));
|
|
11379
|
+
}
|
|
11380
|
+
ngOnDestroy() {
|
|
11381
|
+
this._subs.forEach(s => s.unsubscribe());
|
|
11382
|
+
}
|
|
11383
|
+
transactionLineSet() {
|
|
11384
|
+
this.showCheckboxForLine = this.transactionLine.commissionCode === "0";
|
|
11385
|
+
}
|
|
11386
|
+
}
|
|
11387
|
+
TransactionPurchaseOrderLineComponent.decorators = [
|
|
11388
|
+
{ type: Component, args: [{
|
|
11389
|
+
selector: "co-transaction-purchase-order-line",
|
|
11390
|
+
template: `
|
|
11391
|
+
<co-transaction-base-line [transactionInfo]="transactionInfo" [transactionLine]="transactionLine" [preview]="preview" [checkbox]="showCheckboxForLine" [checkboxValue]="selected" (checkboxValueChanged)="selected = $event">
|
|
11392
|
+
<div class="transaction-line-wrapper" data-action="openSidePanel">
|
|
11393
|
+
<co-transaction-line-statusbar [transactionLine]="transactionLine" [transactionInfo]="transactionInfo" [activeCategory]="transactionTypeCategory.PurchaseOrderReceivedGoods"></co-transaction-line-statusbar>
|
|
11394
|
+
<co-transaction-line-delivery-date-button [transactionLine]="transactionLine" class="two-column"></co-transaction-line-delivery-date-button>
|
|
11395
|
+
<div class="transaction-line-totals-grid">
|
|
11396
|
+
<co-transaction-line-price class="transaction-line-totals-grid price"
|
|
11397
|
+
[transactionLine]="transactionLine"
|
|
11398
|
+
[showLabel]="false"
|
|
11399
|
+
[defaultEditMode]="false"
|
|
11400
|
+
></co-transaction-line-price>
|
|
11401
|
+
<div class="transaction-line-totals-grid discount" (click)="showDialogDiscount = true">
|
|
11402
|
+
<span class="co-transaction-overflow-ellipsis" [class.transaction-negative-value]="transactionLine.lineTotalDiscountAmount < 0"
|
|
11403
|
+
[textContent]="(transactionLine.lineTotalDiscountAmount | coCurrency) || ('DISCOUNT' | localize)"></span>
|
|
11404
|
+
</div>
|
|
11405
|
+
<co-transaction-line-price class="transaction-line-totals-grid price"
|
|
11406
|
+
[transactionLine]="transactionLine"
|
|
11407
|
+
[showLabel]="false"
|
|
11408
|
+
[defaultEditMode]="false"
|
|
11409
|
+
></co-transaction-line-price>
|
|
11410
|
+
</div>
|
|
11411
|
+
</div>
|
|
11412
|
+
<div class="vertical-border"></div>
|
|
11413
|
+
<div class="transaction-line-totals-grid">
|
|
11414
|
+
<co-icon class="transaction-line-supplier-icon" [iconData]="iconCacheService.getIcon(icons.IndustrySolid)"></co-icon>
|
|
11415
|
+
<span class="transaction-line-supplier-id" [textContent]="transactionLine.supplierId"></span>
|
|
11416
|
+
<div class="transaction-line-totals-grid">
|
|
11417
|
+
<co-transaction-line-price class="transaction-line-totals-grid price"
|
|
11418
|
+
[transactionLine]="transactionLine"
|
|
11419
|
+
[showLabel]="false"
|
|
11420
|
+
[defaultEditMode]="false"
|
|
11421
|
+
></co-transaction-line-price>
|
|
11422
|
+
</div>
|
|
11423
|
+
<co-input-number-picker class="amount-number-picker"
|
|
11424
|
+
[(model)]="transactionLine.amount"
|
|
11425
|
+
></co-input-number-picker>
|
|
11426
|
+
<co-transaction-line-delivery-date-button [transactionLine]="transactionLine"
|
|
11427
|
+
class="two-column"
|
|
11428
|
+
></co-transaction-line-delivery-date-button>
|
|
11429
|
+
</div>
|
|
11430
|
+
</co-transaction-base-line>
|
|
11431
|
+
`,
|
|
11432
|
+
encapsulation: ViewEncapsulation.None
|
|
11433
|
+
},] }
|
|
11434
|
+
];
|
|
11435
|
+
TransactionPurchaseOrderLineComponent.ctorParameters = () => [
|
|
11436
|
+
{ type: IconCacheService },
|
|
11437
|
+
{ type: TransactionService },
|
|
11438
|
+
{ type: TransactionEventService }
|
|
11439
|
+
];
|
|
11440
|
+
TransactionPurchaseOrderLineComponent.propDecorators = {
|
|
11441
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-purchase-order-line",] }]
|
|
11442
|
+
};
|
|
11443
|
+
|
|
11380
11444
|
class TransactionMappingService {
|
|
11381
11445
|
constructor() {
|
|
11382
11446
|
this._buttonBarTransaction = new Map([
|
|
@@ -11420,6 +11484,7 @@ class TransactionMappingService {
|
|
|
11420
11484
|
[{ type: TransactionKind.SalesOrder, category: TransactionTypeCategory.SalesOrderInvoice }, TransactionOrderDeliveryLineComponent],
|
|
11421
11485
|
[{ type: TransactionKind.PurchaseOrder, category: TransactionTypeCategory.PurchaseOrderOverview }, TransactionPurchaseLineComponent],
|
|
11422
11486
|
[{ type: TransactionKind.PurchaseOrder, category: TransactionTypeCategory.PurchaseOrderReceivedGoods }, TransactionReceiveGoodsLineComponent],
|
|
11487
|
+
[{ type: TransactionKind.PurchaseOrder, category: TransactionTypeCategory.PurchaseOrderOrderConfirmation }, TransactionPurchaseOrderLineComponent],
|
|
11423
11488
|
]);
|
|
11424
11489
|
this._transactionCardComponent = new Map([
|
|
11425
11490
|
[{ type: TransactionKind.SalesOrder, category: TransactionTypeCategory.SalesOrderOverview }, TransactionCardSalesOverviewComponent],
|
|
@@ -12202,9 +12267,9 @@ class PaymentService {
|
|
|
12202
12267
|
this._transactionService = _transactionService;
|
|
12203
12268
|
this._sharedService = _sharedService;
|
|
12204
12269
|
}
|
|
12205
|
-
|
|
12270
|
+
updateHeaderTransactionDepositAmount(uuid, amount) {
|
|
12206
12271
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12207
|
-
const response = yield this._adapterService.
|
|
12272
|
+
const response = yield this._adapterService.changeHeaderTransactionDepositAmount(uuid, amount)
|
|
12208
12273
|
.catch((error) => {
|
|
12209
12274
|
// todo: do something with the error
|
|
12210
12275
|
return false;
|
|
@@ -12236,9 +12301,9 @@ class PaymentService {
|
|
|
12236
12301
|
return this._adapterService.getPaymentLinkStatus(paymentLinkUUID);
|
|
12237
12302
|
});
|
|
12238
12303
|
}
|
|
12239
|
-
|
|
12304
|
+
getDepositPaymentInfo(uuid) {
|
|
12240
12305
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12241
|
-
return this._adapterService.
|
|
12306
|
+
return this._adapterService.getDepositPaymentInfo(uuid);
|
|
12242
12307
|
});
|
|
12243
12308
|
}
|
|
12244
12309
|
getPaymentMethods() {
|
|
@@ -12287,9 +12352,9 @@ PaymentService.ctorParameters = () => [
|
|
|
12287
12352
|
{ type: SharedService }
|
|
12288
12353
|
];
|
|
12289
12354
|
|
|
12290
|
-
class
|
|
12291
|
-
constructor(
|
|
12292
|
-
this.
|
|
12355
|
+
class DepositPaymentViewModel {
|
|
12356
|
+
constructor(depositPayment, paymentMethodViewmodel) {
|
|
12357
|
+
this.depositPayment = depositPayment;
|
|
12293
12358
|
this.paymentMethod = paymentMethodViewmodel;
|
|
12294
12359
|
}
|
|
12295
12360
|
}
|
|
@@ -12304,13 +12369,13 @@ class PaymentComponent {
|
|
|
12304
12369
|
this.paymentMethodIdx = 0;
|
|
12305
12370
|
this.cashRegisterIdx = 0;
|
|
12306
12371
|
this.paymentMethods = [];
|
|
12307
|
-
this.
|
|
12372
|
+
this.depositPayments = [];
|
|
12308
12373
|
this.cashRegisters = [];
|
|
12309
12374
|
this.showCashRegisters = false;
|
|
12310
12375
|
this.showKeyPad = false;
|
|
12311
12376
|
this.showPspQrCode = false;
|
|
12312
12377
|
this.showLoader = true;
|
|
12313
|
-
this.
|
|
12378
|
+
this.showLoaderDepositPayments = true;
|
|
12314
12379
|
this.amountToPay = 0;
|
|
12315
12380
|
this._amount = 0;
|
|
12316
12381
|
this._paymentStatusPollIntervalMs = 5000;
|
|
@@ -12328,10 +12393,10 @@ class PaymentComponent {
|
|
|
12328
12393
|
return true;
|
|
12329
12394
|
}
|
|
12330
12395
|
ngOnInit() {
|
|
12331
|
-
this._paymentService.
|
|
12396
|
+
this._paymentService.updateHeaderTransactionDepositAmount(this.transactionUuid, this.amountToPay).then(() => {
|
|
12332
12397
|
this._getPaymentMethods().then(() => {
|
|
12333
12398
|
this.showLoader = false;
|
|
12334
|
-
this.
|
|
12399
|
+
this._getDepositPaymentInfo();
|
|
12335
12400
|
this._prepareCashRegisters();
|
|
12336
12401
|
});
|
|
12337
12402
|
});
|
|
@@ -12364,7 +12429,7 @@ class PaymentComponent {
|
|
|
12364
12429
|
const currentCashRegister = this.cashRegisters[this.cashRegisterIdx];
|
|
12365
12430
|
this._paymentService.registerSalesOrderPayment(this.transactionUuid, this.amountToPay, this.currencyId, this.currentPaymentMethod.code, currentCashRegister.group).then(() => __awaiter(this, void 0, void 0, function* () {
|
|
12366
12431
|
this.showKeyPad = false;
|
|
12367
|
-
yield this.
|
|
12432
|
+
yield this._getDepositPaymentInfo();
|
|
12368
12433
|
if (this.amountToPay === 0) {
|
|
12369
12434
|
this.payed.emit();
|
|
12370
12435
|
}
|
|
@@ -12374,18 +12439,18 @@ class PaymentComponent {
|
|
|
12374
12439
|
handleKeyPadModelChange(model) {
|
|
12375
12440
|
this.amountToPay = model;
|
|
12376
12441
|
}
|
|
12377
|
-
|
|
12378
|
-
this.
|
|
12442
|
+
_getDepositPaymentInfo() {
|
|
12443
|
+
this.depositPayments.length = 0;
|
|
12379
12444
|
return new Promise((resolve) => {
|
|
12380
|
-
this._paymentService.
|
|
12381
|
-
this.amountToPay =
|
|
12382
|
-
if (info.
|
|
12383
|
-
info.
|
|
12445
|
+
this._paymentService.getDepositPaymentInfo(this.transactionUuid).then((info) => {
|
|
12446
|
+
this.amountToPay = info.depositRemainderAmount;
|
|
12447
|
+
if (info.depositPayments) {
|
|
12448
|
+
info.depositPayments.forEach((dp) => {
|
|
12384
12449
|
const paymentMethod = this.paymentMethods.find(pm => pm.payment.code === dp.paymentMethodCode);
|
|
12385
|
-
this.
|
|
12450
|
+
this.depositPayments.push(new DepositPaymentViewModel(dp, paymentMethod));
|
|
12386
12451
|
});
|
|
12387
12452
|
}
|
|
12388
|
-
this.
|
|
12453
|
+
this.showLoaderDepositPayments = false;
|
|
12389
12454
|
resolve();
|
|
12390
12455
|
});
|
|
12391
12456
|
});
|
|
@@ -12404,7 +12469,7 @@ class PaymentComponent {
|
|
|
12404
12469
|
if (status.payedDate) {
|
|
12405
12470
|
this._clearInterval();
|
|
12406
12471
|
this.showPspQrCode = false;
|
|
12407
|
-
yield this.
|
|
12472
|
+
yield this._getDepositPaymentInfo();
|
|
12408
12473
|
if (this.amountToPay === 0) {
|
|
12409
12474
|
this.payed.emit();
|
|
12410
12475
|
}
|
|
@@ -12492,18 +12557,18 @@ PaymentComponent.decorators = [
|
|
|
12492
12557
|
<div [textContent]="'TO_PAY' | localize"></div>
|
|
12493
12558
|
<div class="payment-amount" [textContent]="amountToPay === 0 ? amountToPay : (amountToPay | priceDisplay)"></div>
|
|
12494
12559
|
</div>
|
|
12495
|
-
<div class="payment-
|
|
12496
|
-
<co-
|
|
12560
|
+
<div class="payment-deposit" [class.no-display]="!depositPayments || depositPayments.length === 0">
|
|
12561
|
+
<co-deposit-payment [transactionUuid]="transactionUuid" [depositPayments]="depositPayments" [showLoader]="showLoaderDepositPayments"></co-deposit-payment>
|
|
12497
12562
|
</div>
|
|
12498
|
-
<div class="payment-to-pay-button" [class.no-
|
|
12499
|
-
|
|
12563
|
+
<div class="payment-to-pay-button" [class.no-deposit]="!depositPayments || depositPayments.length === 0">
|
|
12564
|
+
<co-button [label]="'PAY' | localize" (click)="handlePayment()" [disabled]="amountToPay === 0"></co-button>
|
|
12500
12565
|
</div>
|
|
12501
12566
|
<co-key-pad class="payment-to-pay-keypad"
|
|
12502
|
-
|
|
12503
|
-
|
|
12504
|
-
|
|
12505
|
-
|
|
12506
|
-
|
|
12567
|
+
[showValue]="false"
|
|
12568
|
+
[emitModelChangeOnEnter]="false"
|
|
12569
|
+
[model]="amountToPay"
|
|
12570
|
+
(modelChange)="handleKeyPadModelChange($event)"
|
|
12571
|
+
(enterClick)="handlePayment()"
|
|
12507
12572
|
></co-key-pad>
|
|
12508
12573
|
</div>
|
|
12509
12574
|
</div>
|
|
@@ -12687,7 +12752,7 @@ PaymentQrCodeModule.decorators = [
|
|
|
12687
12752
|
},] }
|
|
12688
12753
|
];
|
|
12689
12754
|
|
|
12690
|
-
class
|
|
12755
|
+
class DepositPaymentComponent {
|
|
12691
12756
|
constructor(_paymentService) {
|
|
12692
12757
|
this._paymentService = _paymentService;
|
|
12693
12758
|
this.showLoader = true;
|
|
@@ -12699,65 +12764,65 @@ class DownPaymentComponent {
|
|
|
12699
12764
|
ngOnInit() {
|
|
12700
12765
|
this._prepareData();
|
|
12701
12766
|
}
|
|
12702
|
-
|
|
12703
|
-
this.
|
|
12704
|
-
this._paymentService.
|
|
12705
|
-
if (info.
|
|
12706
|
-
info.
|
|
12767
|
+
_getDepositPaymentInfo() {
|
|
12768
|
+
this.depositPayments.length = 0;
|
|
12769
|
+
this._paymentService.getDepositPaymentInfo(this.transactionUuid).then((info) => {
|
|
12770
|
+
if (info.depositPayments) {
|
|
12771
|
+
info.depositPayments.forEach((dp) => {
|
|
12707
12772
|
const paymentMethod = this.paymentMethods.find(pm => pm.payment.code === dp.paymentMethodCode);
|
|
12708
|
-
this.
|
|
12773
|
+
this.depositPayments.push(new DepositPaymentViewModel(dp, paymentMethod));
|
|
12709
12774
|
});
|
|
12710
12775
|
}
|
|
12711
12776
|
});
|
|
12712
12777
|
}
|
|
12713
12778
|
_prepareData() {
|
|
12714
|
-
if (!this.
|
|
12715
|
-
this.
|
|
12779
|
+
if (!this.depositPayments) {
|
|
12780
|
+
this.depositPayments = [];
|
|
12716
12781
|
this.showLoader = true;
|
|
12717
12782
|
this.paymentMethods.length = 0;
|
|
12718
12783
|
this._paymentService.getPaymentMethodsViewModels().then((methods) => {
|
|
12719
12784
|
this.paymentMethods = methods.slice();
|
|
12720
|
-
this.
|
|
12785
|
+
this._getDepositPaymentInfo();
|
|
12721
12786
|
this.showLoader = false;
|
|
12722
12787
|
});
|
|
12723
12788
|
}
|
|
12724
12789
|
}
|
|
12725
12790
|
}
|
|
12726
|
-
|
|
12791
|
+
DepositPaymentComponent.decorators = [
|
|
12727
12792
|
{ type: Component, args: [{
|
|
12728
|
-
selector: "co-
|
|
12793
|
+
selector: "co-deposit-payment",
|
|
12729
12794
|
template: `
|
|
12730
|
-
|
|
12731
|
-
|
|
12732
|
-
|
|
12733
|
-
|
|
12734
|
-
|
|
12735
|
-
|
|
12736
|
-
|
|
12737
|
-
|
|
12738
|
-
|
|
12739
|
-
|
|
12740
|
-
|
|
12741
|
-
</div>
|
|
12795
|
+
<co-loader class="loader" *ngIf="showLoader"></co-loader>
|
|
12796
|
+
<div class="down-payment-payments-title" [textContent]="'PAYMENTS_MADE' | localize" *ngIf="depositPayments && depositPayments.length > 0"></div>
|
|
12797
|
+
<div class="down-payment-payments-wrapper">
|
|
12798
|
+
<div class="down-payment-payments" *ngFor="let payment of depositPayments">
|
|
12799
|
+
<co-payment-tile
|
|
12800
|
+
[image]="payment.paymentMethod.image"
|
|
12801
|
+
[description]="payment.paymentMethod.payment.description"
|
|
12802
|
+
></co-payment-tile>
|
|
12803
|
+
<div class="down-payment-amount-wrapper">
|
|
12804
|
+
<div class="down-payment-amount" [textContent]="payment.depositPayment.depositPaymentAmount | coCurrency"></div>
|
|
12805
|
+
<div class="down-payment-date" [textContent]="payment.depositPayment.date | date:'d MMMM yyyy'"></div>
|
|
12742
12806
|
</div>
|
|
12743
12807
|
</div>
|
|
12744
|
-
|
|
12808
|
+
</div>
|
|
12809
|
+
`,
|
|
12745
12810
|
encapsulation: ViewEncapsulation.None
|
|
12746
12811
|
},] }
|
|
12747
12812
|
];
|
|
12748
|
-
|
|
12813
|
+
DepositPaymentComponent.ctorParameters = () => [
|
|
12749
12814
|
{ type: PaymentService }
|
|
12750
12815
|
];
|
|
12751
|
-
|
|
12816
|
+
DepositPaymentComponent.propDecorators = {
|
|
12752
12817
|
transactionUuid: [{ type: Input }],
|
|
12753
|
-
|
|
12818
|
+
depositPayments: [{ type: Input }],
|
|
12754
12819
|
showLoader: [{ type: Input }],
|
|
12755
|
-
showClass: [{ type: HostBinding, args: ["class.co-
|
|
12820
|
+
showClass: [{ type: HostBinding, args: ["class.co-deposit-payment",] }]
|
|
12756
12821
|
};
|
|
12757
12822
|
|
|
12758
|
-
class
|
|
12823
|
+
class DepositPaymentModule {
|
|
12759
12824
|
}
|
|
12760
|
-
|
|
12825
|
+
DepositPaymentModule.decorators = [
|
|
12761
12826
|
{ type: NgModule, args: [{
|
|
12762
12827
|
imports: [
|
|
12763
12828
|
CommonModule,
|
|
@@ -12767,10 +12832,10 @@ DownPaymentModule.decorators = [
|
|
|
12767
12832
|
LoaderModule
|
|
12768
12833
|
],
|
|
12769
12834
|
declarations: [
|
|
12770
|
-
|
|
12835
|
+
DepositPaymentComponent
|
|
12771
12836
|
],
|
|
12772
12837
|
exports: [
|
|
12773
|
-
|
|
12838
|
+
DepositPaymentComponent
|
|
12774
12839
|
]
|
|
12775
12840
|
},] }
|
|
12776
12841
|
];
|
|
@@ -12789,7 +12854,7 @@ PaymentModule.decorators = [
|
|
|
12789
12854
|
CoDialogModule,
|
|
12790
12855
|
ButtonModule,
|
|
12791
12856
|
PaymentQrCodeModule,
|
|
12792
|
-
|
|
12857
|
+
DepositPaymentModule,
|
|
12793
12858
|
LoaderModule
|
|
12794
12859
|
],
|
|
12795
12860
|
declarations: [
|
|
@@ -13563,7 +13628,7 @@ CheckoutOverviewPaymentComponent.decorators = [
|
|
|
13563
13628
|
</div>
|
|
13564
13629
|
<co-payment
|
|
13565
13630
|
[transactionUuid]="transaction.transactionInfo.uuid"
|
|
13566
|
-
[amount]="transaction.transactionInfo.
|
|
13631
|
+
[amount]="transaction.transactionInfo.depositAmount || transaction.transactionTotal.netAmount"
|
|
13567
13632
|
[currencyId]="transaction.transactionInfo.currencyId"
|
|
13568
13633
|
(payed)="handlePayed()"
|
|
13569
13634
|
></co-payment>
|
|
@@ -14707,7 +14772,7 @@ TransactionHeaderDeliveryModule.decorators = [
|
|
|
14707
14772
|
},] }
|
|
14708
14773
|
];
|
|
14709
14774
|
|
|
14710
|
-
class
|
|
14775
|
+
class TransactionHeaderDepositPercentageComponent extends TransactionInputFieldBaseComponent {
|
|
14711
14776
|
constructor(transactionService) {
|
|
14712
14777
|
super(transactionService);
|
|
14713
14778
|
this.transactionService = transactionService;
|
|
@@ -14724,9 +14789,8 @@ class TransactionHeaderDownpaymentPercentageComponent extends TransactionInputFi
|
|
|
14724
14789
|
}
|
|
14725
14790
|
commit(amount) {
|
|
14726
14791
|
return __awaiter(this, void 0, void 0, function* () {
|
|
14727
|
-
if (this.transactionInfo && this.transactionInfo.
|
|
14728
|
-
const
|
|
14729
|
-
const success = yield this.transactionService.updateHeaderTransactionDownpaymentPercentage(this.transactionInfo.uuid, amount);
|
|
14792
|
+
if (this.transactionInfo && this.transactionInfo.depositPercentage !== amount) {
|
|
14793
|
+
const success = yield this.transactionService.updateHeaderTransactionDepositPercentage(this.transactionInfo.uuid, amount);
|
|
14730
14794
|
if (!success) {
|
|
14731
14795
|
this.input.model = amount;
|
|
14732
14796
|
}
|
|
@@ -14736,33 +14800,33 @@ class TransactionHeaderDownpaymentPercentageComponent extends TransactionInputFi
|
|
|
14736
14800
|
});
|
|
14737
14801
|
}
|
|
14738
14802
|
}
|
|
14739
|
-
|
|
14803
|
+
TransactionHeaderDepositPercentageComponent.decorators = [
|
|
14740
14804
|
{ type: Component, args: [{
|
|
14741
|
-
selector: "co-transaction-header-
|
|
14805
|
+
selector: "co-transaction-header-deposit-percentage",
|
|
14742
14806
|
template: `
|
|
14743
|
-
<span *ngIf="(!editMode || readonly) && !defaultEditMode" [textContent]="(transactionInfo.
|
|
14744
|
-
<co-input-text #input *ngIf="editMode || defaultEditMode"
|
|
14807
|
+
<span *ngIf="(!editMode || readonly) && !defaultEditMode" [textContent]="(transactionInfo.depositPercentage | append: '%') || '...'"></span>
|
|
14808
|
+
<co-input-text #input *ngIf="editMode || defaultEditMode" class="custom-height"
|
|
14745
14809
|
[type]="'number'"
|
|
14746
14810
|
[placeholder]="showLabel ? ('DOWNPAYMENT_PERCENTAGE' | localize) : ''"
|
|
14747
14811
|
[showSaveCancel]="!readonly"
|
|
14748
14812
|
[readonly]="readonly"
|
|
14749
|
-
[model]="transactionInfo.
|
|
14813
|
+
[model]="transactionInfo.depositPercentage"
|
|
14750
14814
|
(blur)="editMode = false"
|
|
14751
14815
|
></co-input-text>
|
|
14752
14816
|
`,
|
|
14753
14817
|
encapsulation: ViewEncapsulation.None
|
|
14754
14818
|
},] }
|
|
14755
14819
|
];
|
|
14756
|
-
|
|
14820
|
+
TransactionHeaderDepositPercentageComponent.ctorParameters = () => [
|
|
14757
14821
|
{ type: TransactionService }
|
|
14758
14822
|
];
|
|
14759
|
-
|
|
14823
|
+
TransactionHeaderDepositPercentageComponent.propDecorators = {
|
|
14760
14824
|
child: [{ type: ViewChild, args: ['input', { read: InputTextComponent },] }]
|
|
14761
14825
|
};
|
|
14762
14826
|
|
|
14763
|
-
class
|
|
14827
|
+
class TransactionHeaderDepositPercentageModule {
|
|
14764
14828
|
}
|
|
14765
|
-
|
|
14829
|
+
TransactionHeaderDepositPercentageModule.decorators = [
|
|
14766
14830
|
{ type: NgModule, args: [{
|
|
14767
14831
|
imports: [
|
|
14768
14832
|
CommonModule,
|
|
@@ -14770,15 +14834,15 @@ TransactionHeaderDownpaymentPercentageModule.decorators = [
|
|
|
14770
14834
|
InputTextModule
|
|
14771
14835
|
],
|
|
14772
14836
|
declarations: [
|
|
14773
|
-
|
|
14837
|
+
TransactionHeaderDepositPercentageComponent
|
|
14774
14838
|
],
|
|
14775
14839
|
exports: [
|
|
14776
|
-
|
|
14840
|
+
TransactionHeaderDepositPercentageComponent
|
|
14777
14841
|
]
|
|
14778
14842
|
},] }
|
|
14779
14843
|
];
|
|
14780
14844
|
|
|
14781
|
-
class
|
|
14845
|
+
class TransactionHeaderDepositAmountComponent extends TransactionInputFieldBaseComponent {
|
|
14782
14846
|
constructor(transactionService) {
|
|
14783
14847
|
super(transactionService);
|
|
14784
14848
|
this.transactionService = transactionService;
|
|
@@ -14795,9 +14859,9 @@ class TransactionHeaderDownpaymentAmountComponent extends TransactionInputFieldB
|
|
|
14795
14859
|
}
|
|
14796
14860
|
commit(amount) {
|
|
14797
14861
|
return __awaiter(this, void 0, void 0, function* () {
|
|
14798
|
-
if (this.transactionInfo && this.transactionInfo.
|
|
14799
|
-
const oldDownPayPercentage = this.transactionInfo.
|
|
14800
|
-
const success = yield this.transactionService.
|
|
14862
|
+
if (this.transactionInfo && this.transactionInfo.depositAmount !== amount) {
|
|
14863
|
+
const oldDownPayPercentage = this.transactionInfo.depositAmount;
|
|
14864
|
+
const success = yield this.transactionService.updateHeaderTransactionDepositAmount(this.transactionInfo.uuid, amount);
|
|
14801
14865
|
if (!success) {
|
|
14802
14866
|
this.input.model = amount;
|
|
14803
14867
|
}
|
|
@@ -14807,33 +14871,33 @@ class TransactionHeaderDownpaymentAmountComponent extends TransactionInputFieldB
|
|
|
14807
14871
|
});
|
|
14808
14872
|
}
|
|
14809
14873
|
}
|
|
14810
|
-
|
|
14874
|
+
TransactionHeaderDepositAmountComponent.decorators = [
|
|
14811
14875
|
{ type: Component, args: [{
|
|
14812
|
-
selector: "co-transaction-header-
|
|
14876
|
+
selector: "co-transaction-header-deposit-amount",
|
|
14813
14877
|
template: `
|
|
14814
|
-
<span *ngIf="(!editMode || readonly) && !defaultEditMode" [textContent]="(transactionInfo.
|
|
14815
|
-
<co-input-text #input *ngIf="editMode || defaultEditMode"
|
|
14878
|
+
<span *ngIf="(!editMode || readonly) && !defaultEditMode" [textContent]="(transactionInfo.depositAmount | coCurrency) || '...'"></span>
|
|
14879
|
+
<co-input-text #input *ngIf="editMode || defaultEditMode" class="custom-height"
|
|
14816
14880
|
[type]="'number'"
|
|
14817
14881
|
[placeholder]="showLabel ? ('DOWNPAYMENT' | localize) : ''"
|
|
14818
14882
|
[showSaveCancel]="!readonly"
|
|
14819
14883
|
[readonly]="readonly"
|
|
14820
|
-
[model]="transactionInfo.
|
|
14884
|
+
[model]="transactionInfo.depositAmount"
|
|
14821
14885
|
(blur)="editMode = false"
|
|
14822
14886
|
></co-input-text>
|
|
14823
14887
|
`,
|
|
14824
14888
|
encapsulation: ViewEncapsulation.None
|
|
14825
14889
|
},] }
|
|
14826
14890
|
];
|
|
14827
|
-
|
|
14891
|
+
TransactionHeaderDepositAmountComponent.ctorParameters = () => [
|
|
14828
14892
|
{ type: TransactionService }
|
|
14829
14893
|
];
|
|
14830
|
-
|
|
14894
|
+
TransactionHeaderDepositAmountComponent.propDecorators = {
|
|
14831
14895
|
child: [{ type: ViewChild, args: ['input', { read: InputTextComponent },] }]
|
|
14832
14896
|
};
|
|
14833
14897
|
|
|
14834
|
-
class
|
|
14898
|
+
class TransactionHeaderDepositAmountModule {
|
|
14835
14899
|
}
|
|
14836
|
-
|
|
14900
|
+
TransactionHeaderDepositAmountModule.decorators = [
|
|
14837
14901
|
{ type: NgModule, args: [{
|
|
14838
14902
|
imports: [
|
|
14839
14903
|
CommonModule,
|
|
@@ -14841,10 +14905,10 @@ TransactionHeaderDownpaymentAmountModule.decorators = [
|
|
|
14841
14905
|
InputTextModule
|
|
14842
14906
|
],
|
|
14843
14907
|
declarations: [
|
|
14844
|
-
|
|
14908
|
+
TransactionHeaderDepositAmountComponent
|
|
14845
14909
|
],
|
|
14846
14910
|
exports: [
|
|
14847
|
-
|
|
14911
|
+
TransactionHeaderDepositAmountComponent
|
|
14848
14912
|
]
|
|
14849
14913
|
},] }
|
|
14850
14914
|
];
|
|
@@ -15197,8 +15261,8 @@ CheckoutModule.decorators = [
|
|
|
15197
15261
|
TransactionHeaderRemarksModule,
|
|
15198
15262
|
TransactionHeaderReferenceModule,
|
|
15199
15263
|
TransactionHeaderRelationReferenceModule,
|
|
15200
|
-
|
|
15201
|
-
|
|
15264
|
+
TransactionHeaderDepositPercentageModule,
|
|
15265
|
+
TransactionHeaderDepositAmountModule,
|
|
15202
15266
|
TransactionHeaderDefinitiveModule,
|
|
15203
15267
|
TransactionHeaderBranchModule,
|
|
15204
15268
|
TransactionHeaderAdministrativeRelationModule,
|
|
@@ -15213,7 +15277,6 @@ CheckoutModule.decorators = [
|
|
|
15213
15277
|
CheckoutComponent,
|
|
15214
15278
|
],
|
|
15215
15279
|
providers: [
|
|
15216
|
-
DictionaryService,
|
|
15217
15280
|
OptionsService
|
|
15218
15281
|
],
|
|
15219
15282
|
entryComponents: [
|
|
@@ -16094,13 +16157,13 @@ class TransactionHeaderPaymentComponent extends TransactionBaseComponent {
|
|
|
16094
16157
|
});
|
|
16095
16158
|
}
|
|
16096
16159
|
transactionSet() {
|
|
16097
|
-
this.
|
|
16160
|
+
this._getDepositPaymentInfo();
|
|
16098
16161
|
}
|
|
16099
|
-
|
|
16100
|
-
this._paymentService.
|
|
16162
|
+
_getDepositPaymentInfo() {
|
|
16163
|
+
this._paymentService.getDepositPaymentInfo(this.transactionInfo.uuid).then((info) => {
|
|
16101
16164
|
if (info) {
|
|
16102
|
-
this.toPay = info.
|
|
16103
|
-
this.paid = info.
|
|
16165
|
+
this.toPay = info.depositAmount;
|
|
16166
|
+
this.paid = info.depositPaymentAmountTotal;
|
|
16104
16167
|
}
|
|
16105
16168
|
});
|
|
16106
16169
|
}
|
|
@@ -16129,20 +16192,20 @@ TransactionHeaderPaymentComponent.decorators = [
|
|
|
16129
16192
|
</div>
|
|
16130
16193
|
</ng-template>
|
|
16131
16194
|
<ng-template #firstBlock>
|
|
16132
|
-
<div class="header-
|
|
16133
|
-
<co-transaction-header-
|
|
16195
|
+
<div class="header-deposit-label co-transaction-label" [textContent]="'DOWNPAYMENT_PERCENTAGE' | localize"></div>
|
|
16196
|
+
<co-transaction-header-deposit-percentage class="transaction-header-deposit"
|
|
16134
16197
|
[transactionInfo]="transactionInfo"
|
|
16135
16198
|
[defaultEditMode]="false"
|
|
16136
16199
|
[showLabel]="false"
|
|
16137
|
-
></co-transaction-header-
|
|
16200
|
+
></co-transaction-header-deposit-percentage>
|
|
16138
16201
|
</ng-template>
|
|
16139
16202
|
<ng-template #secondBlock>
|
|
16140
|
-
<div class="header-
|
|
16141
|
-
<co-transaction-header-
|
|
16203
|
+
<div class="header-deposit-label co-transaction-label" [textContent]="'DOWNPAYMENT_AMOUNT' | localize"></div>
|
|
16204
|
+
<co-transaction-header-deposit-amount class="transaction-header-deposit"
|
|
16142
16205
|
[transactionInfo]="transactionInfo"
|
|
16143
16206
|
[defaultEditMode]="false"
|
|
16144
16207
|
[showLabel]="false"
|
|
16145
|
-
></co-transaction-header-
|
|
16208
|
+
></co-transaction-header-deposit-amount>
|
|
16146
16209
|
</ng-template>
|
|
16147
16210
|
<co-dialog class="transaction-header-payment-dialog" [headerTemplate]="headerTemplate" *ngIf="showDialog" (closeClick)="showDialog = false">
|
|
16148
16211
|
<ng-template #headerTemplate>
|
|
@@ -16196,8 +16259,8 @@ TransactionHeaderPaymentModule.decorators = [
|
|
|
16196
16259
|
CoDialogModule,
|
|
16197
16260
|
PaymentModule,
|
|
16198
16261
|
IconModule,
|
|
16199
|
-
|
|
16200
|
-
|
|
16262
|
+
TransactionHeaderDepositPercentageModule,
|
|
16263
|
+
TransactionHeaderDepositAmountModule,
|
|
16201
16264
|
DialogTransactionHeaderDiscountModule
|
|
16202
16265
|
],
|
|
16203
16266
|
declarations: [
|
|
@@ -16265,7 +16328,7 @@ class TransactionLineStatusbarComponent extends TransactionBaseComponent {
|
|
|
16265
16328
|
}
|
|
16266
16329
|
setStatusbardataForSalesOrder() {
|
|
16267
16330
|
this.statusbarData = [
|
|
16268
|
-
this.getStatusbarLine("
|
|
16331
|
+
this.getStatusbarLine("ORDERED", this.transactionLine.amount),
|
|
16269
16332
|
this.getStatusbarLine("ALLOCATED", this.transactionLine.quantityAllocatedFromStock),
|
|
16270
16333
|
this.getStatusbarLine("PLANNING_REQUESTED", this.transactionLine.quantityPlanningRequested),
|
|
16271
16334
|
this.getStatusbarLine("PLANNING_PREFERRED_DATE_ENTERED", this.transactionLine.quantityPlanningPreferredDateEntered),
|
|
@@ -16278,7 +16341,6 @@ class TransactionLineStatusbarComponent extends TransactionBaseComponent {
|
|
|
16278
16341
|
}
|
|
16279
16342
|
setStatusbarDataForPurchaseOrder() {
|
|
16280
16343
|
this.statusbarData = [
|
|
16281
|
-
this.getStatusbarLine("IN_ORDER", this.transactionLine.amount),
|
|
16282
16344
|
this.getStatusbarLine("CONFIRMED", this.transactionLine.quantityPurchaseConfirmed),
|
|
16283
16345
|
this.getStatusbarLine("TRANSPORT_NOTIFICATION", this.transactionLine.quantityTransportNotification),
|
|
16284
16346
|
//this.getStatusbarLine(),// Vooraangemeld todo: als BE gereed is
|
|
@@ -21903,6 +21965,33 @@ TransactionGoodsAllocationLineModule.decorators = [
|
|
|
21903
21965
|
},] }
|
|
21904
21966
|
];
|
|
21905
21967
|
|
|
21968
|
+
class TransactionPurchaseOrderLineModule {
|
|
21969
|
+
}
|
|
21970
|
+
TransactionPurchaseOrderLineModule.decorators = [
|
|
21971
|
+
{ type: NgModule, args: [{
|
|
21972
|
+
imports: [
|
|
21973
|
+
CommonModule,
|
|
21974
|
+
TransactionBaseLineModule,
|
|
21975
|
+
TransactionLineStatusbarModule,
|
|
21976
|
+
TransactionLineDeliveryDateModule,
|
|
21977
|
+
TransactionLinePriceModule,
|
|
21978
|
+
CoCurrencyPipeModule,
|
|
21979
|
+
PipeModule,
|
|
21980
|
+
TransactionLineSupplierModule,
|
|
21981
|
+
TransactionLineDeliveryDateButtonModule,
|
|
21982
|
+
InputNumberPickerModule,
|
|
21983
|
+
TransactionLineSupplierButtonModule,
|
|
21984
|
+
IconModule
|
|
21985
|
+
],
|
|
21986
|
+
declarations: [
|
|
21987
|
+
TransactionPurchaseOrderLineComponent
|
|
21988
|
+
],
|
|
21989
|
+
exports: [
|
|
21990
|
+
TransactionPurchaseOrderLineComponent
|
|
21991
|
+
]
|
|
21992
|
+
},] }
|
|
21993
|
+
];
|
|
21994
|
+
|
|
21906
21995
|
class TransactionCardComponent extends TransactionBaseComponent {
|
|
21907
21996
|
constructor(transactionService, _mappingService, _compFactoryResolver, appRef, injector) {
|
|
21908
21997
|
super(transactionService);
|
|
@@ -22269,6 +22358,7 @@ TransactionModule.decorators = [
|
|
|
22269
22358
|
TransactionPurchaseLineModule,
|
|
22270
22359
|
QuickSendButtonModule,
|
|
22271
22360
|
TransactionGoodsAllocationLineModule,
|
|
22361
|
+
TransactionPurchaseOrderLineModule,
|
|
22272
22362
|
TransactionCardModule
|
|
22273
22363
|
],
|
|
22274
22364
|
declarations: [
|
|
@@ -25043,5 +25133,5 @@ TransactionLineGridModule.decorators = [
|
|
|
25043
25133
|
* Generated bundle index. Do not edit.
|
|
25044
25134
|
*/
|
|
25045
25135
|
|
|
25046
|
-
export { CheckoutComponent, CheckoutModule, ContentViewMode, LoaderComponent, LoaderModule, RelationService, SearchViewMode, SearchbarViewMode, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, TransactionComponent, TransactionConfirmationDetailsComponent, TransactionConfirmationDetailsModule, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionFilterComponent, TransactionFilterModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionModule, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionSearchComponent, TransactionSearchHeaderComponent, TransactionSearchHeaderModule, TransactionSearchModule, TransactionSearchService, TransactionService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTotalsComponent, TransactionTotalsModule, PendingReasonService as ɵa, OptionsService as ɵb, ConfirmationDialogComponent as ɵba, DialogBaseComponent as ɵbb, IconCacheService as ɵbc, CharacteristicAnswerModule as ɵbd, CharacteristicAnswerComponent as ɵbe, WarehouseModule as ɵbf, WarehouseComponent as ɵbg, ToastModule as ɵbh, ToastComponent as ɵbi, ImageDisplayComponent as ɵbj, IconComponent as ɵbk, CustomerGroupsComponent as ɵbl, StockStatusIndicatorComponent as ɵbm, LazyRenderMasterDirective as ɵbn, LazyRenderDirective as ɵbo, RelationAddressModule as ɵbp, RelationAddressComponent as ɵbq, RelationBaseComponent as ɵbr, RelationAddressSelectModule as ɵbs, RelationAddressTileModule as ɵbt, TileModule as ɵbu, TileComponent as ɵbv, RelationAddressTileComponent as ɵbw, RelationAddressSelectComponent as ɵbx, StepperModule as ɵby, StepperComponent as ɵbz, DictionaryService as ɵc, StepperStepComponent as ɵca, TransactionLineModule as ɵcb, TransactionLineComponent as ɵcc, TransactionBaseComponent as ɵcd, TransactionMappingService as ɵce, TransactionArticleTextModule as ɵcf, TransactionLineImageAndDescriptionModule as ɵcg, TransactionLineDescriptionModule as ɵch, TransactionLineDescriptionComponent as ɵci, TransactionInputFieldBaseComponent as ɵcj, TransactionLineImageAndDescriptionComponent as ɵck, TransactionImageService as ɵcl, TransactionArticleTextComponent as ɵcm, TransactionReceiveGoodsService as ɵcn, DialogTransactionHeaderDiscountModule as ɵco, TransactionHeaderDiscountPercentageModule as ɵcp, TransactionHeaderDiscountPercentageComponent as ɵcq, TransactionHeaderDiscountAmountModule as ɵcr, TransactionHeaderDiscountAmountComponent as ɵcs, TransactionHeaderDiscountTransactionTotalModule as ɵct, TransactionHeaderDiscountTransactionTotalComponent as ɵcu, DialogTransactionHeaderDiscountComponent as ɵcv, DialogTransactionBaseComponent as ɵcw, AvatarModule as ɵcx, AvatarComponent as ɵcy, SharedService as ɵcz, DialogService as ɵd, SharedConnectorService as ɵda, DeliveryTypeTileModule as ɵdb, DeliveryTypeTileComponent as ɵdc, PaymentModule as ɵdd, PaymentTileModule as ɵde, PaymentTileComponent as ɵdf, PaymentQrCodeModule as ɵdg, PaymentQrCodeComponent as ɵdh, DownPaymentModule as ɵdi, DownPaymentComponent as ɵdj, PaymentService as ɵdk, PaymentComponent as ɵdl, RelationTypeModule as ɵdm, RelationTypeComponent as ɵdn, RelationGeneralModule as ɵdo, RelationSuggestionsListModule as ɵdp, RelationSuggestionsListItemModule as ɵdq, RelationSuggestionsListItemComponent as ɵdr, RelationSuggestionsListComponent as ɵds, RelationGeneralComponent as ɵdt, RelationAddressesModule as ɵdu, RelationAddressesComponent as ɵdv, RelationContactDetailsModule as ɵdw, RelationContactDetailsComponent as ɵdx, RelationPreferencesModule as ɵdy, RelationPreferencesComponent as ɵdz, DynamicComponentService as ɵe, TransactionHeaderBlockModule as ɵea, TransactionHeaderBlockComponent as ɵeb, TransactionHeaderDeliveryDateModule as ɵec, TransactionHeaderDeliveryDateComponent as ɵed, TransactionHeaderDeliveryOptionsModule as ɵee, TransactionHeaderDeliveryOptionsComponent as ɵef, TransactionHeaderRemarksModule as ɵeg, TransactionHeaderRemarksComponent as ɵeh, TransactionHeaderReferenceModule as ɵei, TransactionHeaderReferenceComponent as ɵej, TransactionHeaderRelationReferenceModule as ɵek, TransactionHeaderRelationReferenceComponent as ɵel, TransactionHeaderDeliveryMethodModule as ɵem, TransactionLineCheckboxModule as ɵen, TransactionLineCheckboxListComponent as ɵeo, TransactionHeaderDeliveryMethodComponent as ɵep, TransactionFilterPopupBaseComponent as ɵeq, TransactionHeaderPreferredDeliveryDateModule as ɵer, TransactionHeaderPreferredDeliveryDateComponent as ɵes, DialogTransactionHeaderDeliveryMethodModule as ɵet, DialogHeaderSearchModule as ɵeu, DialogHeaderSearchComponent as ɵev, DialogTransactionHeaderDeliveryMethodComponent as ɵew, TransactionHeaderPartialDeliveryModule as ɵex, TransactionHeaderPartialDeliveryComponent as ɵey, TransactionHeaderDownpaymentPercentageModule as ɵez, TransactionConnectorService as ɵf, TransactionHeaderDownpaymentPercentageComponent as ɵfa, TransactionHeaderDownpaymentAmountModule as ɵfb, TransactionHeaderDownpaymentAmountComponent as ɵfc, TransactionHeaderDefinitiveModule as ɵfd, TransactionHeaderDefinitiveComponent as ɵfe, TransactionHeaderBranchModule as ɵff, TransactionHeaderBranchComponent as ɵfg, TransactionHeaderAdministrativeRelationModule as ɵfh, TransactionHeaderAdministrativeRelationComponent as ɵfi, TransactionHeaderMarketingModule as ɵfj, TransactionHeaderMarketingComponent as ɵfk, CheckoutOverviewRelationEditComponent as ɵfl, CheckoutOverviewDeliveryEditComponent as ɵfm, CheckoutOverviewDeliveryAddressComponent as ɵfn, CheckoutOverviewPaymentComponent as ɵfo, CheckoutLoginComponent as ɵfp, TransactionFilterCategoriesModule as ɵfq, TransactionFilterCategoriesComponent as ɵfr, TransactionHeaderDiscountButtonModule as ɵfs, TransactionHeaderDiscountButtonComponent as ɵft, TransactionHeaderPaymentModule as ɵfu, TransactionHeaderPaymentComponent as ɵfv, TransactionLinesGridModule as ɵfw, TransactionBaseGridModule as ɵfx, TransactionLineSidePanelModule as ɵfy, TransactionLineSidePanelDefaultModule as ɵfz, TransactionConnectorAdapterService as ɵg, TransactionLinePriceListModule as ɵga, TransactionLinePriceListComponent as ɵgb, TransactionLineVatModule as ɵgc, TransactionLineVatComponent as ɵgd, TransactionLineQuantityModule as ɵge, TransactionLineQuantityComponent as ɵgf, TransactionLineLineDiscountModule as ɵgg, TransactionLineLineDiscountComponent as ɵgh, TransactionLineDeliveryMethodModule as ɵgi, TransactionLineDeliveryMethodComponent as ɵgj, TransactionLineDeliveryDateModule as ɵgk, TransactionLineDeliveryDateComponent as ɵgl, TransactionLineReferenceModule as ɵgm, TransactionLineReferenceComponent as ɵgn, TransactionLineCommissionCodeModule as ɵgo, TransactionLineCommissionCodeComponent as ɵgp, TransactionLineWarehouseModule as ɵgq, TransactionLineWarehouseComponent as ɵgr, TransactionLineDiscountAmountModule as ɵgs, TransactionLineDiscountAmountComponent as ɵgt, TransactionLineQuantumDiscountModule as ɵgu, TransactionLineQuantumDiscountComponent as ɵgv, TransactionLineSpecialDiscountModule as ɵgw, TransactionLineSpecialDiscountComponent as ɵgx, TransactionLineSupplierModule as ɵgy, TransactionLineSupplierComponent as ɵgz, SelectMultipleCacheService as ɵh, TransactionLinePriceModule as ɵha, TransactionLinePriceComponent as ɵhb, TransactionLineSidePanelDefaultComponent as ɵhc, TransactionReceivingGoodsHistoryModule as ɵhd, TransactionHistoryGridModule as ɵhe, TransactionHistoryGridStatusModule as ɵhf, TransactionHistoryGridStatusComponent as ɵhg, TransactionHistoryGridComponent as ɵhh, TransactionReceivingGoodsHistoryComponent as ɵhi, TransactionButtonBarModule as ɵhj, AnimatedCheckboxModule as ɵhk, AnimatedCheckboxComponent as ɵhl, TransactionButtonBarComponent as ɵhm, TransactionButtonBarButtonComponent as ɵhn, TransactionButtonBarButtonBaseComponent as ɵho, TransactionSalesPurchaseButtonBarButtonComponent as ɵhp, TransactionLineSidePanelPurchaseModule as ɵhq, DefaultOkCancelButtonsModule as ɵhr, DefaultOkCancelButtonsComponent as ɵhs, TransactionAvailableStockGridModule as ɵht, TransactionAvailableStockGridComponent as ɵhu, TransactionSidePanelEditRequestDetailsModule as ɵhv, TransactionLineWarehouseLocationButtonModule as ɵhw, TransactionLineWarehouseLocationButtonComponent as ɵhx, TransactionSidePanelEditRequestDetailsComponent as ɵhy, AllocationRequestComponent as ɵhz, BusinessObjectCacheManagerService as ɵi, ReceiveGoodsRequestComponent as ɵia, ArticleService as ɵib, TransactionLineSidePanelPurchaseComponent as ɵic, TransactionLineSidePanelSalesModule as ɵid, TransactionAllocateGoodsHistoryModule as ɵie, TransactionAllocateGoodsHistoryComponent as ɵif, TransactionLineSidePanelSalesComponent as ɵig, TransactionLineSidePanelComponent as ɵih, DynamicBaseComponent as ɵii, TransactionLineActionButtonsModule as ɵij, TransactionArticleTextOverviewModule as ɵik, TransactionArticleTextOverviewComponent as ɵil, TransactionLineActionButtonsComponent as ɵim, TransactionBaseGridComponent as ɵin, TransactionGridBaseComponent as ɵio, DialogTransactionLineCommissionCodeModule as ɵip, DialogTransactionLineCommissionCodeComponent as ɵiq, DialogTransactionLineWarehouseModule as ɵir, DialogTransactionLineWarehouseComponent as ɵis, DialogTransactionLineWarehouseCcModule as ɵit, DialogTransactionLineWarehouseCcComponent as ɵiu, DialogTransactionLineDeliveryMethodModule as ɵiv, DialogTransactionLineDeliveryMethodComponent as ɵiw, DialogTransactionLineVatModule as ɵix, DialogTransactionLineVatComponent as ɵiy, DialogTransactionLineDiscountModule as ɵiz, CacheField as ɵj, DialogTransactionLinePriceListModule as ɵja, DialogTransactionLinePriceListComponent as ɵjb, DialogTransactionLineDiscountComponent as ɵjc, TransactionLinesGridComponent as ɵjd, DiscountModule as ɵje, DiscountComponent as ɵjf, QuickSendButtonModule as ɵjg, QuickSendButtonComponent as ɵjh, TransactionQuickAccessOverviewModule as ɵji, DialogCatalogModule as ɵjj, DialogCatalogComponent as ɵjk, TransactionQuickAccessOverviewComponent as ɵjl, TransactionQuickAccessSendMethodBaseComponent as ɵjm, TransactionQuickAccessOrderDeliveryModule as ɵjn, TransactionQuickAccessOrderDeliveryComponent as ɵjo, TransactionOrderDeliveryService as ɵjp, TransactionQuickAccessOrderPurchaseModule as ɵjq, TransactionQuickAccessOrderPurchaseComponent as ɵjr, TransactionQuickAccessGoodsAllocationModule as ɵjs, TransactionQuickAccessGoodsAllocationComponent as ɵjt, TransactionAllocateGoodsService as ɵju, TransactionQuickAccessPurchaseOrderOverviewModule as ɵjv, TransactionQuickAccessPurchaseOrderOverviewComponent as ɵjw, TransactionOrderConfirmationGridModule as ɵjx, TransactionOrderConfirmationGridComponent as ɵjy, TransactionReceivedGoodsGridModule as ɵjz, SelectMultipleParameterizedCacheService as ɵk, DialogTransactionLineWarehouseLocationModule as ɵka, TransactionLineWarehouseLocationModule as ɵkb, TransactionLineWarehouseLocationComponent as ɵkc, DialogTransactionLineWarehouseLocationComponent as ɵkd, TransactionReceivedGoodsGridComponent as ɵke, ViewModeButtonsModule as ɵkf, ViewModeButtonsComponent as ɵkg, TransactionGridModule as ɵkh, TransactionGridComponent as ɵki, TransactionTileModule as ɵkj, TransactionTileComponent as ɵkk, TransactionOverviewLineModule as ɵkl, EditableLabelModule as ɵkm, EditableLabelComponent as ɵkn, TransactionBaseLineModule as ɵko, TransactionBaseLineComponent as ɵkp, TransactionLineCommissionButtonModule as ɵkq, TransactionLineCommissionButtonComponent as ɵkr, TransactionLineWarehouseButtonModule as ɵks, TransactionLineWarehouseButtonComponent as ɵkt, TransactionLineDeliveryButtonModule as ɵku, TransactionLineDeliveryButtonComponent as ɵkv, TransactionLineDeliveryDateButtonModule as ɵkw, TransactionLineDeliveryDateButtonComponent as ɵkx, TransactionLineAmountModule as ɵky, TransactionLineAmountComponent as ɵkz, ErrorService as ɵl, TransactionLineVatButtonModule as ɵla, TransactionLineVatButtonComponent as ɵlb, TransactionLineDiscountButtonModule as ɵlc, TransactionLineDiscountButtonComponent as ɵld, TransactionOverviewLineComponent as ɵle, TransactionOrderDeliveryLineModule as ɵlf, TransactionOrderDeliveryLineComponent as ɵlg, TransactionReceiveGoodsLineModule as ɵlh, TransactionReceiveGoodsLineComponent as ɵli, TransactionPurchaseLineModule as ɵlj, TransactionLineSupplierButtonModule as ɵlk, DialogTransactionLineSupplierModule as ɵll, DialogTransactionLineSupplierComponent as ɵlm, TransactionLineSupplierButtonComponent as ɵln, TransactionPurchaseLineComponent as ɵlo, TransactionGoodsAllocationLineModule as ɵlp, TransactionGoodsAllocationLineComponent as ɵlq, TransactionCardModule as ɵlr, TransactionCardPurchaseOverviewModule as ɵls, TransactionCardHeaderModule as ɵlt, TransactionCardHeaderComponent as ɵlu, TransactionCardFooterModule as ɵlv, TransactionCardFooterComponent as ɵlw, TransactionCardPurchaseOverviewComponent as ɵlx, TransactionCardSalesOverviewModule as ɵly, TransactionCardSalesOverviewComponent as ɵlz, SelectSingleCacheService as ɵm, TransactionCardComponent as ɵma, TransactionSearchResultModule as ɵmb, TransactionSearchSalesOrderTileModule as ɵmc, TransactionSearchSalesOrderTileComponent as ɵmd, TransactionSearchTileBaseComponent as ɵme, TransactionSearchPurchaseOrderTileModule as ɵmf, TransactionSearchPurchaseOrderTileComponent as ɵmg, TransactionSearchSalesOrderGridModule as ɵmh, TransactionSearchSalesOrderGridComponent as ɵmi, TransactionSearchGridBaseComponent as ɵmj, TransactionSearchPurchaseOrderGridModule as ɵmk, TransactionSearchPurchaseOrderGridComponent as ɵml, TransactionSearchGridModule as ɵmm, TransactionSearchGridComponent as ɵmn, TransactionSearchTileModule as ɵmo, TransactionSearchTileComponent as ɵmp, TransactionSearchResultComponent as ɵmq, TransactionSalesOrderFilterModule as ɵmr, TransactionSalesOrderFilterContentOrderModule as ɵms, TransactionFilterItemModule as ɵmt, TransactionFilterItemComponent as ɵmu, TransactionSalesOrderFilterContentOrderComponent as ɵmv, TransactionFilterContentBaseComponent as ɵmw, FilterRequestService as ɵmx, TransactionSalesOrderFilterContentLogisticsModule as ɵmy, TransactionFilterHistoricStateModule as ɵmz, ArticleConnectorService as ɵn, TransactionFilterHistoricStateComponent as ɵna, TransactionSalesOrderFilterContentLogisticsComponent as ɵnb, TransactionSalesOrderFilterContentArticleModule as ɵnc, TransactionSalesOrderFilterContentArticleComponent as ɵnd, TransactionSalesOrderFilterComponent as ɵne, TransactionFilterBaseComponent as ɵnf, TransactionPurchaseOrderFilterModule as ɵng, TransactionPurchaseOrderFilterContentOrderModule as ɵnh, TransactionPurchaseOrderFilterContentOrderComponent as ɵni, TransactionPurchaseOrderFilterContentLogisticsModule as ɵnj, TransactionPurchaseOrderFilterContentLogisticsComponent as ɵnk, TransactionPurchaseOrderFilterContentArticleModule as ɵnl, TransactionPurchaseOrderFilterContentArticleComponent as ɵnm, TransactionPurchaseOrderFilterComponent as ɵnn, TransactionEventService as ɵo, RelationConnectorService as ɵp, CoreModule as ɵq, ConfirmationDialogModule as ɵr, PipeModule as ɵs, AppendPipe as ɵt, DeliveryTimePipe as ɵu, DateDurationPipe as ɵv, LocalizePipe as ɵw, CoCurrencyPipe as ɵx, SafeStylePipe as ɵy, SafeHtmlPipe as ɵz };
|
|
25136
|
+
export { CheckoutComponent, CheckoutModule, ContentViewMode, LoaderComponent, LoaderModule, RelationService, SearchViewMode, SearchbarViewMode, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, TransactionComponent, TransactionConfirmationDetailsComponent, TransactionConfirmationDetailsModule, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionFilterComponent, TransactionFilterModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionModule, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionSearchComponent, TransactionSearchHeaderComponent, TransactionSearchHeaderModule, TransactionSearchModule, TransactionSearchService, TransactionService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTotalsComponent, TransactionTotalsModule, PendingReasonService as ɵa, OptionsService as ɵb, ConfirmationDialogComponent as ɵba, DialogBaseComponent as ɵbb, IconCacheService as ɵbc, CharacteristicAnswerModule as ɵbd, CharacteristicAnswerComponent as ɵbe, WarehouseModule as ɵbf, WarehouseComponent as ɵbg, ToastModule as ɵbh, ToastComponent as ɵbi, ImageDisplayComponent as ɵbj, IconComponent as ɵbk, CustomerGroupsComponent as ɵbl, StockStatusIndicatorComponent as ɵbm, LazyRenderMasterDirective as ɵbn, LazyRenderDirective as ɵbo, RelationAddressModule as ɵbp, RelationAddressComponent as ɵbq, RelationBaseComponent as ɵbr, RelationAddressSelectModule as ɵbs, RelationAddressTileModule as ɵbt, TileModule as ɵbu, TileComponent as ɵbv, RelationAddressTileComponent as ɵbw, RelationAddressSelectComponent as ɵbx, StepperModule as ɵby, StepperComponent as ɵbz, DictionaryService as ɵc, StepperStepComponent as ɵca, TransactionLineModule as ɵcb, TransactionLineComponent as ɵcc, TransactionBaseComponent as ɵcd, TransactionMappingService as ɵce, TransactionArticleTextModule as ɵcf, TransactionLineImageAndDescriptionModule as ɵcg, TransactionLineDescriptionModule as ɵch, TransactionLineDescriptionComponent as ɵci, TransactionInputFieldBaseComponent as ɵcj, TransactionLineImageAndDescriptionComponent as ɵck, TransactionImageService as ɵcl, TransactionArticleTextComponent as ɵcm, TransactionReceiveGoodsService as ɵcn, DialogTransactionHeaderDiscountModule as ɵco, TransactionHeaderDiscountPercentageModule as ɵcp, TransactionHeaderDiscountPercentageComponent as ɵcq, TransactionHeaderDiscountAmountModule as ɵcr, TransactionHeaderDiscountAmountComponent as ɵcs, TransactionHeaderDiscountTransactionTotalModule as ɵct, TransactionHeaderDiscountTransactionTotalComponent as ɵcu, DialogTransactionHeaderDiscountComponent as ɵcv, DialogTransactionBaseComponent as ɵcw, AvatarModule as ɵcx, AvatarComponent as ɵcy, SharedService as ɵcz, DialogService as ɵd, SharedConnectorService as ɵda, DeliveryTypeTileModule as ɵdb, DeliveryTypeTileComponent as ɵdc, PaymentModule as ɵdd, PaymentTileModule as ɵde, PaymentTileComponent as ɵdf, PaymentQrCodeModule as ɵdg, PaymentQrCodeComponent as ɵdh, DepositPaymentModule as ɵdi, DepositPaymentComponent as ɵdj, PaymentService as ɵdk, PaymentComponent as ɵdl, RelationTypeModule as ɵdm, RelationTypeComponent as ɵdn, RelationGeneralModule as ɵdo, RelationSuggestionsListModule as ɵdp, RelationSuggestionsListItemModule as ɵdq, RelationSuggestionsListItemComponent as ɵdr, RelationSuggestionsListComponent as ɵds, RelationGeneralComponent as ɵdt, RelationAddressesModule as ɵdu, RelationAddressesComponent as ɵdv, RelationContactDetailsModule as ɵdw, RelationContactDetailsComponent as ɵdx, RelationPreferencesModule as ɵdy, RelationPreferencesComponent as ɵdz, DynamicComponentService as ɵe, TransactionHeaderBlockModule as ɵea, TransactionHeaderBlockComponent as ɵeb, TransactionHeaderDeliveryDateModule as ɵec, TransactionHeaderDeliveryDateComponent as ɵed, TransactionHeaderDeliveryOptionsModule as ɵee, TransactionHeaderDeliveryOptionsComponent as ɵef, TransactionHeaderRemarksModule as ɵeg, TransactionHeaderRemarksComponent as ɵeh, TransactionHeaderReferenceModule as ɵei, TransactionHeaderReferenceComponent as ɵej, TransactionHeaderRelationReferenceModule as ɵek, TransactionHeaderRelationReferenceComponent as ɵel, TransactionHeaderDeliveryMethodModule as ɵem, TransactionLineCheckboxModule as ɵen, TransactionLineCheckboxListComponent as ɵeo, TransactionHeaderDeliveryMethodComponent as ɵep, TransactionFilterPopupBaseComponent as ɵeq, TransactionHeaderPreferredDeliveryDateModule as ɵer, TransactionHeaderPreferredDeliveryDateComponent as ɵes, DialogTransactionHeaderDeliveryMethodModule as ɵet, DialogHeaderSearchModule as ɵeu, DialogHeaderSearchComponent as ɵev, DialogTransactionHeaderDeliveryMethodComponent as ɵew, TransactionHeaderPartialDeliveryModule as ɵex, TransactionHeaderPartialDeliveryComponent as ɵey, TransactionHeaderDepositPercentageModule as ɵez, TransactionConnectorService as ɵf, TransactionHeaderDepositPercentageComponent as ɵfa, TransactionHeaderDepositAmountModule as ɵfb, TransactionHeaderDepositAmountComponent as ɵfc, TransactionHeaderDefinitiveModule as ɵfd, TransactionHeaderDefinitiveComponent as ɵfe, TransactionHeaderBranchModule as ɵff, TransactionHeaderBranchComponent as ɵfg, TransactionHeaderAdministrativeRelationModule as ɵfh, TransactionHeaderAdministrativeRelationComponent as ɵfi, TransactionHeaderMarketingModule as ɵfj, TransactionHeaderMarketingComponent as ɵfk, CheckoutOverviewRelationEditComponent as ɵfl, CheckoutOverviewDeliveryEditComponent as ɵfm, CheckoutOverviewDeliveryAddressComponent as ɵfn, CheckoutOverviewPaymentComponent as ɵfo, CheckoutLoginComponent as ɵfp, TransactionFilterCategoriesModule as ɵfq, TransactionFilterCategoriesComponent as ɵfr, TransactionHeaderDiscountButtonModule as ɵfs, TransactionHeaderDiscountButtonComponent as ɵft, TransactionHeaderPaymentModule as ɵfu, TransactionHeaderPaymentComponent as ɵfv, TransactionLinesGridModule as ɵfw, TransactionBaseGridModule as ɵfx, TransactionLineSidePanelModule as ɵfy, TransactionLineSidePanelDefaultModule as ɵfz, TransactionConnectorAdapterService as ɵg, TransactionLinePriceListModule as ɵga, TransactionLinePriceListComponent as ɵgb, TransactionLineVatModule as ɵgc, TransactionLineVatComponent as ɵgd, TransactionLineQuantityModule as ɵge, TransactionLineQuantityComponent as ɵgf, TransactionLineLineDiscountModule as ɵgg, TransactionLineLineDiscountComponent as ɵgh, TransactionLineDeliveryMethodModule as ɵgi, TransactionLineDeliveryMethodComponent as ɵgj, TransactionLineDeliveryDateModule as ɵgk, TransactionLineDeliveryDateComponent as ɵgl, TransactionLineReferenceModule as ɵgm, TransactionLineReferenceComponent as ɵgn, TransactionLineCommissionCodeModule as ɵgo, TransactionLineCommissionCodeComponent as ɵgp, TransactionLineWarehouseModule as ɵgq, TransactionLineWarehouseComponent as ɵgr, TransactionLineDiscountAmountModule as ɵgs, TransactionLineDiscountAmountComponent as ɵgt, TransactionLineQuantumDiscountModule as ɵgu, TransactionLineQuantumDiscountComponent as ɵgv, TransactionLineSpecialDiscountModule as ɵgw, TransactionLineSpecialDiscountComponent as ɵgx, TransactionLineSupplierModule as ɵgy, TransactionLineSupplierComponent as ɵgz, SelectMultipleCacheService as ɵh, TransactionLinePriceModule as ɵha, TransactionLinePriceComponent as ɵhb, TransactionLineSidePanelDefaultComponent as ɵhc, TransactionReceivingGoodsHistoryModule as ɵhd, TransactionHistoryGridModule as ɵhe, TransactionHistoryGridStatusModule as ɵhf, TransactionHistoryGridStatusComponent as ɵhg, TransactionHistoryGridComponent as ɵhh, TransactionReceivingGoodsHistoryComponent as ɵhi, TransactionButtonBarModule as ɵhj, AnimatedCheckboxModule as ɵhk, AnimatedCheckboxComponent as ɵhl, TransactionButtonBarComponent as ɵhm, TransactionButtonBarButtonComponent as ɵhn, TransactionButtonBarButtonBaseComponent as ɵho, TransactionSalesPurchaseButtonBarButtonComponent as ɵhp, TransactionLineSidePanelPurchaseModule as ɵhq, DefaultOkCancelButtonsModule as ɵhr, DefaultOkCancelButtonsComponent as ɵhs, TransactionAvailableStockGridModule as ɵht, TransactionAvailableStockGridComponent as ɵhu, TransactionSidePanelEditRequestDetailsModule as ɵhv, TransactionLineWarehouseLocationButtonModule as ɵhw, TransactionLineWarehouseLocationButtonComponent as ɵhx, TransactionSidePanelEditRequestDetailsComponent as ɵhy, AllocationRequestComponent as ɵhz, BusinessObjectCacheManagerService as ɵi, ReceiveGoodsRequestComponent as ɵia, ArticleService as ɵib, TransactionLineSidePanelPurchaseComponent as ɵic, TransactionLineSidePanelSalesModule as ɵid, TransactionAllocateGoodsHistoryModule as ɵie, TransactionAllocateGoodsHistoryComponent as ɵif, TransactionLineSidePanelSalesComponent as ɵig, TransactionLineSidePanelComponent as ɵih, DynamicBaseComponent as ɵii, TransactionLineActionButtonsModule as ɵij, TransactionArticleTextOverviewModule as ɵik, TransactionArticleTextOverviewComponent as ɵil, TransactionLineActionButtonsComponent as ɵim, TransactionBaseGridComponent as ɵin, TransactionGridBaseComponent as ɵio, DialogTransactionLineCommissionCodeModule as ɵip, DialogTransactionLineCommissionCodeComponent as ɵiq, DialogTransactionLineWarehouseModule as ɵir, DialogTransactionLineWarehouseComponent as ɵis, DialogTransactionLineWarehouseCcModule as ɵit, DialogTransactionLineWarehouseCcComponent as ɵiu, DialogTransactionLineDeliveryMethodModule as ɵiv, DialogTransactionLineDeliveryMethodComponent as ɵiw, DialogTransactionLineVatModule as ɵix, DialogTransactionLineVatComponent as ɵiy, DialogTransactionLineDiscountModule as ɵiz, CacheField as ɵj, DialogTransactionLinePriceListModule as ɵja, DialogTransactionLinePriceListComponent as ɵjb, DialogTransactionLineDiscountComponent as ɵjc, TransactionLinesGridComponent as ɵjd, DiscountModule as ɵje, DiscountComponent as ɵjf, QuickSendButtonModule as ɵjg, QuickSendButtonComponent as ɵjh, TransactionQuickAccessOverviewModule as ɵji, DialogCatalogModule as ɵjj, DialogCatalogComponent as ɵjk, TransactionQuickAccessOverviewComponent as ɵjl, TransactionQuickAccessSendMethodBaseComponent as ɵjm, TransactionQuickAccessOrderDeliveryModule as ɵjn, TransactionQuickAccessOrderDeliveryComponent as ɵjo, TransactionOrderDeliveryService as ɵjp, TransactionQuickAccessOrderPurchaseModule as ɵjq, TransactionQuickAccessOrderPurchaseComponent as ɵjr, TransactionQuickAccessGoodsAllocationModule as ɵjs, TransactionQuickAccessGoodsAllocationComponent as ɵjt, TransactionAllocateGoodsService as ɵju, TransactionQuickAccessPurchaseOrderOverviewModule as ɵjv, TransactionQuickAccessPurchaseOrderOverviewComponent as ɵjw, TransactionOrderConfirmationGridModule as ɵjx, TransactionOrderConfirmationGridComponent as ɵjy, TransactionReceivedGoodsGridModule as ɵjz, SelectMultipleParameterizedCacheService as ɵk, DialogTransactionLineWarehouseLocationModule as ɵka, TransactionLineWarehouseLocationModule as ɵkb, TransactionLineWarehouseLocationComponent as ɵkc, DialogTransactionLineWarehouseLocationComponent as ɵkd, TransactionReceivedGoodsGridComponent as ɵke, ViewModeButtonsModule as ɵkf, ViewModeButtonsComponent as ɵkg, TransactionGridModule as ɵkh, TransactionGridComponent as ɵki, TransactionTileModule as ɵkj, TransactionTileComponent as ɵkk, TransactionOverviewLineModule as ɵkl, EditableLabelModule as ɵkm, EditableLabelComponent as ɵkn, TransactionBaseLineModule as ɵko, TransactionBaseLineComponent as ɵkp, TransactionLineCommissionButtonModule as ɵkq, TransactionLineCommissionButtonComponent as ɵkr, TransactionLineWarehouseButtonModule as ɵks, TransactionLineWarehouseButtonComponent as ɵkt, TransactionLineDeliveryButtonModule as ɵku, TransactionLineDeliveryButtonComponent as ɵkv, TransactionLineDeliveryDateButtonModule as ɵkw, TransactionLineDeliveryDateButtonComponent as ɵkx, TransactionLineAmountModule as ɵky, TransactionLineAmountComponent as ɵkz, ErrorService as ɵl, TransactionLineVatButtonModule as ɵla, TransactionLineVatButtonComponent as ɵlb, TransactionLineDiscountButtonModule as ɵlc, TransactionLineDiscountButtonComponent as ɵld, TransactionOverviewLineComponent as ɵle, TransactionOrderDeliveryLineModule as ɵlf, TransactionOrderDeliveryLineComponent as ɵlg, TransactionReceiveGoodsLineModule as ɵlh, TransactionReceiveGoodsLineComponent as ɵli, TransactionPurchaseLineModule as ɵlj, TransactionLineSupplierButtonModule as ɵlk, DialogTransactionLineSupplierModule as ɵll, DialogTransactionLineSupplierComponent as ɵlm, TransactionLineSupplierButtonComponent as ɵln, TransactionPurchaseLineComponent as ɵlo, TransactionGoodsAllocationLineModule as ɵlp, TransactionGoodsAllocationLineComponent as ɵlq, TransactionPurchaseOrderLineModule as ɵlr, TransactionPurchaseOrderLineComponent as ɵls, TransactionCardModule as ɵlt, TransactionCardPurchaseOverviewModule as ɵlu, TransactionCardHeaderModule as ɵlv, TransactionCardHeaderComponent as ɵlw, TransactionCardFooterModule as ɵlx, TransactionCardFooterComponent as ɵly, TransactionCardPurchaseOverviewComponent as ɵlz, SelectSingleCacheService as ɵm, TransactionCardSalesOverviewModule as ɵma, TransactionCardSalesOverviewComponent as ɵmb, TransactionCardComponent as ɵmc, TransactionSearchResultModule as ɵmd, TransactionSearchSalesOrderTileModule as ɵme, TransactionSearchSalesOrderTileComponent as ɵmf, TransactionSearchTileBaseComponent as ɵmg, TransactionSearchPurchaseOrderTileModule as ɵmh, TransactionSearchPurchaseOrderTileComponent as ɵmi, TransactionSearchSalesOrderGridModule as ɵmj, TransactionSearchSalesOrderGridComponent as ɵmk, TransactionSearchGridBaseComponent as ɵml, TransactionSearchPurchaseOrderGridModule as ɵmm, TransactionSearchPurchaseOrderGridComponent as ɵmn, TransactionSearchGridModule as ɵmo, TransactionSearchGridComponent as ɵmp, TransactionSearchTileModule as ɵmq, TransactionSearchTileComponent as ɵmr, TransactionSearchResultComponent as ɵms, TransactionSalesOrderFilterModule as ɵmt, TransactionSalesOrderFilterContentOrderModule as ɵmu, TransactionFilterItemModule as ɵmv, TransactionFilterItemComponent as ɵmw, TransactionSalesOrderFilterContentOrderComponent as ɵmx, TransactionFilterContentBaseComponent as ɵmy, FilterRequestService as ɵmz, ArticleConnectorService as ɵn, TransactionSalesOrderFilterContentLogisticsModule as ɵna, TransactionFilterHistoricStateModule as ɵnb, TransactionFilterHistoricStateComponent as ɵnc, TransactionSalesOrderFilterContentLogisticsComponent as ɵnd, TransactionSalesOrderFilterContentArticleModule as ɵne, TransactionSalesOrderFilterContentArticleComponent as ɵnf, TransactionSalesOrderFilterComponent as ɵng, TransactionFilterBaseComponent as ɵnh, TransactionPurchaseOrderFilterModule as ɵni, TransactionPurchaseOrderFilterContentOrderModule as ɵnj, TransactionPurchaseOrderFilterContentOrderComponent as ɵnk, TransactionPurchaseOrderFilterContentLogisticsModule as ɵnl, TransactionPurchaseOrderFilterContentLogisticsComponent as ɵnm, TransactionPurchaseOrderFilterContentArticleModule as ɵnn, TransactionPurchaseOrderFilterContentArticleComponent as ɵno, TransactionPurchaseOrderFilterComponent as ɵnp, TransactionEventService as ɵo, RelationConnectorService as ɵp, CoreModule as ɵq, ConfirmationDialogModule as ɵr, PipeModule as ɵs, AppendPipe as ɵt, DeliveryTimePipe as ɵu, DateDurationPipe as ɵv, LocalizePipe as ɵw, CoCurrencyPipe as ɵx, SafeStylePipe as ɵy, SafeHtmlPipe as ɵz };
|
|
25047
25137
|
//# sourceMappingURL=colijnit-transaction.js.map
|