@colijnit/transaction 12.1.66 → 12.1.67
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 +178 -149
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +58 -58
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +59 -59
- package/esm2015/lib/component/transaction/transaction.component.js +1 -1
- package/esm2015/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.js +3 -3
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.js +5 -3
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.component.js +6 -3
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.component.js +24 -8
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.js +2 -2
- package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.js +1 -4
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.component.js +7 -3
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.component.js +6 -3
- package/esm2015/lib/component/transaction-search/transaction-search-header/transaction-search-header.module.js +1 -1
- package/esm2015/lib/component/transaction-search/transaction-search.component.js +1 -1
- package/esm2015/lib/component/transaction-side-panel-edit-request-details/components/receive-goods-request.component.js +36 -30
- package/esm2015/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.module.js +8 -3
- package/esm2015/lib/service/transaction.service.js +1 -1
- package/fesm2015/colijnit-transaction.js +126 -100
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.d.ts +0 -1
- package/lib/component/transaction-confirmation-history/style/_layout.scss +4 -0
- package/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header/transaction-header.component.d.ts +1 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.component.d.ts +6 -2
- package/lib/component/transaction-line-side-panel/style/_layout.scss +5 -0
- package/lib/component/transaction-line-side-panel/style/_material-definition.scss +1 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/_layout.scss +5 -8
- package/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.d.ts +2 -3
- package/lib/component/transaction-side-panel-edit-request-details/components/receive-goods-request.component.d.ts +9 -6
- package/lib/component/transaction-side-panel-edit-request-details/style/_layout.scss +55 -16
- package/lib/component/transaction-side-panel-edit-request-details/style/_material-definition.scss +0 -1
- package/package.json +1 -1
|
@@ -14933,7 +14933,7 @@ TransactionLineSidePanelComponent.decorators = [
|
|
|
14933
14933
|
<span class="side-panel-header-field" [textContent]="transactionLine.amount"></span>
|
|
14934
14934
|
</div>
|
|
14935
14935
|
<div class="side-panel-header-divider"></div>
|
|
14936
|
-
<div class="transaction-line-side-panel-header-item">
|
|
14936
|
+
<div class="transaction-line-side-panel-header-item hidden">
|
|
14937
14937
|
<span class="side-panel-header-label"
|
|
14938
14938
|
[textContent]="activeCategory === categories.PurchaseOrderReceivedGoods ? ('OPEN' | localize) : ('PRICE' | localize)"></span>
|
|
14939
14939
|
<span class="side-panel-header-field"
|
|
@@ -15166,11 +15166,13 @@ class TransactionHeaderComponent {
|
|
|
15166
15166
|
constructor() {
|
|
15167
15167
|
this.icons = Icon;
|
|
15168
15168
|
this.relation = new CustomerFullObject();
|
|
15169
|
+
this.isPurchaseOrder = false;
|
|
15169
15170
|
this._transaction = new TransactionInfoResponse();
|
|
15170
15171
|
}
|
|
15171
15172
|
set transaction(value) {
|
|
15172
15173
|
if (value) {
|
|
15173
15174
|
this._transaction = value;
|
|
15175
|
+
this.isPurchaseOrder = this._transaction.transactionInfo.transactionKind === TransactionKind.PurchaseOrder;
|
|
15174
15176
|
}
|
|
15175
15177
|
}
|
|
15176
15178
|
get transaction() {
|
|
@@ -15187,8 +15189,8 @@ TransactionHeaderComponent.decorators = [
|
|
|
15187
15189
|
<div class="transaction-header-wrapper">
|
|
15188
15190
|
<co-carousel>
|
|
15189
15191
|
<co-transaction-header-relation #carouselItem [relation]="relation"></co-transaction-header-relation>
|
|
15190
|
-
<div class="transaction-header-divider"> </div>
|
|
15191
|
-
<co-transaction-header-order #carouselItem [transaction]="transaction"></co-transaction-header-order>
|
|
15192
|
+
<div class="transaction-header-divider" *ngIf="!isPurchaseOrder"> </div>
|
|
15193
|
+
<co-transaction-header-order *ngIf="!isPurchaseOrder" #carouselItem [transaction]="transaction"></co-transaction-header-order>
|
|
15192
15194
|
<div class="transaction-header-divider"> </div>
|
|
15193
15195
|
<co-transaction-header-payment #carouselItem [transaction]="transaction"></co-transaction-header-payment>
|
|
15194
15196
|
<div class="transaction-header-divider"> </div>
|
|
@@ -17378,9 +17380,6 @@ class TransactionReceivingGoodsHistoryComponent {
|
|
|
17378
17380
|
showClass() {
|
|
17379
17381
|
return true;
|
|
17380
17382
|
}
|
|
17381
|
-
ngAfterViewInit() {
|
|
17382
|
-
this.reloadReceivingGoodsHistory.next();
|
|
17383
|
-
}
|
|
17384
17383
|
handleDeleteSelectedRow(row) {
|
|
17385
17384
|
if (row && row.type !== 'correction') {
|
|
17386
17385
|
const request = new ReceiveGoodsForPurchaseOrderCorrectionRequest();
|
|
@@ -17663,6 +17662,7 @@ class TransactionConfirmationHistoryComponent {
|
|
|
17663
17662
|
this.docBatchApplied = new EventEmitter();
|
|
17664
17663
|
this.getPurchasePortalLine = new GetPurchasePortalLine();
|
|
17665
17664
|
this.purchasePortalFilter = new PurchasePortalFilters();
|
|
17665
|
+
this.filteredDocBatchArray = [];
|
|
17666
17666
|
}
|
|
17667
17667
|
set isDocBatchSaved(data) {
|
|
17668
17668
|
if (data === true) {
|
|
@@ -17686,8 +17686,9 @@ class TransactionConfirmationHistoryComponent {
|
|
|
17686
17686
|
this.purchasePortalFilter.lineId = this.transactionLines.lineNr.toString();
|
|
17687
17687
|
this.getPurchasePortalLine.transIdPurchase = this.transactionId;
|
|
17688
17688
|
this.getPurchasePortalLine.filterObject = this.purchasePortalFilter;
|
|
17689
|
-
this.transactionService.getPurchasePortalLines(this.getPurchasePortalLine).then(result => {
|
|
17689
|
+
this.transactionService.getPurchasePortalLines(this.getPurchasePortalLine).then((result) => {
|
|
17690
17690
|
this.transactionService.purchasePortalLine = result;
|
|
17691
|
+
this.filteredDocBatchArray = this.transactionService.purchasePortalLine[0].docBatchArray.filter(value => value.historical === 'G');
|
|
17691
17692
|
});
|
|
17692
17693
|
});
|
|
17693
17694
|
}
|
|
@@ -17715,7 +17716,7 @@ TransactionConfirmationHistoryComponent.decorators = [
|
|
|
17715
17716
|
<div class="history-grid-wrapper">
|
|
17716
17717
|
<co-simple-grid (selectRow)="selectedLineDocBatchArray($event)"
|
|
17717
17718
|
*ngIf="transactionService.purchasePortalLine[0]"
|
|
17718
|
-
[data]="
|
|
17719
|
+
[data]="filteredDocBatchArray"
|
|
17719
17720
|
[showToolbar]="true"
|
|
17720
17721
|
[rowsPerPage]="20"
|
|
17721
17722
|
[showDelete]="true"
|
|
@@ -17800,7 +17801,6 @@ class TransactionConfirmationDetailsComponent {
|
|
|
17800
17801
|
handleOkClick() {
|
|
17801
17802
|
return __awaiter(this, void 0, void 0, function* () {
|
|
17802
17803
|
if (this.newDocBatchArray.docAmount && this.newDocBatchArray.confirmedPrice) {
|
|
17803
|
-
this.newDocBatchArray.docAmountOrg = 0;
|
|
17804
17804
|
this.newDocBatchArray.docDateOrg = new Date();
|
|
17805
17805
|
this.newDocBatchArray.deleteLine = "F";
|
|
17806
17806
|
this.newDocBatchArray.historical = "G";
|
|
@@ -17842,11 +17842,13 @@ TransactionConfirmationDetailsComponent.decorators = [
|
|
|
17842
17842
|
</co-input-text>
|
|
17843
17843
|
<co-input-date class="details-input"
|
|
17844
17844
|
[(model)]="newDocBatchArray.docDate"
|
|
17845
|
+
required
|
|
17845
17846
|
>
|
|
17846
17847
|
</co-input-date>
|
|
17847
17848
|
<co-input-text class="details-input"
|
|
17848
17849
|
[(model)]="newDocBatchArray.confirmedPrice"
|
|
17849
17850
|
[placeholder]="'CONFIRMED_PRICE' | localize"
|
|
17851
|
+
required
|
|
17850
17852
|
>
|
|
17851
17853
|
</co-input-text>
|
|
17852
17854
|
</div>
|
|
@@ -17887,7 +17889,6 @@ TransactionConfirmationDetailsComponent.ctorParameters = () => [
|
|
|
17887
17889
|
TransactionConfirmationDetailsComponent.propDecorators = {
|
|
17888
17890
|
transactionLines: [{ type: Input }],
|
|
17889
17891
|
transactionInfoNr: [{ type: Input }],
|
|
17890
|
-
testLines: [{ type: Input }],
|
|
17891
17892
|
showClass: [{ type: HostBinding, args: ["class.co-transaction-confirmation-details",] }],
|
|
17892
17893
|
newDocBatchArray: [{ type: Input }],
|
|
17893
17894
|
docBatchSaved: [{ type: Output }]
|
|
@@ -18409,20 +18410,14 @@ class ReceiveGoodsRequestComponent {
|
|
|
18409
18410
|
this._dialogService = _dialogService;
|
|
18410
18411
|
this._receiveGoodsService = _receiveGoodsService;
|
|
18411
18412
|
this.icons = Icon;
|
|
18413
|
+
this.transactionKind = TransactionKind;
|
|
18414
|
+
this.transactionTypeCategory = TransactionTypeCategory;
|
|
18412
18415
|
this.reloadReceivingGoodsHistory = new EventEmitter();
|
|
18413
18416
|
this.receiptDetails = new PurchaseOrderLineReceiptDetails();
|
|
18414
18417
|
this.request = new ReceiveGoodsForPurchaseOrderRequest();
|
|
18415
18418
|
this.saveButtonDisabled = false;
|
|
18416
|
-
this.locationDropdownFields = { text: "locationNo", value: "locationNo" };
|
|
18417
18419
|
this.readonly = false;
|
|
18418
18420
|
this._subscriptions = [];
|
|
18419
|
-
this.request.purchaseOrderLineReceiptDetailsDTOS = [this.receiptDetails];
|
|
18420
|
-
const timeElapsed = Date.now();
|
|
18421
|
-
this.request.receivedDate = new Date(timeElapsed);
|
|
18422
|
-
}
|
|
18423
|
-
set amountLeftToReceive(value) {
|
|
18424
|
-
this._amountLeftToReceive = value;
|
|
18425
|
-
this.receiptDetails.quantityToReceive = value;
|
|
18426
18421
|
}
|
|
18427
18422
|
set transactionLine(value) {
|
|
18428
18423
|
this._transactionLine = value;
|
|
@@ -18430,6 +18425,12 @@ class ReceiveGoodsRequestComponent {
|
|
|
18430
18425
|
this.receiptDetails.warehouseNr = value.warehouseNumber;
|
|
18431
18426
|
this.receiptDetails.lineNr = value.lineNr;
|
|
18432
18427
|
}
|
|
18428
|
+
set amountLeftToReceive(value) {
|
|
18429
|
+
this._amountLeftToReceive = value;
|
|
18430
|
+
if (!this.returnStockMode()) {
|
|
18431
|
+
this.receiptDetails.quantityToReceive = value;
|
|
18432
|
+
}
|
|
18433
|
+
}
|
|
18433
18434
|
showClass() {
|
|
18434
18435
|
return true;
|
|
18435
18436
|
}
|
|
@@ -18443,10 +18444,16 @@ class ReceiveGoodsRequestComponent {
|
|
|
18443
18444
|
this._subscriptions.push(this._receiveGoodsService.returnArticleSelected.subscribe((availableStock) => {
|
|
18444
18445
|
this._handleReturnStock(availableStock);
|
|
18445
18446
|
}));
|
|
18447
|
+
this.request.purchaseOrderLineReceiptDetailsDTOS = [this.receiptDetails];
|
|
18448
|
+
const timeElapsed = Date.now();
|
|
18449
|
+
this.request.receivedDate = new Date(timeElapsed);
|
|
18446
18450
|
}
|
|
18447
18451
|
ngOnDestroy() {
|
|
18448
18452
|
this._subscriptions.forEach((subscription) => subscription.unsubscribe());
|
|
18449
18453
|
}
|
|
18454
|
+
ngAfterViewInit() {
|
|
18455
|
+
this.reloadReceivingGoodsHistory.next();
|
|
18456
|
+
}
|
|
18450
18457
|
submit() {
|
|
18451
18458
|
return this._formMaster.submitSlaves();
|
|
18452
18459
|
}
|
|
@@ -18475,12 +18482,6 @@ class ReceiveGoodsRequestComponent {
|
|
|
18475
18482
|
this.saveButtonDisabled = false;
|
|
18476
18483
|
}
|
|
18477
18484
|
}
|
|
18478
|
-
openWarehouseLocationDialog() {
|
|
18479
|
-
if (!this.returnStockMode()) {
|
|
18480
|
-
this._dialogService.showWarehouseLocation(this.receiptDetails.warehouseNr, true, true, true, this.transactionLine)
|
|
18481
|
-
.then(() => this.receiptDetails.locationNr = this.transactionLine.locationNr);
|
|
18482
|
-
}
|
|
18483
|
-
}
|
|
18484
18485
|
returnStockMode() {
|
|
18485
18486
|
return this.transactionLine.amount < 0;
|
|
18486
18487
|
}
|
|
@@ -18490,6 +18491,7 @@ class ReceiveGoodsRequestComponent {
|
|
|
18490
18491
|
this.receiptDetails.quantityToReceive = this.returnMaxToReceive;
|
|
18491
18492
|
this.receiptDetails.warehouseNr = availableStock.warehouseNumber;
|
|
18492
18493
|
this.receiptDetails.locationNr = availableStock.locationNumber;
|
|
18494
|
+
this.selectedLocation = this.receiptDetails.locationNr;
|
|
18493
18495
|
this.receiptDetails.serialNr = availableStock.serialNumber;
|
|
18494
18496
|
this.receiptDetails.batchNr = availableStock.batchNumber;
|
|
18495
18497
|
this.receiptDetails.lineNr = this.transactionLine.lineNr;
|
|
@@ -18500,18 +18502,22 @@ ReceiveGoodsRequestComponent.decorators = [
|
|
|
18500
18502
|
selector: "co-receive-goods-request",
|
|
18501
18503
|
template: `
|
|
18502
18504
|
<co-form>
|
|
18503
|
-
<div class="
|
|
18505
|
+
<div class="header-wrapper">
|
|
18506
|
+
<div class="details-header" [textContent]="returnStockMode() ? ('RETURN_DETAILS' | localize | uppercase) : ('RECEIPT_DETAILS' | localize | uppercase)"></div>
|
|
18507
|
+
<co-transaction-line-statusbar class="status-bar-wrapper" [transaction]="transactionLine" [transactionKind]="transactionKind.SalesOrder" [transactionTypeCategory]="transactionTypeCategory.PurchaseOrderReceivedGoods"></co-transaction-line-statusbar>
|
|
18508
|
+
</div>
|
|
18504
18509
|
<div class="columns-wrapper">
|
|
18505
18510
|
<div class="details-column">
|
|
18506
|
-
<
|
|
18507
|
-
|
|
18508
|
-
|
|
18509
|
-
|
|
18510
|
-
|
|
18511
|
-
|
|
18512
|
-
|
|
18513
|
-
|
|
18514
|
-
|
|
18511
|
+
<div class="transaction-line-totals-amount">
|
|
18512
|
+
<co-input-number-picker class="amount-number-picker"
|
|
18513
|
+
[max]="returnStockMode() ? returnMaxToReceive : amountLeftToReceive"
|
|
18514
|
+
[(model)]="receiptDetails.serialNr ? 1 : receiptDetails.quantityToReceive"
|
|
18515
|
+
[min]="1"
|
|
18516
|
+
[readonly]="!!receiptDetails.serialNr || receiptDetails.quantityToReceive === 0 || !receiptDetails.quantityToReceive || readonly"
|
|
18517
|
+
[disabled]="!!receiptDetails.serialNr || receiptDetails.quantityToReceive === 0 || !receiptDetails.quantityToReceive"
|
|
18518
|
+
[required]="true"
|
|
18519
|
+
></co-input-number-picker>
|
|
18520
|
+
</div>
|
|
18515
18521
|
<co-input-text class="details-input" [(model)]="receiptDetails.warehouseNr"
|
|
18516
18522
|
[type]="'number'"
|
|
18517
18523
|
[hideArrowButtons]="true"
|
|
@@ -18519,10 +18525,9 @@ ReceiveGoodsRequestComponent.decorators = [
|
|
|
18519
18525
|
[disabled]="transactionLine.warehouseNumber !== undefined || returnStockMode()"
|
|
18520
18526
|
[required]="transactionLine.isWarehouseRequired"
|
|
18521
18527
|
[placeholder]="'WAREHOUSE' | localize"></co-input-text>
|
|
18522
|
-
<div class="location-wrapper"
|
|
18523
|
-
<span *ngIf="!receiptDetails.locationNr && transactionLine.isLocationRequired" class="required" [textContent]="'*'"></span
|
|
18524
|
-
<co-
|
|
18525
|
-
<div [textContent]="receiptDetails.locationNr ? receiptDetails.locationNr : ('LOCATION' | localize)"></div>
|
|
18528
|
+
<div class="location-wrapper">
|
|
18529
|
+
<!-- <span *ngIf="!receiptDetails.locationNr && transactionLine.isLocationRequired" class="required" [textContent]="'*'"></span>-->
|
|
18530
|
+
<co-transaction-line-warehouse-location-button [locationNr]="selectedLocation" [readonly]="returnStockMode() || receiptDetails.quantityToReceive === 0" [line]="transactionLine" (locationSelected)="receiptDetails.locationNr = $event"></co-transaction-line-warehouse-location-button>
|
|
18526
18531
|
</div>
|
|
18527
18532
|
<co-input-text class="details-input"
|
|
18528
18533
|
*ngIf="!returnStockMode()"
|
|
@@ -18579,12 +18584,81 @@ ReceiveGoodsRequestComponent.ctorParameters = () => [
|
|
|
18579
18584
|
{ type: TransactionReceiveGoodsService }
|
|
18580
18585
|
];
|
|
18581
18586
|
ReceiveGoodsRequestComponent.propDecorators = {
|
|
18582
|
-
amountLeftToReceive: [{ type: Input }],
|
|
18583
18587
|
transactionLine: [{ type: Input }],
|
|
18588
|
+
amountLeftToReceive: [{ type: Input }],
|
|
18584
18589
|
reloadReceivingGoodsHistory: [{ type: Output }],
|
|
18585
18590
|
showClass: [{ type: HostBinding, args: ["class.co-transaction-receiving-goods-details",] }]
|
|
18586
18591
|
};
|
|
18587
18592
|
|
|
18593
|
+
class TransactionLineWarehouseLocationButtonComponent {
|
|
18594
|
+
constructor(iconCacheService, _dialogService) {
|
|
18595
|
+
this.iconCacheService = iconCacheService;
|
|
18596
|
+
this._dialogService = _dialogService;
|
|
18597
|
+
this.icons = Icon;
|
|
18598
|
+
this.readonly = false;
|
|
18599
|
+
this.locationSelected = new EventEmitter();
|
|
18600
|
+
}
|
|
18601
|
+
showClass() {
|
|
18602
|
+
return true;
|
|
18603
|
+
}
|
|
18604
|
+
openWarehouseLocationDialog() {
|
|
18605
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
18606
|
+
if (!this.readonly) {
|
|
18607
|
+
const response = yield this._dialogService.showWarehouseLocation(this.line.warehouseNumber, false, true, true, this.line);
|
|
18608
|
+
if (response && response.output) {
|
|
18609
|
+
this.locationNr = response.output;
|
|
18610
|
+
if (this.line instanceof TransactionLineInfo) {
|
|
18611
|
+
this.locationSelected.next(response.output);
|
|
18612
|
+
}
|
|
18613
|
+
else {
|
|
18614
|
+
this.line.locationNr = response.output;
|
|
18615
|
+
}
|
|
18616
|
+
}
|
|
18617
|
+
}
|
|
18618
|
+
});
|
|
18619
|
+
}
|
|
18620
|
+
}
|
|
18621
|
+
TransactionLineWarehouseLocationButtonComponent.decorators = [
|
|
18622
|
+
{ type: Component, args: [{
|
|
18623
|
+
selector: "co-transaction-line-warehouse-location-button",
|
|
18624
|
+
template: `
|
|
18625
|
+
<div class="transaction-line-button" [class.no-pointer]="readonly" (click)="openWarehouseLocationDialog()">
|
|
18626
|
+
<co-icon [iconData]="iconCacheService.getIcon(icons.ShelvesLight)"></co-icon>
|
|
18627
|
+
<span class="co-transaction-overflow-ellipsis" [textContent]="locationNr ? locationNr : '-'"></span>
|
|
18628
|
+
</div>
|
|
18629
|
+
`,
|
|
18630
|
+
encapsulation: ViewEncapsulation.None
|
|
18631
|
+
},] }
|
|
18632
|
+
];
|
|
18633
|
+
TransactionLineWarehouseLocationButtonComponent.ctorParameters = () => [
|
|
18634
|
+
{ type: IconCacheService },
|
|
18635
|
+
{ type: DialogService }
|
|
18636
|
+
];
|
|
18637
|
+
TransactionLineWarehouseLocationButtonComponent.propDecorators = {
|
|
18638
|
+
line: [{ type: Input }],
|
|
18639
|
+
locationNr: [{ type: Input }],
|
|
18640
|
+
readonly: [{ type: Input }],
|
|
18641
|
+
locationSelected: [{ type: Output }],
|
|
18642
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-line-warehouse-location-button",] }]
|
|
18643
|
+
};
|
|
18644
|
+
|
|
18645
|
+
class TransactionLineWarehouseLocationButtonModule {
|
|
18646
|
+
}
|
|
18647
|
+
TransactionLineWarehouseLocationButtonModule.decorators = [
|
|
18648
|
+
{ type: NgModule, args: [{
|
|
18649
|
+
imports: [
|
|
18650
|
+
CommonModule,
|
|
18651
|
+
IconModule
|
|
18652
|
+
],
|
|
18653
|
+
declarations: [
|
|
18654
|
+
TransactionLineWarehouseLocationButtonComponent
|
|
18655
|
+
],
|
|
18656
|
+
exports: [
|
|
18657
|
+
TransactionLineWarehouseLocationButtonComponent
|
|
18658
|
+
]
|
|
18659
|
+
},] }
|
|
18660
|
+
];
|
|
18661
|
+
|
|
18588
18662
|
class TransactionSidePanelEditRequestDetailsModule {
|
|
18589
18663
|
}
|
|
18590
18664
|
TransactionSidePanelEditRequestDetailsModule.decorators = [
|
|
@@ -18595,7 +18669,10 @@ TransactionSidePanelEditRequestDetailsModule.decorators = [
|
|
|
18595
18669
|
InputTextModule,
|
|
18596
18670
|
PipeModule,
|
|
18597
18671
|
IconModule,
|
|
18598
|
-
InputDatePickerModule
|
|
18672
|
+
InputDatePickerModule,
|
|
18673
|
+
TransactionLineWarehouseLocationButtonModule,
|
|
18674
|
+
InputNumberPickerModule,
|
|
18675
|
+
TransactionLineStatusbarModule
|
|
18599
18676
|
],
|
|
18600
18677
|
declarations: [
|
|
18601
18678
|
TransactionSidePanelEditRequestDetailsComponent,
|
|
@@ -20355,61 +20432,6 @@ DialogTransactionLineWarehouseLocationModule.decorators = [
|
|
|
20355
20432
|
},] }
|
|
20356
20433
|
];
|
|
20357
20434
|
|
|
20358
|
-
class TransactionLineWarehouseLocationButtonComponent {
|
|
20359
|
-
constructor(iconCacheService, _dialogService) {
|
|
20360
|
-
this.iconCacheService = iconCacheService;
|
|
20361
|
-
this._dialogService = _dialogService;
|
|
20362
|
-
this.icons = Icon;
|
|
20363
|
-
this.readonly = false;
|
|
20364
|
-
}
|
|
20365
|
-
showClass() {
|
|
20366
|
-
return true;
|
|
20367
|
-
}
|
|
20368
|
-
openWarehouseLocationDialog(line) {
|
|
20369
|
-
if (!this.readonly) {
|
|
20370
|
-
this._dialogService.showWarehouseLocation(line.warehouseNumber, true, true, true, line);
|
|
20371
|
-
}
|
|
20372
|
-
}
|
|
20373
|
-
}
|
|
20374
|
-
TransactionLineWarehouseLocationButtonComponent.decorators = [
|
|
20375
|
-
{ type: Component, args: [{
|
|
20376
|
-
selector: "co-transaction-line-warehouse-location-button",
|
|
20377
|
-
template: `
|
|
20378
|
-
<div class="transaction-line-button" [class.no-pointer]="readonly" (click)="openWarehouseLocationDialog(line)">
|
|
20379
|
-
<co-icon [iconData]="iconCacheService.getIcon(icons.ShelvesLight)"></co-icon>
|
|
20380
|
-
<span class="co-transaction-overflow-ellipsis" [textContent]="line.locationNr ? line.locationNr : '-'"></span>
|
|
20381
|
-
</div>
|
|
20382
|
-
`,
|
|
20383
|
-
encapsulation: ViewEncapsulation.None
|
|
20384
|
-
},] }
|
|
20385
|
-
];
|
|
20386
|
-
TransactionLineWarehouseLocationButtonComponent.ctorParameters = () => [
|
|
20387
|
-
{ type: IconCacheService },
|
|
20388
|
-
{ type: DialogService }
|
|
20389
|
-
];
|
|
20390
|
-
TransactionLineWarehouseLocationButtonComponent.propDecorators = {
|
|
20391
|
-
line: [{ type: Input }],
|
|
20392
|
-
readonly: [{ type: Input }],
|
|
20393
|
-
showClass: [{ type: HostBinding, args: ["class.co-transaction-line-warehouse-location-button",] }]
|
|
20394
|
-
};
|
|
20395
|
-
|
|
20396
|
-
class TransactionLineWarehouseLocationButtonModule {
|
|
20397
|
-
}
|
|
20398
|
-
TransactionLineWarehouseLocationButtonModule.decorators = [
|
|
20399
|
-
{ type: NgModule, args: [{
|
|
20400
|
-
imports: [
|
|
20401
|
-
CommonModule,
|
|
20402
|
-
IconModule
|
|
20403
|
-
],
|
|
20404
|
-
declarations: [
|
|
20405
|
-
TransactionLineWarehouseLocationButtonComponent
|
|
20406
|
-
],
|
|
20407
|
-
exports: [
|
|
20408
|
-
TransactionLineWarehouseLocationButtonComponent
|
|
20409
|
-
]
|
|
20410
|
-
},] }
|
|
20411
|
-
];
|
|
20412
|
-
|
|
20413
20435
|
class TransactionReceivedGoodsGridModule {
|
|
20414
20436
|
}
|
|
20415
20437
|
TransactionReceivedGoodsGridModule.decorators = [
|
|
@@ -22554,7 +22576,7 @@ class TransactionPurchaseOrderFilterContentOrderComponent extends TransactionFil
|
|
|
22554
22576
|
this.relationService = relationService;
|
|
22555
22577
|
this.purchasePersonsFields = { text: "name", value: "relationId" };
|
|
22556
22578
|
this.tagsFields = { text: "description", value: "tagValueId" };
|
|
22557
|
-
this.branchFields = { text: "
|
|
22579
|
+
this.branchFields = { text: "familyName", value: "relationId" };
|
|
22558
22580
|
this.onHoldCodeFields = { text: "description", value: "onHoldCode" };
|
|
22559
22581
|
this.commissionCodeFields = { text: "description", value: "code" };
|
|
22560
22582
|
}
|
|
@@ -22589,7 +22611,9 @@ class TransactionPurchaseOrderFilterContentOrderComponent extends TransactionFil
|
|
|
22589
22611
|
}
|
|
22590
22612
|
//Branches
|
|
22591
22613
|
_setBranches() {
|
|
22592
|
-
|
|
22614
|
+
const request = new RelationRequest();
|
|
22615
|
+
request.relationType = RelationKind$1.Branch;
|
|
22616
|
+
this.relationService.getRelationListObjects(request).then((branches) => {
|
|
22593
22617
|
this.branches = new FilterViewmodel(branches, this.branchFields).filterItems;
|
|
22594
22618
|
});
|
|
22595
22619
|
}
|
|
@@ -23863,7 +23887,7 @@ class TransactionSalesOrderFilterContentOrderComponent extends TransactionFilter
|
|
|
23863
23887
|
this.relationService = relationService;
|
|
23864
23888
|
this.salesPersonsFields = { text: "name", value: "relationId" };
|
|
23865
23889
|
this.tagsFields = { text: "description", value: "tagValueId" };
|
|
23866
|
-
this.branchFields = { text: "
|
|
23890
|
+
this.branchFields = { text: "familyName", value: "relationId" };
|
|
23867
23891
|
this.onHoldCodeFields = { text: "description", value: "onHoldCode" };
|
|
23868
23892
|
this.commissionCodeFields = { text: "description", value: "code" };
|
|
23869
23893
|
this.customerGroupFields = { text: "naam", value: "groepsnummer" };
|
|
@@ -23907,7 +23931,9 @@ class TransactionSalesOrderFilterContentOrderComponent extends TransactionFilter
|
|
|
23907
23931
|
}
|
|
23908
23932
|
//Branches
|
|
23909
23933
|
_setBranches() {
|
|
23910
|
-
|
|
23934
|
+
const request = new RelationRequest();
|
|
23935
|
+
request.relationType = RelationKind$1.Branch;
|
|
23936
|
+
this.relationService.getRelationListObjects(request).then((branches) => {
|
|
23911
23937
|
this.branches = new FilterViewmodel(branches, this.branchFields).filterItems;
|
|
23912
23938
|
});
|
|
23913
23939
|
}
|
|
@@ -24202,5 +24228,5 @@ TransactionLineGridModule.decorators = [
|
|
|
24202
24228
|
* Generated bundle index. Do not edit.
|
|
24203
24229
|
*/
|
|
24204
24230
|
|
|
24205
|
-
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, TransactionButtonBarModule as ɵhh, AnimatedCheckboxModule as ɵhi, AnimatedCheckboxComponent as ɵhj, TransactionButtonBarComponent as ɵhk, TransactionButtonBarButtonComponent as ɵhl, TransactionButtonBarButtonBaseComponent as ɵhm, TransactionSalesPurchaseButtonBarButtonComponent as ɵhn, TransactionLineSidePanelPurchaseModule as ɵho, DefaultOkCancelButtonsModule as ɵhp, DefaultOkCancelButtonsComponent as ɵhq, TransactionAvailableStockGridModule as ɵhr, TransactionAvailableStockGridComponent as ɵhs, TransactionSidePanelEditRequestDetailsModule as ɵht, TransactionSidePanelEditRequestDetailsComponent as ɵhu, AllocationRequestComponent as ɵhv, ReceiveGoodsRequestComponent as ɵhw, ArticleService as ɵhx, TransactionLineSidePanelPurchaseComponent as ɵhy, TransactionLineSidePanelSalesModule as ɵhz, BusinessObjectCacheManagerService as ɵi, TransactionAllocateGoodsHistoryModule as ɵia, TransactionAllocateGoodsHistoryComponent as ɵib, TransactionLineSidePanelSalesComponent as ɵic, TransactionLineSidePanelComponent as ɵid, DynamicBaseComponent as ɵie, TransactionLineActionButtonsModule as ɵif, TransactionArticleTextOverviewModule as ɵig, TransactionArticleTextOverviewComponent as ɵih, TransactionLineActionButtonsComponent as ɵii, TransactionBaseGridComponent as ɵij, TransactionGridBaseComponent as ɵik, DialogTransactionLineCommissionCodeModule as ɵil, DialogTransactionLineCommissionCodeComponent as ɵim, DialogTransactionLineBaseComponent as ɵin, DialogTransactionLineWarehouseModule as ɵio, DialogTransactionLineWarehouseComponent as ɵip, DialogTransactionLineWarehouseCcModule as ɵiq, DialogTransactionLineWarehouseCcComponent as ɵir, DialogTransactionLineDeliveryMethodModule as ɵis, DialogTransactionLineDeliveryMethodComponent as ɵit, DialogTransactionLineVatModule as ɵiu, DialogTransactionLineVatComponent as ɵiv, DialogTransactionLineDiscountModule as ɵiw, DialogTransactionLinePriceListModule as ɵix, DialogTransactionLinePriceListComponent as ɵiy, DialogTransactionLineDiscountComponent as ɵiz, CacheField as ɵj, TransactionLinesGridComponent as ɵja, DiscountModule as ɵjb, DiscountComponent as ɵjc, TransactionQuickAccessOverviewModule as ɵjd, DialogCatalogModule as ɵje, DialogCatalogComponent as ɵjf, TransactionQuickAccessOverviewComponent as ɵjg, TransactionQuickAccessOrderDeliveryModule as ɵjh, TransactionSendButtonDialogModule as ɵji, TransactionSendButtonDialogComponent as ɵjj, TransactionQuickAccessOrderDeliveryComponent as ɵjk, TransactionOrderDeliveryService as ɵjl, TransactionQuickAccessOrderPurchaseModule as ɵjm, TransactionQuickAccessOrderPurchaseComponent as ɵjn, TransactionQuickAccessGoodsAllocationModule as ɵjo, TransactionQuickAccessGoodsAllocationComponent as ɵjp, TransactionAllocateGoodsService as ɵjq, TransactionOrderConfirmationGridModule as ɵjr, TransactionOrderConfirmationGridComponent as ɵjs, TransactionReceivedGoodsGridModule as ɵjt, DialogTransactionLineWarehouseLocationModule as ɵju, TransactionLineWarehouseLocationModule as ɵjv, TransactionLineWarehouseLocationComponent as ɵjw, DialogTransactionLineWarehouseLocationComponent as ɵjx, TransactionLineWarehouseLocationButtonModule as ɵjy, TransactionLineWarehouseLocationButtonComponent as ɵjz, SelectMultipleParameterizedCacheService as ɵk, TransactionReceivedGoodsGridComponent as ɵka, ViewModeButtonsModule as ɵkb, ViewModeButtonsComponent as ɵkc, TransactionGridModule as ɵkd, TransactionGridComponent as ɵke, TransactionTileModule as ɵkf, TransactionTileComponent as ɵkg, TransactionOverviewLineModule as ɵkh, EditableLabelModule as ɵki, EditableLabelComponent as ɵkj, TransactionBaseLineModule as ɵkk, TransactionBaseLineComponent as ɵkl, TransactionLinesLineBaseComponent as ɵkm, TransactionLineCommissionButtonModule as ɵkn, TransactionLineCommissionButtonComponent as ɵko, TransactionLineWarehouseButtonModule as ɵkp, TransactionLineWarehouseButtonComponent as ɵkq, TransactionLineDeliveryButtonModule as ɵkr, TransactionLineDeliveryButtonComponent as ɵks, TransactionLineDeliveryDateButtonModule as ɵkt, TransactionLineDeliveryDateButtonComponent as ɵku, TransactionLineAmountModule as ɵkv, TransactionLineAmountComponent as ɵkw, TransactionOverviewLineComponent as ɵkx, TransactionOrderDeliveryLineModule as ɵky, TransactionOrderDeliveryLineComponent as ɵkz, ErrorService as ɵl, TransactionReceiveGoodsLineModule as ɵla, TransactionReceiveGoodsLineComponent as ɵlb, TransactionPurchaseLineModule as ɵlc, TransactionLineSupplierButtonModule as ɵld, DialogTransactionLineSupplierModule as ɵle, DialogTransactionLineSupplierComponent as ɵlf, TransactionLineSupplierButtonComponent as ɵlg, TransactionPurchaseLineComponent as ɵlh, QuickSendButtonModule as ɵli, QuickSendButtonComponent as ɵlj, TransactionGoodsAllocationLineModule as ɵlk, TransactionGoodsAllocationLineComponent as ɵll, TransactionSearchResultModule as ɵlm, TransactionSearchSalesOrderTileModule as ɵln, TransactionSearchSalesOrderTileComponent as ɵlo, TransactionSearchTileBaseComponent as ɵlp, TransactionSearchPurchaseOrderTileModule as ɵlq, TransactionSearchPurchaseOrderTileComponent as ɵlr, TransactionSearchSalesOrderGridModule as ɵls, TransactionSearchSalesOrderGridComponent as ɵlt, TransactionSearchGridBaseComponent as ɵlu, TransactionSearchPurchaseOrderGridModule as ɵlv, TransactionSearchPurchaseOrderGridComponent as ɵlw, TransactionSearchHeaderModule as ɵlx, TransactionSearchHeaderComponent as ɵly, TransactionSearchGridModule as ɵlz, SelectSingleCacheService as ɵm, TransactionSearchGridComponent as ɵma, TransactionSearchTileModule as ɵmb, TransactionSearchTileComponent as ɵmc, TransactionSearchResultComponent as ɵmd, TransactionSalesOrderFilterModule as ɵme, TransactionSalesOrderFilterContentOrderModule as ɵmf, TransactionFilterItemModule as ɵmg, TransactionFilterItemComponent as ɵmh, TransactionSalesOrderFilterContentOrderComponent as ɵmi, TransactionFilterContentBaseComponent as ɵmj, FilterRequestService as ɵmk, TransactionSalesOrderFilterContentLogisticsModule as ɵml, TransactionFilterHistoricStateModule as ɵmm, TransactionFilterHistoricStateComponent as ɵmn, TransactionSalesOrderFilterContentLogisticsComponent as ɵmo, TransactionSalesOrderFilterContentArticleModule as ɵmp, TransactionSalesOrderFilterContentArticleComponent as ɵmq, TransactionSalesOrderFilterComponent as ɵmr, TransactionFilterBaseComponent as ɵms, TransactionPurchaseOrderFilterModule as ɵmt, TransactionPurchaseOrderFilterContentOrderModule as ɵmu, TransactionPurchaseOrderFilterContentOrderComponent as ɵmv, TransactionPurchaseOrderFilterContentLogisticsModule as ɵmw, TransactionPurchaseOrderFilterContentLogisticsComponent as ɵmx, TransactionPurchaseOrderFilterContentArticleModule as ɵmy, TransactionPurchaseOrderFilterContentArticleComponent as ɵmz, ArticleConnectorService as ɵn, TransactionPurchaseOrderFilterComponent as ɵna, TransactionFilterModule as ɵnb, TransactionFilterComponent as ɵnc, 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 };
|
|
24231
|
+
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, TransactionButtonBarModule as ɵhh, AnimatedCheckboxModule as ɵhi, AnimatedCheckboxComponent as ɵhj, TransactionButtonBarComponent as ɵhk, TransactionButtonBarButtonComponent as ɵhl, TransactionButtonBarButtonBaseComponent as ɵhm, TransactionSalesPurchaseButtonBarButtonComponent as ɵhn, TransactionLineSidePanelPurchaseModule as ɵho, DefaultOkCancelButtonsModule as ɵhp, DefaultOkCancelButtonsComponent as ɵhq, TransactionAvailableStockGridModule as ɵhr, TransactionAvailableStockGridComponent as ɵhs, TransactionSidePanelEditRequestDetailsModule as ɵht, TransactionLineWarehouseLocationButtonModule as ɵhu, TransactionLineWarehouseLocationButtonComponent as ɵhv, TransactionSidePanelEditRequestDetailsComponent as ɵhw, AllocationRequestComponent as ɵhx, ReceiveGoodsRequestComponent as ɵhy, ArticleService as ɵhz, BusinessObjectCacheManagerService as ɵi, TransactionLineSidePanelPurchaseComponent as ɵia, TransactionLineSidePanelSalesModule as ɵib, TransactionAllocateGoodsHistoryModule as ɵic, TransactionAllocateGoodsHistoryComponent as ɵid, TransactionLineSidePanelSalesComponent as ɵie, TransactionLineSidePanelComponent as ɵif, DynamicBaseComponent as ɵig, TransactionLineActionButtonsModule as ɵih, TransactionArticleTextOverviewModule as ɵii, TransactionArticleTextOverviewComponent as ɵij, TransactionLineActionButtonsComponent as ɵik, TransactionBaseGridComponent as ɵil, TransactionGridBaseComponent as ɵim, DialogTransactionLineCommissionCodeModule as ɵin, DialogTransactionLineCommissionCodeComponent as ɵio, DialogTransactionLineBaseComponent as ɵip, DialogTransactionLineWarehouseModule as ɵiq, DialogTransactionLineWarehouseComponent as ɵir, DialogTransactionLineWarehouseCcModule as ɵis, DialogTransactionLineWarehouseCcComponent as ɵit, DialogTransactionLineDeliveryMethodModule as ɵiu, DialogTransactionLineDeliveryMethodComponent as ɵiv, DialogTransactionLineVatModule as ɵiw, DialogTransactionLineVatComponent as ɵix, DialogTransactionLineDiscountModule as ɵiy, DialogTransactionLinePriceListModule as ɵiz, CacheField as ɵj, DialogTransactionLinePriceListComponent as ɵja, DialogTransactionLineDiscountComponent as ɵjb, TransactionLinesGridComponent as ɵjc, DiscountModule as ɵjd, DiscountComponent as ɵje, TransactionQuickAccessOverviewModule as ɵjf, DialogCatalogModule as ɵjg, DialogCatalogComponent as ɵjh, TransactionQuickAccessOverviewComponent as ɵji, TransactionQuickAccessOrderDeliveryModule as ɵjj, TransactionSendButtonDialogModule as ɵjk, TransactionSendButtonDialogComponent as ɵjl, TransactionQuickAccessOrderDeliveryComponent as ɵjm, TransactionOrderDeliveryService as ɵjn, TransactionQuickAccessOrderPurchaseModule as ɵjo, TransactionQuickAccessOrderPurchaseComponent as ɵjp, TransactionQuickAccessGoodsAllocationModule as ɵjq, TransactionQuickAccessGoodsAllocationComponent as ɵjr, TransactionAllocateGoodsService as ɵjs, TransactionOrderConfirmationGridModule as ɵjt, TransactionOrderConfirmationGridComponent as ɵju, TransactionReceivedGoodsGridModule as ɵjv, DialogTransactionLineWarehouseLocationModule as ɵjw, TransactionLineWarehouseLocationModule as ɵjx, TransactionLineWarehouseLocationComponent as ɵjy, DialogTransactionLineWarehouseLocationComponent as ɵjz, SelectMultipleParameterizedCacheService as ɵk, TransactionReceivedGoodsGridComponent as ɵka, ViewModeButtonsModule as ɵkb, ViewModeButtonsComponent as ɵkc, TransactionGridModule as ɵkd, TransactionGridComponent as ɵke, TransactionTileModule as ɵkf, TransactionTileComponent as ɵkg, TransactionOverviewLineModule as ɵkh, EditableLabelModule as ɵki, EditableLabelComponent as ɵkj, TransactionBaseLineModule as ɵkk, TransactionBaseLineComponent as ɵkl, TransactionLinesLineBaseComponent as ɵkm, TransactionLineCommissionButtonModule as ɵkn, TransactionLineCommissionButtonComponent as ɵko, TransactionLineWarehouseButtonModule as ɵkp, TransactionLineWarehouseButtonComponent as ɵkq, TransactionLineDeliveryButtonModule as ɵkr, TransactionLineDeliveryButtonComponent as ɵks, TransactionLineDeliveryDateButtonModule as ɵkt, TransactionLineDeliveryDateButtonComponent as ɵku, TransactionLineAmountModule as ɵkv, TransactionLineAmountComponent as ɵkw, TransactionOverviewLineComponent as ɵkx, TransactionOrderDeliveryLineModule as ɵky, TransactionOrderDeliveryLineComponent as ɵkz, ErrorService as ɵl, TransactionReceiveGoodsLineModule as ɵla, TransactionReceiveGoodsLineComponent as ɵlb, TransactionPurchaseLineModule as ɵlc, TransactionLineSupplierButtonModule as ɵld, DialogTransactionLineSupplierModule as ɵle, DialogTransactionLineSupplierComponent as ɵlf, TransactionLineSupplierButtonComponent as ɵlg, TransactionPurchaseLineComponent as ɵlh, QuickSendButtonModule as ɵli, QuickSendButtonComponent as ɵlj, TransactionGoodsAllocationLineModule as ɵlk, TransactionGoodsAllocationLineComponent as ɵll, TransactionSearchResultModule as ɵlm, TransactionSearchSalesOrderTileModule as ɵln, TransactionSearchSalesOrderTileComponent as ɵlo, TransactionSearchTileBaseComponent as ɵlp, TransactionSearchPurchaseOrderTileModule as ɵlq, TransactionSearchPurchaseOrderTileComponent as ɵlr, TransactionSearchSalesOrderGridModule as ɵls, TransactionSearchSalesOrderGridComponent as ɵlt, TransactionSearchGridBaseComponent as ɵlu, TransactionSearchPurchaseOrderGridModule as ɵlv, TransactionSearchPurchaseOrderGridComponent as ɵlw, TransactionSearchHeaderModule as ɵlx, TransactionSearchHeaderComponent as ɵly, TransactionSearchGridModule as ɵlz, SelectSingleCacheService as ɵm, TransactionSearchGridComponent as ɵma, TransactionSearchTileModule as ɵmb, TransactionSearchTileComponent as ɵmc, TransactionSearchResultComponent as ɵmd, TransactionSalesOrderFilterModule as ɵme, TransactionSalesOrderFilterContentOrderModule as ɵmf, TransactionFilterItemModule as ɵmg, TransactionFilterItemComponent as ɵmh, TransactionSalesOrderFilterContentOrderComponent as ɵmi, TransactionFilterContentBaseComponent as ɵmj, FilterRequestService as ɵmk, TransactionSalesOrderFilterContentLogisticsModule as ɵml, TransactionFilterHistoricStateModule as ɵmm, TransactionFilterHistoricStateComponent as ɵmn, TransactionSalesOrderFilterContentLogisticsComponent as ɵmo, TransactionSalesOrderFilterContentArticleModule as ɵmp, TransactionSalesOrderFilterContentArticleComponent as ɵmq, TransactionSalesOrderFilterComponent as ɵmr, TransactionFilterBaseComponent as ɵms, TransactionPurchaseOrderFilterModule as ɵmt, TransactionPurchaseOrderFilterContentOrderModule as ɵmu, TransactionPurchaseOrderFilterContentOrderComponent as ɵmv, TransactionPurchaseOrderFilterContentLogisticsModule as ɵmw, TransactionPurchaseOrderFilterContentLogisticsComponent as ɵmx, TransactionPurchaseOrderFilterContentArticleModule as ɵmy, TransactionPurchaseOrderFilterContentArticleComponent as ɵmz, ArticleConnectorService as ɵn, TransactionPurchaseOrderFilterComponent as ɵna, TransactionFilterModule as ɵnb, TransactionFilterComponent as ɵnc, 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 };
|
|
24206
24232
|
//# sourceMappingURL=colijnit-transaction.js.map
|