@colijnit/transaction 12.1.62 → 12.1.63
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 +465 -510
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +248 -249
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +249 -250
- package/esm2015/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.js +2 -2
- package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.js +31 -30
- package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.module.js +2 -2
- package/esm2015/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.component.js +13 -7
- package/esm2015/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.module.js +5 -4
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.component.js +89 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.module.js +23 -0
- package/esm2015/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.js +4 -4
- package/esm2015/lib/service/pending-reason.service.js +3 -1
- package/esm2015/lib/service/transaction.service.js +19 -55
- package/esm2015/public_api.js +2 -1
- package/fesm2015/colijnit-transaction.js +171 -191
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/transaction-line/transaction-line/style/_layout.scss +29 -11
- package/lib/component/transaction-line/transaction-overview-line/style/_layout.scss +8 -0
- package/lib/component/transaction-line-fields/transaction-line-price/style/_layout.scss +14 -0
- package/lib/component/transaction-line-fields/transaction-line-price/style/_material-definition.scss +0 -0
- package/lib/component/transaction-line-fields/transaction-line-price/style/_theme.scss +4 -0
- package/lib/component/transaction-line-fields/transaction-line-price/style/material.scss +4 -0
- package/lib/component/transaction-line-fields/{transaction-line-price.component.d.ts → transaction-line-price/transaction-line-price.component.d.ts} +3 -2
- package/lib/component/transaction-line-fields/{transaction-line-price.module.d.ts → transaction-line-price/transaction-line-price.module.d.ts} +0 -0
- package/lib/component/transaction-lines/style/material.scss +1 -0
- package/package.json +4 -1
- package/public_api.d.ts +1 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price.component.js +0 -83
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price.module.js +0 -23
|
@@ -4506,6 +4506,7 @@ class PendingReasonService {
|
|
|
4506
4506
|
const status = response.headerOperationStatuses[i];
|
|
4507
4507
|
success = success && (yield this._handleHeaderOperationStatus(status, response.transactionInfo));
|
|
4508
4508
|
}
|
|
4509
|
+
this.rememberCurrentTransaction(response);
|
|
4509
4510
|
return success;
|
|
4510
4511
|
});
|
|
4511
4512
|
}
|
|
@@ -4544,6 +4545,7 @@ class PendingReasonService {
|
|
|
4544
4545
|
const transLine = response.transactionLines.find(t => t.lineNr === status.lineNr);
|
|
4545
4546
|
success = success && (yield this._handleLineOperationStatus(status, transLine));
|
|
4546
4547
|
}
|
|
4548
|
+
this.rememberCurrentTransaction(response);
|
|
4547
4549
|
return success;
|
|
4548
4550
|
});
|
|
4549
4551
|
}
|
|
@@ -4738,9 +4740,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4738
4740
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4739
4741
|
const response = yield this.connector.changeHeaderTransactionDefinitive(uuid, definitive);
|
|
4740
4742
|
if (response) {
|
|
4741
|
-
|
|
4742
|
-
this.rememberCurrentTransaction(response);
|
|
4743
|
-
return success;
|
|
4743
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4744
4744
|
}
|
|
4745
4745
|
return false;
|
|
4746
4746
|
});
|
|
@@ -4749,9 +4749,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4749
4749
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4750
4750
|
const response = yield this.connector.changeHeaderDeliveryAddress(uuid, newNawNr);
|
|
4751
4751
|
if (response) {
|
|
4752
|
-
|
|
4753
|
-
this.rememberCurrentTransaction(response);
|
|
4754
|
-
return success;
|
|
4752
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4755
4753
|
}
|
|
4756
4754
|
return false;
|
|
4757
4755
|
});
|
|
@@ -4760,9 +4758,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4760
4758
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4761
4759
|
const response = yield this.connector.changeHeaderInvoiceAddress(uuid, newNawNr);
|
|
4762
4760
|
if (response) {
|
|
4763
|
-
|
|
4764
|
-
this.rememberCurrentTransaction(response);
|
|
4765
|
-
return success;
|
|
4761
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4766
4762
|
}
|
|
4767
4763
|
return false;
|
|
4768
4764
|
});
|
|
@@ -4771,9 +4767,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4771
4767
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4772
4768
|
const response = yield this.connector.changeHeaderTransactionDeliveryDate(uuid, date);
|
|
4773
4769
|
if (response) {
|
|
4774
|
-
|
|
4775
|
-
this.rememberCurrentTransaction(response);
|
|
4776
|
-
return success;
|
|
4770
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4777
4771
|
}
|
|
4778
4772
|
return false;
|
|
4779
4773
|
});
|
|
@@ -4782,9 +4776,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4782
4776
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4783
4777
|
const response = yield this.connector.changeHeaderTransactionRemark(uuid, remark);
|
|
4784
4778
|
if (response) {
|
|
4785
|
-
|
|
4786
|
-
this.rememberCurrentTransaction(response);
|
|
4787
|
-
return success;
|
|
4779
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4788
4780
|
}
|
|
4789
4781
|
return false;
|
|
4790
4782
|
});
|
|
@@ -4793,9 +4785,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4793
4785
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4794
4786
|
const response = yield this.connector.changeHeaderTransactionReference(uuid, reference);
|
|
4795
4787
|
if (response) {
|
|
4796
|
-
|
|
4797
|
-
this.rememberCurrentTransaction(response);
|
|
4798
|
-
return success;
|
|
4788
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4799
4789
|
}
|
|
4800
4790
|
return false;
|
|
4801
4791
|
});
|
|
@@ -4804,9 +4794,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4804
4794
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4805
4795
|
const response = yield this.connector.changeHeaderTransactionRelationReference(uuid, reference);
|
|
4806
4796
|
if (response) {
|
|
4807
|
-
|
|
4808
|
-
this.rememberCurrentTransaction(response);
|
|
4809
|
-
return success;
|
|
4797
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4810
4798
|
}
|
|
4811
4799
|
return false;
|
|
4812
4800
|
});
|
|
@@ -4815,9 +4803,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4815
4803
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4816
4804
|
const response = yield this.connector.changeHeaderToDownPayAmount(uuid, amount);
|
|
4817
4805
|
if (response) {
|
|
4818
|
-
|
|
4819
|
-
this.rememberCurrentTransaction(response);
|
|
4820
|
-
return success;
|
|
4806
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4821
4807
|
}
|
|
4822
4808
|
return false;
|
|
4823
4809
|
});
|
|
@@ -4826,9 +4812,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4826
4812
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4827
4813
|
const response = yield this.connector.changeHeaderToDownPayPercentage(uuid, amount);
|
|
4828
4814
|
if (response) {
|
|
4829
|
-
|
|
4830
|
-
this.rememberCurrentTransaction(response);
|
|
4831
|
-
return success;
|
|
4815
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4832
4816
|
}
|
|
4833
4817
|
return false;
|
|
4834
4818
|
});
|
|
@@ -4837,9 +4821,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4837
4821
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4838
4822
|
const response = yield this.connector.changeHeaderTransactionPreferredDeliveryDate(uuid, date);
|
|
4839
4823
|
if (response) {
|
|
4840
|
-
|
|
4841
|
-
this.rememberCurrentTransaction(response);
|
|
4842
|
-
return success;
|
|
4824
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4843
4825
|
}
|
|
4844
4826
|
return false;
|
|
4845
4827
|
});
|
|
@@ -4848,9 +4830,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4848
4830
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4849
4831
|
const response = yield this.connector.changeHeaderTransactionDeliveryMethod(uuid, method);
|
|
4850
4832
|
if (response) {
|
|
4851
|
-
|
|
4852
|
-
this.rememberCurrentTransaction(response);
|
|
4853
|
-
return success;
|
|
4833
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4854
4834
|
}
|
|
4855
4835
|
return false;
|
|
4856
4836
|
});
|
|
@@ -4859,9 +4839,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4859
4839
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4860
4840
|
const response = yield this.connector.changeHeaderTransactionDeliveryOptions(uuid, options);
|
|
4861
4841
|
if (response) {
|
|
4862
|
-
|
|
4863
|
-
this.rememberCurrentTransaction(response);
|
|
4864
|
-
return success;
|
|
4842
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4865
4843
|
}
|
|
4866
4844
|
return false;
|
|
4867
4845
|
});
|
|
@@ -4870,9 +4848,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4870
4848
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4871
4849
|
const response = yield this.connector.changeHeaderTransactionPartialDelivery(uuid, allowPartial);
|
|
4872
4850
|
if (response) {
|
|
4873
|
-
|
|
4874
|
-
this.rememberCurrentTransaction(response);
|
|
4875
|
-
return success;
|
|
4851
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4876
4852
|
}
|
|
4877
4853
|
return false;
|
|
4878
4854
|
});
|
|
@@ -4881,9 +4857,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4881
4857
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4882
4858
|
const response = yield this.connector.changeHeaderTransactionBranch(uuid, branch);
|
|
4883
4859
|
if (response) {
|
|
4884
|
-
|
|
4885
|
-
this.rememberCurrentTransaction(response);
|
|
4886
|
-
return success;
|
|
4860
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4887
4861
|
}
|
|
4888
4862
|
return false;
|
|
4889
4863
|
});
|
|
@@ -4892,9 +4866,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4892
4866
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4893
4867
|
const response = yield this.connector.changeHeaderTransactionAdmCoordinator(uuid, relation);
|
|
4894
4868
|
if (response) {
|
|
4895
|
-
|
|
4896
|
-
this.rememberCurrentTransaction(response);
|
|
4897
|
-
return success;
|
|
4869
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4898
4870
|
}
|
|
4899
4871
|
return false;
|
|
4900
4872
|
});
|
|
@@ -4903,9 +4875,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4903
4875
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4904
4876
|
const response = yield this.connector.changeHeaderTransactionMarketing(uuid, code);
|
|
4905
4877
|
if (response) {
|
|
4906
|
-
|
|
4907
|
-
this.rememberCurrentTransaction(response);
|
|
4908
|
-
return success;
|
|
4878
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4909
4879
|
}
|
|
4910
4880
|
return false;
|
|
4911
4881
|
});
|
|
@@ -4914,9 +4884,7 @@ class TransactionService extends PendingReasonService {
|
|
|
4914
4884
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4915
4885
|
const response = yield this.connector.changeHeaderTransactionDiscount(uuid, type, amount);
|
|
4916
4886
|
if (response) {
|
|
4917
|
-
|
|
4918
|
-
this.rememberCurrentTransaction(response);
|
|
4919
|
-
return success;
|
|
4887
|
+
return this.handleHeaderOperationStatuses(response);
|
|
4920
4888
|
}
|
|
4921
4889
|
return false;
|
|
4922
4890
|
});
|
|
@@ -5105,9 +5073,7 @@ class TransactionService extends PendingReasonService {
|
|
|
5105
5073
|
yield this._checkAndCreateTransaction();
|
|
5106
5074
|
const response = yield this.connector.addRelationToTransaction(this.currentTransaction.transactionInfo.uuid, relationId);
|
|
5107
5075
|
if (response) {
|
|
5108
|
-
|
|
5109
|
-
this.rememberCurrentTransaction(response);
|
|
5110
|
-
return success;
|
|
5076
|
+
return this.handleHeaderOperationStatuses(response);
|
|
5111
5077
|
}
|
|
5112
5078
|
return false;
|
|
5113
5079
|
});
|
|
@@ -9844,40 +9810,41 @@ TransactionOverviewLineComponent.decorators = [
|
|
|
9844
9810
|
<co-transaction-base-line [line]="line" [preview]="preview">
|
|
9845
9811
|
<ng-container *ngIf="line.isArticle">
|
|
9846
9812
|
<div class="transaction-line-wrapper">
|
|
9847
|
-
<div *ngIf=!preview class="transaction-line-stock">
|
|
9848
|
-
<div class="transaction-line-stock-wrapper">
|
|
9849
|
-
<stock-status-indicator [model]="stock"></stock-status-indicator>
|
|
9850
|
-
</div>
|
|
9851
|
-
</div>
|
|
9852
9813
|
<div *ngIf=!preview class="transaction-line-extended-wrapper">
|
|
9853
|
-
<
|
|
9854
|
-
|
|
9855
|
-
|
|
9856
|
-
|
|
9857
|
-
|
|
9858
|
-
|
|
9859
|
-
|
|
9860
|
-
|
|
9814
|
+
<div class="column1">
|
|
9815
|
+
<co-transaction-line-commission-button [transactionLine]="line" [transactionInfo]="service.currentTransaction.transactionInfo"></co-transaction-line-commission-button>
|
|
9816
|
+
<co-transaction-line-warehouse-button [transactionLine]="line" [transactionInfo]="service.currentTransaction.transactionInfo"></co-transaction-line-warehouse-button>
|
|
9817
|
+
<co-transaction-line-delivery-date-button [transactionLine]="line" class="two-column"></co-transaction-line-delivery-date-button>
|
|
9818
|
+
</div>
|
|
9819
|
+
<div class="column2">
|
|
9820
|
+
<co-transaction-line-delivery-button [transactionLine]="line" [transactionInfo]="service.currentTransaction.transactionInfo"></co-transaction-line-delivery-button>
|
|
9821
|
+
<co-transaction-line-statusbar [transaction]="line" [transactionKind]="transactionKind"></co-transaction-line-statusbar>
|
|
9822
|
+
</div>
|
|
9861
9823
|
</div>
|
|
9862
|
-
<div class="transaction-line-
|
|
9863
|
-
<
|
|
9864
|
-
|
|
9865
|
-
|
|
9866
|
-
|
|
9867
|
-
|
|
9868
|
-
|
|
9824
|
+
<div class="transaction-line-section">
|
|
9825
|
+
<div *ngIf="!preview" class="transaction-line-button vat-button" (click)="showDialogVat = true">
|
|
9826
|
+
<span class="co-transaction-overflow-ellipsis" [textContent]="line.vatDescription"></span>
|
|
9827
|
+
</div>
|
|
9828
|
+
<div class="transaction-line-totals">
|
|
9829
|
+
<co-transaction-line-price class="transaction-line-totals-price price"
|
|
9830
|
+
[transactionLine]="line"
|
|
9831
|
+
[showLabel]="false"
|
|
9832
|
+
[defaultEditMode]="false"
|
|
9833
|
+
></co-transaction-line-price>
|
|
9834
|
+
<div class="transaction-line-button custom-width transaction-line-totals-discount" (click)="showDialogDiscount = true">
|
|
9869
9835
|
<span class="co-transaction-overflow-ellipsis" [class.transaction-negative-value]="line.lineTotalDiscountAmount < 0"
|
|
9870
9836
|
[textContent]="(line.lineTotalDiscountAmount | coCurrency) || ('DISCOUNT' | localize)"></span>
|
|
9837
|
+
</div>
|
|
9838
|
+
<div *ngIf=!preview class="transaction-line-totals-amount">
|
|
9839
|
+
<co-transaction-line-amount class="amount-number-picker" [transactionLine]="line"></co-transaction-line-amount>
|
|
9840
|
+
</div>
|
|
9841
|
+
<co-editable-label class="transaction-line-totals-total price"
|
|
9842
|
+
[model]="line.displayNetLineTotal | coCurrency"
|
|
9843
|
+
[editModel]="line.displayNetLineTotal"
|
|
9844
|
+
[readonly]="true"
|
|
9845
|
+
[commit]="!readonly"
|
|
9846
|
+
></co-editable-label>
|
|
9871
9847
|
</div>
|
|
9872
|
-
<div *ngIf=!preview class="transaction-line-totals-amount">
|
|
9873
|
-
<co-transaction-line-amount class="amount-number-picker" [transactionLine]="line"></co-transaction-line-amount>
|
|
9874
|
-
</div>
|
|
9875
|
-
<co-editable-label class="transaction-line-totals-total price"
|
|
9876
|
-
[model]="line.displayNetLineTotal | coCurrency"
|
|
9877
|
-
[editModel]="line.displayNetLineTotal"
|
|
9878
|
-
[readonly]="readonly"
|
|
9879
|
-
[commit]="!readonly"
|
|
9880
|
-
></co-editable-label>
|
|
9881
9848
|
</div>
|
|
9882
9849
|
</div>
|
|
9883
9850
|
</ng-container>
|
|
@@ -10234,12 +10201,18 @@ TransactionPurchaseLineComponent.decorators = [
|
|
|
10234
10201
|
<ng-container *ngIf="line.isArticle">
|
|
10235
10202
|
<div class="transaction-line-wrapper">
|
|
10236
10203
|
<div *ngIf=!preview class="transaction-line-extended-wrapper">
|
|
10237
|
-
<
|
|
10238
|
-
|
|
10239
|
-
|
|
10240
|
-
|
|
10241
|
-
|
|
10242
|
-
<
|
|
10204
|
+
<div class="column1">
|
|
10205
|
+
<co-transaction-line-commission-button [transactionLine]="line" [transactionInfo]="service.currentTransaction.transactionInfo"></co-transaction-line-commission-button>
|
|
10206
|
+
<co-transaction-line-warehouse-button [transactionLine]="line" [transactionInfo]="service.currentTransaction.transactionInfo"></co-transaction-line-warehouse-button>
|
|
10207
|
+
<co-transaction-line-delivery-date-button [transactionLine]="line" class="two-column"></co-transaction-line-delivery-date-button>
|
|
10208
|
+
</div>
|
|
10209
|
+
<div class="column2">
|
|
10210
|
+
<co-transaction-line-delivery-button [transactionLine]="line" [transactionInfo]="service.currentTransaction.transactionInfo"></co-transaction-line-delivery-button>
|
|
10211
|
+
<co-transaction-line-statusbar [transaction]="line" [transactionKind]="service.currentTransaction.transactionInfo.transactionKind"></co-transaction-line-statusbar>
|
|
10212
|
+
</div>
|
|
10213
|
+
<div class="column3">
|
|
10214
|
+
<co-transaction-line-supplier-button [transactionLine]="line" [transactionInfo]="service.currentTransaction.transactionInfo"></co-transaction-line-supplier-button>
|
|
10215
|
+
</div>
|
|
10243
10216
|
</div>
|
|
10244
10217
|
<div class="transaction-line-totals">
|
|
10245
10218
|
<co-transaction-line-price class="transaction-line-totals-price price"
|
|
@@ -15689,102 +15662,6 @@ TransactionLineLineDiscountModule.decorators = [
|
|
|
15689
15662
|
},] }
|
|
15690
15663
|
];
|
|
15691
15664
|
|
|
15692
|
-
class TransactionLinePriceComponent extends TransactionLineBaseComponent {
|
|
15693
|
-
constructor(_transactionService) {
|
|
15694
|
-
super();
|
|
15695
|
-
this._transactionService = _transactionService;
|
|
15696
|
-
this.showLabel = true;
|
|
15697
|
-
this.defaultEditMode = true;
|
|
15698
|
-
this._editMode = false;
|
|
15699
|
-
}
|
|
15700
|
-
set child(content) {
|
|
15701
|
-
if (content) {
|
|
15702
|
-
this.input = content;
|
|
15703
|
-
this.input.commit = (price) => this.commit(price);
|
|
15704
|
-
if (this._editMode) {
|
|
15705
|
-
this.input.requestFocus();
|
|
15706
|
-
}
|
|
15707
|
-
}
|
|
15708
|
-
}
|
|
15709
|
-
set editMode(value) {
|
|
15710
|
-
this._editMode = value;
|
|
15711
|
-
if (this._editMode && this.input) {
|
|
15712
|
-
this.input.doFocus();
|
|
15713
|
-
}
|
|
15714
|
-
}
|
|
15715
|
-
get editMode() {
|
|
15716
|
-
return this._editMode;
|
|
15717
|
-
}
|
|
15718
|
-
handleClick(event) {
|
|
15719
|
-
event.preventDefault();
|
|
15720
|
-
event.stopPropagation();
|
|
15721
|
-
if (!this.readonly) {
|
|
15722
|
-
this.editMode = true;
|
|
15723
|
-
}
|
|
15724
|
-
}
|
|
15725
|
-
commit(price) {
|
|
15726
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
15727
|
-
if (this.transactionLine.price !== price) {
|
|
15728
|
-
const oldPrice = this.transactionLine.price;
|
|
15729
|
-
const success = yield this._transactionService.updatePriceTransactionLine(this._transactionService.currentTransaction.transactionInfo.uuid, this.transactionLine.uuid, price);
|
|
15730
|
-
if (!success) {
|
|
15731
|
-
this.input.model = oldPrice;
|
|
15732
|
-
}
|
|
15733
|
-
return success;
|
|
15734
|
-
}
|
|
15735
|
-
return true;
|
|
15736
|
-
});
|
|
15737
|
-
}
|
|
15738
|
-
transactionLineSet() {
|
|
15739
|
-
this.readonly = this.readonly || !this.transactionLine.articleFreePrice;
|
|
15740
|
-
}
|
|
15741
|
-
}
|
|
15742
|
-
TransactionLinePriceComponent.decorators = [
|
|
15743
|
-
{ type: Component, args: [{
|
|
15744
|
-
selector: "co-transaction-line-price",
|
|
15745
|
-
template: `
|
|
15746
|
-
<span *ngIf="(!editMode || readonly) && !defaultEditMode" [textContent]="transactionLine.price | coCurrency"></span>
|
|
15747
|
-
<co-input-text #input *ngIf="editMode || defaultEditMode"
|
|
15748
|
-
[placeholder]="showLabel ? ('PRICE' | localize) : ''"
|
|
15749
|
-
[type]="'number'"
|
|
15750
|
-
[showSaveCancel]="!readonly"
|
|
15751
|
-
[readonly]="readonly"
|
|
15752
|
-
[model]="transactionLine.price"
|
|
15753
|
-
(blur)="editMode = false"
|
|
15754
|
-
></co-input-text>
|
|
15755
|
-
`,
|
|
15756
|
-
encapsulation: ViewEncapsulation.None
|
|
15757
|
-
},] }
|
|
15758
|
-
];
|
|
15759
|
-
TransactionLinePriceComponent.ctorParameters = () => [
|
|
15760
|
-
{ type: TransactionService }
|
|
15761
|
-
];
|
|
15762
|
-
TransactionLinePriceComponent.propDecorators = {
|
|
15763
|
-
child: [{ type: ViewChild, args: ['input', { read: InputTextComponent },] }],
|
|
15764
|
-
showLabel: [{ type: Input }],
|
|
15765
|
-
defaultEditMode: [{ type: Input }],
|
|
15766
|
-
editMode: [{ type: Input }],
|
|
15767
|
-
handleClick: [{ type: HostListener, args: ["click", ["$event"],] }]
|
|
15768
|
-
};
|
|
15769
|
-
|
|
15770
|
-
class TransactionLinePriceModule {
|
|
15771
|
-
}
|
|
15772
|
-
TransactionLinePriceModule.decorators = [
|
|
15773
|
-
{ type: NgModule, args: [{
|
|
15774
|
-
imports: [
|
|
15775
|
-
CommonModule,
|
|
15776
|
-
InputTextModule,
|
|
15777
|
-
PipeModule
|
|
15778
|
-
],
|
|
15779
|
-
declarations: [
|
|
15780
|
-
TransactionLinePriceComponent
|
|
15781
|
-
],
|
|
15782
|
-
exports: [
|
|
15783
|
-
TransactionLinePriceComponent
|
|
15784
|
-
]
|
|
15785
|
-
},] }
|
|
15786
|
-
];
|
|
15787
|
-
|
|
15788
15665
|
class TransactionFilterPopupBaseComponent extends TransactionLineBaseComponent {
|
|
15789
15666
|
constructor() {
|
|
15790
15667
|
super(...arguments);
|
|
@@ -16661,6 +16538,108 @@ TransactionLineSupplierModule.decorators = [
|
|
|
16661
16538
|
},] }
|
|
16662
16539
|
];
|
|
16663
16540
|
|
|
16541
|
+
class TransactionLinePriceComponent extends TransactionLineBaseComponent {
|
|
16542
|
+
constructor(_transactionService) {
|
|
16543
|
+
super();
|
|
16544
|
+
this._transactionService = _transactionService;
|
|
16545
|
+
this.showLabel = true;
|
|
16546
|
+
this.defaultEditMode = true;
|
|
16547
|
+
this.showClass = true;
|
|
16548
|
+
this._editMode = false;
|
|
16549
|
+
}
|
|
16550
|
+
set child(content) {
|
|
16551
|
+
if (content) {
|
|
16552
|
+
this.input = content;
|
|
16553
|
+
this.input.commit = (price) => this.commit(price);
|
|
16554
|
+
if (this._editMode) {
|
|
16555
|
+
this.input.requestFocus();
|
|
16556
|
+
this.input.input.select();
|
|
16557
|
+
}
|
|
16558
|
+
}
|
|
16559
|
+
}
|
|
16560
|
+
set editMode(value) {
|
|
16561
|
+
this._editMode = value;
|
|
16562
|
+
if (this._editMode && this.input) {
|
|
16563
|
+
this.input.doFocus();
|
|
16564
|
+
this.input.input.select();
|
|
16565
|
+
}
|
|
16566
|
+
}
|
|
16567
|
+
get editMode() {
|
|
16568
|
+
return this._editMode;
|
|
16569
|
+
}
|
|
16570
|
+
handleClick(event) {
|
|
16571
|
+
event.preventDefault();
|
|
16572
|
+
event.stopPropagation();
|
|
16573
|
+
if (!this.readonly) {
|
|
16574
|
+
this.editMode = true;
|
|
16575
|
+
}
|
|
16576
|
+
}
|
|
16577
|
+
commit(price) {
|
|
16578
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
16579
|
+
if (this.transactionLine.price !== price) {
|
|
16580
|
+
const oldPrice = this.transactionLine.price;
|
|
16581
|
+
const success = yield this._transactionService.updatePriceTransactionLine(this._transactionService.currentTransaction.transactionInfo.uuid, this.transactionLine.uuid, price);
|
|
16582
|
+
if (!success) {
|
|
16583
|
+
this.input.model = oldPrice;
|
|
16584
|
+
}
|
|
16585
|
+
return success;
|
|
16586
|
+
}
|
|
16587
|
+
return true;
|
|
16588
|
+
});
|
|
16589
|
+
}
|
|
16590
|
+
transactionLineSet() {
|
|
16591
|
+
this.readonly = this.readonly || !this.transactionLine.articleFreePrice;
|
|
16592
|
+
}
|
|
16593
|
+
}
|
|
16594
|
+
TransactionLinePriceComponent.decorators = [
|
|
16595
|
+
{ type: Component, args: [{
|
|
16596
|
+
selector: "co-transaction-line-price",
|
|
16597
|
+
template: `
|
|
16598
|
+
<span *ngIf="(!editMode || readonly) && !defaultEditMode" [textContent]="transactionLine.price | coCurrency"></span>
|
|
16599
|
+
<co-input-text #input *ngIf="editMode || defaultEditMode"
|
|
16600
|
+
[noStyle]="true"
|
|
16601
|
+
[hideArrowButtons]="true"
|
|
16602
|
+
[placeholder]="showLabel ? ('PRICE' | localize) : ''"
|
|
16603
|
+
[type]="'number'"
|
|
16604
|
+
[showSaveCancel]="!readonly"
|
|
16605
|
+
[readonly]="readonly"
|
|
16606
|
+
[model]="transactionLine.price"
|
|
16607
|
+
(blur)="editMode = false"
|
|
16608
|
+
></co-input-text>
|
|
16609
|
+
`,
|
|
16610
|
+
encapsulation: ViewEncapsulation.None
|
|
16611
|
+
},] }
|
|
16612
|
+
];
|
|
16613
|
+
TransactionLinePriceComponent.ctorParameters = () => [
|
|
16614
|
+
{ type: TransactionService }
|
|
16615
|
+
];
|
|
16616
|
+
TransactionLinePriceComponent.propDecorators = {
|
|
16617
|
+
child: [{ type: ViewChild, args: ['input', { read: InputTextComponent },] }],
|
|
16618
|
+
showLabel: [{ type: Input }],
|
|
16619
|
+
defaultEditMode: [{ type: Input }],
|
|
16620
|
+
editMode: [{ type: Input }],
|
|
16621
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-line-price",] }],
|
|
16622
|
+
handleClick: [{ type: HostListener, args: ["click", ["$event"],] }]
|
|
16623
|
+
};
|
|
16624
|
+
|
|
16625
|
+
class TransactionLinePriceModule {
|
|
16626
|
+
}
|
|
16627
|
+
TransactionLinePriceModule.decorators = [
|
|
16628
|
+
{ type: NgModule, args: [{
|
|
16629
|
+
imports: [
|
|
16630
|
+
CommonModule,
|
|
16631
|
+
InputTextModule,
|
|
16632
|
+
PipeModule
|
|
16633
|
+
],
|
|
16634
|
+
declarations: [
|
|
16635
|
+
TransactionLinePriceComponent
|
|
16636
|
+
],
|
|
16637
|
+
exports: [
|
|
16638
|
+
TransactionLinePriceComponent
|
|
16639
|
+
]
|
|
16640
|
+
},] }
|
|
16641
|
+
];
|
|
16642
|
+
|
|
16664
16643
|
class TransactionLineSidePanelDefaultModule {
|
|
16665
16644
|
}
|
|
16666
16645
|
TransactionLineSidePanelDefaultModule.decorators = [
|
|
@@ -16675,7 +16654,6 @@ TransactionLineSidePanelDefaultModule.decorators = [
|
|
|
16675
16654
|
InputComboBoxModule,
|
|
16676
16655
|
InputDatePickerModule,
|
|
16677
16656
|
InputNumberPickerModule,
|
|
16678
|
-
TransactionLinePriceModule,
|
|
16679
16657
|
TransactionLinePriceListModule,
|
|
16680
16658
|
TransactionLineVatModule,
|
|
16681
16659
|
TransactionLineQuantityModule,
|
|
@@ -16689,7 +16667,8 @@ TransactionLineSidePanelDefaultModule.decorators = [
|
|
|
16689
16667
|
TransactionLineQuantumDiscountModule,
|
|
16690
16668
|
TransactionLineSpecialDiscountModule,
|
|
16691
16669
|
TransactionLineSupplierModule,
|
|
16692
|
-
TransactionLineDescriptionModule
|
|
16670
|
+
TransactionLineDescriptionModule,
|
|
16671
|
+
TransactionLinePriceModule
|
|
16693
16672
|
],
|
|
16694
16673
|
declarations: [
|
|
16695
16674
|
TransactionLineSidePanelDefaultComponent
|
|
@@ -19611,7 +19590,7 @@ TransactionBaseLineComponent.decorators = [
|
|
|
19611
19590
|
template: `
|
|
19612
19591
|
<div class="transaction-base-line-wrapper" data-action="openSidePanel">
|
|
19613
19592
|
<ng-container *ngIf="line.isArticle">
|
|
19614
|
-
<div class="transaction-base-line-section">
|
|
19593
|
+
<div class="transaction-base-line-section line-start">
|
|
19615
19594
|
<co-input-checkbox *ngIf="checkbox" class="transaction-line-checkbox" [class.hidden]="hideCheckbox"
|
|
19616
19595
|
[model]="checkboxValue"
|
|
19617
19596
|
(modelChange)="checkboxValueChanged.emit($event)"
|
|
@@ -20207,14 +20186,15 @@ TransactionPurchaseLineModule.decorators = [
|
|
|
20207
20186
|
TransactionLineDeliveryButtonModule,
|
|
20208
20187
|
TransactionLineDeliveryDateButtonModule,
|
|
20209
20188
|
TransactionLineStatusbarModule,
|
|
20210
|
-
TransactionLinePriceModule,
|
|
20211
20189
|
PipeModule,
|
|
20212
20190
|
InputNumberPickerModule,
|
|
20213
20191
|
EditableLabelModule,
|
|
20214
20192
|
DialogTransactionLineDiscountModule,
|
|
20215
20193
|
TransactionLineAmountModule,
|
|
20216
20194
|
TransactionLineCommissionButtonModule,
|
|
20217
|
-
TransactionLineSupplierButtonModule
|
|
20195
|
+
TransactionLineSupplierButtonModule,
|
|
20196
|
+
TransactionLinePriceModule,
|
|
20197
|
+
TransactionLinePriceModule
|
|
20218
20198
|
],
|
|
20219
20199
|
declarations: [
|
|
20220
20200
|
TransactionPurchaseLineComponent
|
|
@@ -23075,5 +23055,5 @@ TransactionLineGridModule.decorators = [
|
|
|
23075
23055
|
* Generated bundle index. Do not edit.
|
|
23076
23056
|
*/
|
|
23077
23057
|
|
|
23078
|
-
export { CheckoutComponent, CheckoutModule, LoaderComponent, LoaderModule, SearchViewMode, SearchbarViewMode, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, TransactionComponent, TransactionConfirmationDetailsComponent, TransactionConfirmationDetailsModule, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionModule, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionSearchComponent, TransactionSearchModule, TransactionSearchService, TransactionService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTotalsComponent, TransactionTotalsModule, PendingReasonService as ɵa, DialogService as ɵb, ConfirmationDialogComponent as ɵba, DialogBaseComponent as ɵbb, IconCacheService as ɵbc, CharacteristicAnswerModule as ɵbd, CharacteristicAnswerComponent as ɵbe, WarehouseModule as ɵbf, WarehouseComponent as ɵbg, ImageDisplayComponent as ɵbh, IconComponent as ɵbi, CustomerGroupsComponent as ɵbj, StockStatusIndicatorComponent as ɵbk, LazyRenderMasterDirective as ɵbl, LazyRenderDirective as ɵbm, RelationAddressModule as ɵbn, RelationAddressComponent as ɵbo, RelationBaseComponent as ɵbp, RelationAddressSelectModule as ɵbq, RelationAddressTileModule as ɵbr, TileModule as ɵbs, TileComponent as ɵbt, RelationAddressTileComponent as ɵbu, RelationAddressSelectComponent as ɵbv, StepperModule as ɵbw, StepperComponent as ɵbx, StepperStepComponent as ɵby, TransactionLineModule as ɵbz, DynamicComponentService as ɵc, TransactionLineComponent as ɵca, TransactionMappingService as ɵcb, TransactionArticleTextModule as ɵcc, TransactionLineImageAndDescriptionModule as ɵcd, TransactionLineDescriptionModule as ɵce, TransactionLineDescriptionComponent as ɵcf, TransactionLineBaseComponent as ɵcg, TransactionLineImageAndDescriptionComponent as ɵch, TransactionImageService as ɵci, TransactionArticleTextComponent as ɵcj, TransactionReceiveGoodsService as ɵck, DialogTransactionHeaderDiscountModule as ɵcl, TransactionHeaderDiscountPercentageModule as ɵcm, TransactionHeaderDiscountPercentageComponent as ɵcn, TransactionHeaderBaseComponent as ɵco, TransactionHeaderFilterPopupBaseComponent as ɵcp, TransactionHeaderDiscountAmountModule as ɵcq, TransactionHeaderDiscountAmountComponent as ɵcr, TransactionHeaderDiscountTransactionTotalModule as ɵcs, TransactionHeaderDiscountTransactionTotalComponent as ɵct, DialogTransactionHeaderDiscountComponent as ɵcu, DialogTransactionHeaderBaseComponent as ɵcv, AvatarModule as ɵcw, AvatarComponent as ɵcx, SharedService as ɵcy, SharedConnectorService as ɵcz, OptionsService as ɵd, RelationService 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, DictionaryService 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, TransactionHeaderPreferredDeliveryDateModule as ɵeq, TransactionHeaderPreferredDeliveryDateComponent as ɵer, DialogTransactionHeaderDeliveryMethodModule as ɵes, DialogHeaderSearchModule as ɵet, DialogHeaderSearchComponent as ɵeu, DialogTransactionHeaderDeliveryMethodComponent as ɵev, TransactionHeaderPartialDeliveryModule as ɵew, TransactionHeaderPartialDeliveryComponent as ɵex, TransactionBaseComponent 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, TransactionHeaderPaymentModule as ɵfs, TransactionHeaderPaymentComponent as ɵft, TransactionLinesGridModule as ɵfu, TransactionBaseGridModule as ɵfv, TransactionLineSidePanelModule as ɵfw, TransactionLineSidePanelDefaultModule as ɵfx, TransactionLinePriceModule as ɵfy, TransactionLinePriceComponent as ɵfz, TransactionConnectorAdapterService as ɵg, TransactionLinePriceListModule as ɵga, TransactionLinePriceListComponent as ɵgb, TransactionFilterPopupBaseComponent as ɵgc, TransactionLineVatModule as ɵgd, TransactionLineVatComponent as ɵge, TransactionLineQuantityModule as ɵgf, TransactionLineQuantityComponent as ɵgg, TransactionLineLineDiscountModule as ɵgh, TransactionLineLineDiscountComponent as ɵgi, TransactionLineDeliveryMethodModule as ɵgj, TransactionLineDeliveryMethodComponent as ɵgk, TransactionLineDeliveryDateModule as ɵgl, TransactionLineDeliveryDateComponent as ɵgm, TransactionLineReferenceModule as ɵgn, TransactionLineReferenceComponent as ɵgo, TransactionLineCommissionCodeModule as ɵgp, TransactionLineCommissionCodeComponent as ɵgq, TransactionLineWarehouseModule as ɵgr, TransactionLineWarehouseComponent as ɵgs, TransactionLineDiscountAmountModule as ɵgt, TransactionLineDiscountAmountComponent as ɵgu, TransactionLineQuantumDiscountModule as ɵgv, TransactionLineQuantumDiscountComponent as ɵgw, TransactionLineSpecialDiscountModule as ɵgx, TransactionLineSpecialDiscountComponent as ɵgy, TransactionLineSupplierModule as ɵgz, SelectMultipleCacheService as ɵh, TransactionLineSupplierComponent as ɵha, TransactionLineSidePanelDefaultComponent as ɵhb, TransactionReceivingGoodsHistoryModule as ɵhc, TransactionHistoryGridModule as ɵhd, TransactionHistoryGridStatusModule as ɵhe, TransactionHistoryGridStatusComponent as ɵhf, TransactionHistoryGridComponent as ɵhg, TransactionReceivingGoodsHistoryComponent as ɵhh, TransactionReceivingGoodsDetailsModule as ɵhi, TransactionReceivingGoodsDetailsComponent as ɵhj, ArticleService as ɵhk, TransactionButtonBarModule as ɵhl, AnimatedCheckboxModule as ɵhm, AnimatedCheckboxComponent as ɵhn, TransactionButtonBarComponent as ɵho, TransactionButtonBarButtonComponent as ɵhp, TransactionButtonBarButtonBaseComponent as ɵhq, TransactionSalesPurchaseButtonBarButtonComponent as ɵhr, TransactionLineSidePanelPurchaseModule as ɵhs, DefaultOkCancelButtonsModule as ɵht, DefaultOkCancelButtonsComponent as ɵhu, TransactionLineSidePanelPurchaseComponent as ɵhv, TransactionLineSidePanelComponent as ɵhw, DynamicBaseComponent as ɵhx, TransactionLineActionButtonsModule as ɵhy, TransactionArticleTextOverviewModule as ɵhz, BusinessObjectCacheManagerService as ɵi, TransactionArticleTextOverviewComponent as ɵia, TransactionLineActionButtonsComponent as ɵib, TransactionBaseGridComponent as ɵic, TransactionGridBaseComponent as ɵid, DialogTransactionLineCommissionCodeModule as ɵie, DialogTransactionLineCommissionCodeComponent as ɵif, DialogTransactionLineBaseComponent as ɵig, DialogTransactionLineWarehouseModule as ɵih, DialogTransactionLineWarehouseComponent as ɵii, DialogTransactionLineWarehouseCcModule as ɵij, DialogTransactionLineWarehouseCcComponent as ɵik, DialogTransactionLineDeliveryMethodModule as ɵil, DialogTransactionLineDeliveryMethodComponent as ɵim, DialogTransactionLineVatModule as ɵin, DialogTransactionLineVatComponent as ɵio, DialogTransactionLineDiscountModule as ɵip, DialogTransactionLinePriceListModule as ɵiq, DialogTransactionLinePriceListComponent as ɵir, DialogTransactionLineDiscountComponent as ɵis, TransactionLinesGridComponent as ɵit, DiscountModule as ɵiu, DiscountComponent as ɵiv, TransactionQuickAccessOverviewModule as ɵiw, TransactionQuickAccessOverviewComponent as ɵix, TransactionQuickAccessOrderDeliveryModule as ɵiy, TransactionSendButtonDialogModule as ɵiz, CacheField as ɵj, TransactionSendButtonDialogComponent as ɵja, TransactionQuickAccessOrderDeliveryComponent as ɵjb, TransactionOrderDeliveryService as ɵjc, TransactionQuickAccessOrderPurchaseModule as ɵjd, TransactionQuickAccessOrderPurchaseComponent as ɵje, TransactionOrderConfirmationGridModule as ɵjf, TransactionOrderConfirmationGridComponent as ɵjg, TransactionReceivedGoodsGridModule as ɵjh, DialogTransactionLineWarehouseLocationModule as ɵji, TransactionLineWarehouseLocationModule as ɵjj, TransactionLineWarehouseLocationComponent as ɵjk, DialogTransactionLineWarehouseLocationComponent as ɵjl, TransactionLineWarehouseLocationButtonModule as ɵjm, TransactionLineWarehouseLocationButtonComponent as ɵjn, TransactionReceivedGoodsGridComponent as ɵjo, ViewModeButtonsModule as ɵjp, ViewModeButtonsComponent as ɵjq, TransactionGridModule as ɵjr, TransactionGridComponent as ɵjs, TransactionTileModule as ɵjt, TransactionTileComponent as ɵju, TransactionOverviewLineModule as ɵjv, EditableLabelModule as ɵjw, EditableLabelComponent as ɵjx, TransactionBaseLineModule as ɵjy, TransactionBaseLineComponent as ɵjz, SelectMultipleParameterizedCacheService as ɵk, TransactionLinesLineBaseComponent as ɵka, TransactionLineCommissionButtonModule as ɵkb, TransactionLineCommissionButtonComponent as ɵkc, TransactionLineWarehouseButtonModule as ɵkd, TransactionLineWarehouseButtonComponent as ɵke, TransactionLineDeliveryButtonModule as ɵkf, TransactionLineDeliveryButtonComponent as ɵkg, TransactionLineDeliveryDateButtonModule as ɵkh, TransactionLineDeliveryDateButtonComponent as ɵki, TransactionLineAmountModule as ɵkj, TransactionLineAmountComponent as ɵkk, TransactionOverviewLineComponent as ɵkl, TransactionOrderDeliveryLineModule as ɵkm, TransactionOrderDeliveryLineComponent as ɵkn, TransactionReceiveGoodsLineModule as ɵko, TransactionReceiveGoodsLineComponent as ɵkp, TransactionPurchaseLineModule as ɵkq, TransactionLineSupplierButtonModule as ɵkr, DialogTransactionLineSupplierModule as ɵks, DialogTransactionLineSupplierComponent as ɵkt, TransactionLineSupplierButtonComponent as ɵku, TransactionPurchaseLineComponent as ɵkv, QuickSendButtonModule as ɵkw, QuickSendButtonComponent as ɵkx, TransactionSearchResultModule as ɵky, TransactionSearchSalesOrderTileModule as ɵkz, ErrorService as ɵl, TransactionSearchSalesOrderTileComponent as ɵla, TransactionSearchTileBaseComponent as ɵlb, TransactionSearchPurchaseOrderTileModule as ɵlc, TransactionSearchPurchaseOrderTileComponent as ɵld, TransactionSearchSalesOrderGridModule as ɵle, TransactionSearchSalesOrderGridComponent as ɵlf, TransactionSearchGridBaseComponent as ɵlg, TransactionSearchPurchaseOrderGridModule as ɵlh, TransactionSearchPurchaseOrderGridComponent as ɵli, TransactionSearchHeaderModule as ɵlj, TransactionSearchHeaderComponent as ɵlk, TransactionSearchGridModule as ɵll, TransactionSearchGridComponent as ɵlm, TransactionSearchTileModule as ɵln, TransactionSearchTileComponent as ɵlo, TransactionSearchResultComponent as ɵlp, TransactionSalesOrderFilterModule as ɵlq, TransactionSalesOrderFilterContentOrderModule as ɵlr, TransactionFilterItemModule as ɵls, TransactionFilterItemComponent as ɵlt, TransactionSalesOrderFilterContentOrderComponent as ɵlu, TransactionFilterContentBaseComponent as ɵlv, FilterRequestService as ɵlw, TransactionSalesOrderFilterContentLogisticsModule as ɵlx, TransactionFilterHistoricStateModule as ɵly, TransactionFilterHistoricStateComponent as ɵlz, SelectSingleCacheService as ɵm, TransactionSalesOrderFilterContentLogisticsComponent as ɵma, TransactionSalesOrderFilterContentArticleModule as ɵmb, TransactionSalesOrderFilterContentArticleComponent as ɵmc, TransactionSalesOrderFilterComponent as ɵmd, TransactionFilterBaseComponent as ɵme, TransactionPurchaseOrderFilterModule as ɵmf, TransactionPurchaseOrderFilterContentOrderModule as ɵmg, TransactionPurchaseOrderFilterContentOrderComponent as ɵmh, TransactionPurchaseOrderFilterContentLogisticsModule as ɵmi, TransactionPurchaseOrderFilterContentLogisticsComponent as ɵmj, TransactionPurchaseOrderFilterContentArticleModule as ɵmk, TransactionPurchaseOrderFilterContentArticleComponent as ɵml, TransactionPurchaseOrderFilterComponent as ɵmm, TransactionFilterModule as ɵmn, TransactionFilterComponent as ɵmo, ArticleConnectorService as ɵn, 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 };
|
|
23058
|
+
export { CheckoutComponent, CheckoutModule, LoaderComponent, LoaderModule, RelationService, SearchViewMode, SearchbarViewMode, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, TransactionComponent, TransactionConfirmationDetailsComponent, TransactionConfirmationDetailsModule, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionModule, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionSearchComponent, TransactionSearchModule, TransactionSearchService, TransactionService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTotalsComponent, TransactionTotalsModule, PendingReasonService as ɵa, DialogService as ɵb, ConfirmationDialogComponent as ɵba, DialogBaseComponent as ɵbb, IconCacheService as ɵbc, CharacteristicAnswerModule as ɵbd, CharacteristicAnswerComponent as ɵbe, WarehouseModule as ɵbf, WarehouseComponent as ɵbg, ImageDisplayComponent as ɵbh, IconComponent as ɵbi, CustomerGroupsComponent as ɵbj, StockStatusIndicatorComponent as ɵbk, LazyRenderMasterDirective as ɵbl, LazyRenderDirective as ɵbm, RelationAddressModule as ɵbn, RelationAddressComponent as ɵbo, RelationBaseComponent as ɵbp, RelationAddressSelectModule as ɵbq, RelationAddressTileModule as ɵbr, TileModule as ɵbs, TileComponent as ɵbt, RelationAddressTileComponent as ɵbu, RelationAddressSelectComponent as ɵbv, StepperModule as ɵbw, StepperComponent as ɵbx, StepperStepComponent as ɵby, TransactionLineModule as ɵbz, DynamicComponentService as ɵc, TransactionLineComponent as ɵca, TransactionMappingService as ɵcb, TransactionArticleTextModule as ɵcc, TransactionLineImageAndDescriptionModule as ɵcd, TransactionLineDescriptionModule as ɵce, TransactionLineDescriptionComponent as ɵcf, TransactionLineBaseComponent as ɵcg, TransactionLineImageAndDescriptionComponent as ɵch, TransactionImageService as ɵci, TransactionArticleTextComponent as ɵcj, TransactionReceiveGoodsService as ɵck, DialogTransactionHeaderDiscountModule as ɵcl, TransactionHeaderDiscountPercentageModule as ɵcm, TransactionHeaderDiscountPercentageComponent as ɵcn, TransactionHeaderBaseComponent as ɵco, TransactionHeaderFilterPopupBaseComponent as ɵcp, TransactionHeaderDiscountAmountModule as ɵcq, TransactionHeaderDiscountAmountComponent as ɵcr, TransactionHeaderDiscountTransactionTotalModule as ɵcs, TransactionHeaderDiscountTransactionTotalComponent as ɵct, DialogTransactionHeaderDiscountComponent as ɵcu, DialogTransactionHeaderBaseComponent as ɵcv, AvatarModule as ɵcw, AvatarComponent as ɵcx, SharedService as ɵcy, SharedConnectorService as ɵcz, OptionsService as ɵd, DeliveryTypeTileModule as ɵda, DeliveryTypeTileComponent as ɵdb, PaymentModule as ɵdc, PaymentTileModule as ɵdd, PaymentTileComponent as ɵde, PaymentQrCodeModule as ɵdf, PaymentQrCodeComponent as ɵdg, DownPaymentModule as ɵdh, DownPaymentComponent as ɵdi, PaymentService as ɵdj, PaymentComponent as ɵdk, RelationTypeModule as ɵdl, RelationTypeComponent as ɵdm, RelationGeneralModule as ɵdn, RelationSuggestionsListModule as ɵdo, RelationSuggestionsListItemModule as ɵdp, RelationSuggestionsListItemComponent as ɵdq, RelationSuggestionsListComponent as ɵdr, RelationGeneralComponent as ɵds, RelationAddressesModule as ɵdt, RelationAddressesComponent as ɵdu, RelationContactDetailsModule as ɵdv, RelationContactDetailsComponent as ɵdw, RelationPreferencesModule as ɵdx, RelationPreferencesComponent as ɵdy, TransactionHeaderBlockModule as ɵdz, DictionaryService as ɵe, TransactionHeaderBlockComponent as ɵea, TransactionHeaderDeliveryDateModule as ɵeb, TransactionHeaderDeliveryDateComponent as ɵec, TransactionHeaderDeliveryOptionsModule as ɵed, TransactionHeaderDeliveryOptionsComponent as ɵee, TransactionHeaderRemarksModule as ɵef, TransactionHeaderRemarksComponent as ɵeg, TransactionHeaderReferenceModule as ɵeh, TransactionHeaderReferenceComponent as ɵei, TransactionHeaderRelationReferenceModule as ɵej, TransactionHeaderRelationReferenceComponent as ɵek, TransactionHeaderDeliveryMethodModule as ɵel, TransactionLineCheckboxModule as ɵem, TransactionLineCheckboxListComponent as ɵen, TransactionHeaderDeliveryMethodComponent as ɵeo, TransactionHeaderPreferredDeliveryDateModule as ɵep, TransactionHeaderPreferredDeliveryDateComponent as ɵeq, DialogTransactionHeaderDeliveryMethodModule as ɵer, DialogHeaderSearchModule as ɵes, DialogHeaderSearchComponent as ɵet, DialogTransactionHeaderDeliveryMethodComponent as ɵeu, TransactionHeaderPartialDeliveryModule as ɵev, TransactionHeaderPartialDeliveryComponent as ɵew, TransactionBaseComponent as ɵex, TransactionHeaderDownpaymentPercentageModule as ɵey, TransactionHeaderDownpaymentPercentageComponent as ɵez, TransactionConnectorService as ɵf, TransactionHeaderDownpaymentAmountModule as ɵfa, TransactionHeaderDownpaymentAmountComponent as ɵfb, TransactionHeaderDefinitiveModule as ɵfc, TransactionHeaderDefinitiveComponent as ɵfd, TransactionHeaderBranchModule as ɵfe, TransactionHeaderBranchComponent as ɵff, TransactionHeaderAdministrativeRelationModule as ɵfg, TransactionHeaderAdministrativeRelationComponent as ɵfh, TransactionHeaderMarketingModule as ɵfi, TransactionHeaderMarketingComponent as ɵfj, CheckoutOverviewRelationEditComponent as ɵfk, CheckoutOverviewDeliveryEditComponent as ɵfl, CheckoutOverviewDeliveryAddressComponent as ɵfm, CheckoutOverviewPaymentComponent as ɵfn, CheckoutLoginComponent as ɵfo, TransactionFilterCategoriesModule as ɵfp, TransactionFilterCategoriesComponent as ɵfq, TransactionHeaderPaymentModule as ɵfr, TransactionHeaderPaymentComponent as ɵfs, TransactionLinesGridModule as ɵft, TransactionBaseGridModule as ɵfu, TransactionLineSidePanelModule as ɵfv, TransactionLineSidePanelDefaultModule as ɵfw, TransactionLinePriceListModule as ɵfx, TransactionLinePriceListComponent as ɵfy, TransactionFilterPopupBaseComponent as ɵfz, TransactionConnectorAdapterService as ɵg, TransactionLineVatModule as ɵga, TransactionLineVatComponent as ɵgb, TransactionLineQuantityModule as ɵgc, TransactionLineQuantityComponent as ɵgd, TransactionLineLineDiscountModule as ɵge, TransactionLineLineDiscountComponent as ɵgf, TransactionLineDeliveryMethodModule as ɵgg, TransactionLineDeliveryMethodComponent as ɵgh, TransactionLineDeliveryDateModule as ɵgi, TransactionLineDeliveryDateComponent as ɵgj, TransactionLineReferenceModule as ɵgk, TransactionLineReferenceComponent as ɵgl, TransactionLineCommissionCodeModule as ɵgm, TransactionLineCommissionCodeComponent as ɵgn, TransactionLineWarehouseModule as ɵgo, TransactionLineWarehouseComponent as ɵgp, TransactionLineDiscountAmountModule as ɵgq, TransactionLineDiscountAmountComponent as ɵgr, TransactionLineQuantumDiscountModule as ɵgs, TransactionLineQuantumDiscountComponent as ɵgt, TransactionLineSpecialDiscountModule as ɵgu, TransactionLineSpecialDiscountComponent as ɵgv, TransactionLineSupplierModule as ɵgw, TransactionLineSupplierComponent as ɵgx, TransactionLinePriceModule as ɵgy, TransactionLinePriceComponent as ɵgz, SelectMultipleCacheService as ɵh, TransactionLineSidePanelDefaultComponent as ɵha, TransactionReceivingGoodsHistoryModule as ɵhb, TransactionHistoryGridModule as ɵhc, TransactionHistoryGridStatusModule as ɵhd, TransactionHistoryGridStatusComponent as ɵhe, TransactionHistoryGridComponent as ɵhf, TransactionReceivingGoodsHistoryComponent as ɵhg, TransactionReceivingGoodsDetailsModule as ɵhh, TransactionReceivingGoodsDetailsComponent as ɵhi, ArticleService as ɵhj, TransactionButtonBarModule as ɵhk, AnimatedCheckboxModule as ɵhl, AnimatedCheckboxComponent as ɵhm, TransactionButtonBarComponent as ɵhn, TransactionButtonBarButtonComponent as ɵho, TransactionButtonBarButtonBaseComponent as ɵhp, TransactionSalesPurchaseButtonBarButtonComponent as ɵhq, TransactionLineSidePanelPurchaseModule as ɵhr, DefaultOkCancelButtonsModule as ɵhs, DefaultOkCancelButtonsComponent as ɵht, TransactionLineSidePanelPurchaseComponent as ɵhu, TransactionLineSidePanelComponent as ɵhv, DynamicBaseComponent as ɵhw, TransactionLineActionButtonsModule as ɵhx, TransactionArticleTextOverviewModule as ɵhy, TransactionArticleTextOverviewComponent as ɵhz, BusinessObjectCacheManagerService as ɵi, TransactionLineActionButtonsComponent as ɵia, TransactionBaseGridComponent as ɵib, TransactionGridBaseComponent as ɵic, DialogTransactionLineCommissionCodeModule as ɵid, DialogTransactionLineCommissionCodeComponent as ɵie, DialogTransactionLineBaseComponent as ɵif, DialogTransactionLineWarehouseModule as ɵig, DialogTransactionLineWarehouseComponent as ɵih, DialogTransactionLineWarehouseCcModule as ɵii, DialogTransactionLineWarehouseCcComponent as ɵij, DialogTransactionLineDeliveryMethodModule as ɵik, DialogTransactionLineDeliveryMethodComponent as ɵil, DialogTransactionLineVatModule as ɵim, DialogTransactionLineVatComponent as ɵin, DialogTransactionLineDiscountModule as ɵio, DialogTransactionLinePriceListModule as ɵip, DialogTransactionLinePriceListComponent as ɵiq, DialogTransactionLineDiscountComponent as ɵir, TransactionLinesGridComponent as ɵis, DiscountModule as ɵit, DiscountComponent as ɵiu, TransactionQuickAccessOverviewModule as ɵiv, TransactionQuickAccessOverviewComponent as ɵiw, TransactionQuickAccessOrderDeliveryModule as ɵix, TransactionSendButtonDialogModule as ɵiy, TransactionSendButtonDialogComponent as ɵiz, CacheField as ɵj, TransactionQuickAccessOrderDeliveryComponent as ɵja, TransactionOrderDeliveryService as ɵjb, TransactionQuickAccessOrderPurchaseModule as ɵjc, TransactionQuickAccessOrderPurchaseComponent as ɵjd, TransactionOrderConfirmationGridModule as ɵje, TransactionOrderConfirmationGridComponent as ɵjf, TransactionReceivedGoodsGridModule as ɵjg, DialogTransactionLineWarehouseLocationModule as ɵjh, TransactionLineWarehouseLocationModule as ɵji, TransactionLineWarehouseLocationComponent as ɵjj, DialogTransactionLineWarehouseLocationComponent as ɵjk, TransactionLineWarehouseLocationButtonModule as ɵjl, TransactionLineWarehouseLocationButtonComponent as ɵjm, TransactionReceivedGoodsGridComponent as ɵjn, ViewModeButtonsModule as ɵjo, ViewModeButtonsComponent as ɵjp, TransactionGridModule as ɵjq, TransactionGridComponent as ɵjr, TransactionTileModule as ɵjs, TransactionTileComponent as ɵjt, TransactionOverviewLineModule as ɵju, EditableLabelModule as ɵjv, EditableLabelComponent as ɵjw, TransactionBaseLineModule as ɵjx, TransactionBaseLineComponent as ɵjy, TransactionLinesLineBaseComponent as ɵjz, SelectMultipleParameterizedCacheService as ɵk, TransactionLineCommissionButtonModule as ɵka, TransactionLineCommissionButtonComponent as ɵkb, TransactionLineWarehouseButtonModule as ɵkc, TransactionLineWarehouseButtonComponent as ɵkd, TransactionLineDeliveryButtonModule as ɵke, TransactionLineDeliveryButtonComponent as ɵkf, TransactionLineDeliveryDateButtonModule as ɵkg, TransactionLineDeliveryDateButtonComponent as ɵkh, TransactionLineAmountModule as ɵki, TransactionLineAmountComponent as ɵkj, TransactionOverviewLineComponent as ɵkk, TransactionOrderDeliveryLineModule as ɵkl, TransactionOrderDeliveryLineComponent as ɵkm, TransactionReceiveGoodsLineModule as ɵkn, TransactionReceiveGoodsLineComponent as ɵko, TransactionPurchaseLineModule as ɵkp, TransactionLineSupplierButtonModule as ɵkq, DialogTransactionLineSupplierModule as ɵkr, DialogTransactionLineSupplierComponent as ɵks, TransactionLineSupplierButtonComponent as ɵkt, TransactionPurchaseLineComponent as ɵku, QuickSendButtonModule as ɵkv, QuickSendButtonComponent as ɵkw, TransactionSearchResultModule as ɵkx, TransactionSearchSalesOrderTileModule as ɵky, TransactionSearchSalesOrderTileComponent as ɵkz, ErrorService as ɵl, TransactionSearchTileBaseComponent as ɵla, TransactionSearchPurchaseOrderTileModule as ɵlb, TransactionSearchPurchaseOrderTileComponent as ɵlc, TransactionSearchSalesOrderGridModule as ɵld, TransactionSearchSalesOrderGridComponent as ɵle, TransactionSearchGridBaseComponent as ɵlf, TransactionSearchPurchaseOrderGridModule as ɵlg, TransactionSearchPurchaseOrderGridComponent as ɵlh, TransactionSearchHeaderModule as ɵli, TransactionSearchHeaderComponent as ɵlj, TransactionSearchGridModule as ɵlk, TransactionSearchGridComponent as ɵll, TransactionSearchTileModule as ɵlm, TransactionSearchTileComponent as ɵln, TransactionSearchResultComponent as ɵlo, TransactionSalesOrderFilterModule as ɵlp, TransactionSalesOrderFilterContentOrderModule as ɵlq, TransactionFilterItemModule as ɵlr, TransactionFilterItemComponent as ɵls, TransactionSalesOrderFilterContentOrderComponent as ɵlt, TransactionFilterContentBaseComponent as ɵlu, FilterRequestService as ɵlv, TransactionSalesOrderFilterContentLogisticsModule as ɵlw, TransactionFilterHistoricStateModule as ɵlx, TransactionFilterHistoricStateComponent as ɵly, TransactionSalesOrderFilterContentLogisticsComponent as ɵlz, SelectSingleCacheService as ɵm, TransactionSalesOrderFilterContentArticleModule as ɵma, TransactionSalesOrderFilterContentArticleComponent as ɵmb, TransactionSalesOrderFilterComponent as ɵmc, TransactionFilterBaseComponent as ɵmd, TransactionPurchaseOrderFilterModule as ɵme, TransactionPurchaseOrderFilterContentOrderModule as ɵmf, TransactionPurchaseOrderFilterContentOrderComponent as ɵmg, TransactionPurchaseOrderFilterContentLogisticsModule as ɵmh, TransactionPurchaseOrderFilterContentLogisticsComponent as ɵmi, TransactionPurchaseOrderFilterContentArticleModule as ɵmj, TransactionPurchaseOrderFilterContentArticleComponent as ɵmk, TransactionPurchaseOrderFilterComponent as ɵml, TransactionFilterModule as ɵmm, TransactionFilterComponent as ɵmn, ArticleConnectorService as ɵn, 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 };
|
|
23079
23059
|
//# sourceMappingURL=colijnit-transaction.js.map
|