@colijnit/transaction 261.20.23 → 261.20.25
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/fesm2022/colijnit-transaction.mjs +1086 -848
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +50 -21
- package/lib/component/checkout/checkout-overview-relation-edit/style/material.scss +0 -2
- package/lib/component/co-transaction-article-stock/style/material.scss +0 -1
- package/lib/component/confirmation-dialog/style/material.scss +0 -1
- package/lib/component/transaction-header/transaction-header/style/material.scss +0 -1
- package/lib/component/transaction-header/transaction-header-customer-portal/style/material.scss +0 -1
- package/lib/component/transaction-header/transaction-header-relation/style/material.scss +0 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -289,6 +289,7 @@ import { EmailHistoricWorkOrderRequest } from '@colijnit/transactionapi/build/mo
|
|
|
289
289
|
import { PdfWorkOrderRequest } from '@colijnit/transactionapi/build/model/pdf-work-order-request';
|
|
290
290
|
import { PdfWorkOrderResponse } from '@colijnit/transactionapi/build/model/pdf-work-order-response.bo';
|
|
291
291
|
import { PdfHistoricWorkOrderRequest } from '@colijnit/transactionapi/build/model/pdf-historic-work-order-request';
|
|
292
|
+
import { LspWmsDeliveryNotePrintRequest } from '@colijnit/transactionapi/build/model/lsp-wms-delivery-note-print-request';
|
|
292
293
|
import { BusinessObjectIDType } from '@colijnit/ioneconnector/build/type/business-object-id-type';
|
|
293
294
|
import { RelationKind as RelationKind$1 } from '@colijnit/articleapi/build/enum/relation-kind.enum';
|
|
294
295
|
import { Relation } from '@colijnit/relationapi/build/model/relation.bo';
|
|
@@ -1435,6 +1436,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1435
1436
|
getPaymentMethodsByCashRegisterGroupForCashRegister(cashRegisterGroupId: number): Promise<PaymentMethod[]>;
|
|
1436
1437
|
getLspPackageInfoPrintLayouts(showLoader?: boolean): Promise<ReportLayoutSelectionPrint[]>;
|
|
1437
1438
|
printLspPackageInfo(request: PrintLspPackageInfoRequest, showLoader?: boolean): Promise<void>;
|
|
1439
|
+
printDeliveryNoteForLspPackage(request: LspWmsDeliveryNotePrintRequest, showLoader?: boolean): Promise<void>;
|
|
1438
1440
|
getRouteDeparture(request: GetRouteDepartureRequest, showLoader?: boolean): Promise<string>;
|
|
1439
1441
|
changeHeadersTransactionsDefinitive(request: ChangeHeadersTransactionsDefinitiveRequest, showLoader?: boolean): Promise<void>;
|
|
1440
1442
|
generateInterbranchOrders(selectionList: StockReplenishment[], showLoader?: boolean): Promise<boolean>;
|
|
@@ -1899,6 +1901,7 @@ declare class TransactionConnectorService {
|
|
|
1899
1901
|
getCashRegistersForTransaction(transactionUUID: string): Promise<CashRegister[]>;
|
|
1900
1902
|
getLspPackageInfoPrintLayouts(showLoader?: boolean): Promise<ReportLayoutSelectionPrint[]>;
|
|
1901
1903
|
printLspPackageInfo(request: PrintLspPackageInfoRequest, showLoader?: boolean): Promise<void>;
|
|
1904
|
+
printDeliveryNoteForLspPackage(request: LspWmsDeliveryNotePrintRequest, showLoader?: boolean): Promise<void>;
|
|
1902
1905
|
getRouteDeparture(request: GetRouteDepartureRequest, showLoader?: boolean): Promise<string>;
|
|
1903
1906
|
changeHeadersTransactionsDefinitive(request: ChangeHeadersTransactionsDefinitiveRequest, showLoader?: boolean): Promise<void>;
|
|
1904
1907
|
generateInterbranchOrders(selectionList: StockReplenishment[], showLoader?: boolean): Promise<boolean>;
|
|
@@ -2735,6 +2738,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2735
2738
|
getCashRegistersForTransaction(transactionUUID: string): Promise<CashRegister[]>;
|
|
2736
2739
|
getLspPackageInfoPrintLayouts(showLoader?: boolean): Promise<ReportLayoutSelectionPrint[]>;
|
|
2737
2740
|
printLspPackageInfo(request: PrintLspPackageInfoRequest, showLoader?: boolean): Promise<void>;
|
|
2741
|
+
printDeliveryNoteForLspPackage(request: LspWmsDeliveryNotePrintRequest, showLoader?: boolean): Promise<void>;
|
|
2738
2742
|
getRouteDeparture(request: GetRouteDepartureRequest, showLoader?: boolean): Promise<string>;
|
|
2739
2743
|
changeHeadersTransactionsDefinitive(request: ChangeHeadersTransactionsDefinitiveRequest, showLoader?: boolean): Promise<void>;
|
|
2740
2744
|
generateInterbranchOrders(selectionList: StockReplenishment[], showLoader?: boolean): Promise<boolean>;
|
|
@@ -3199,6 +3203,7 @@ declare class TransactionPaymentService implements OnDestroy {
|
|
|
3199
3203
|
showPspQrCode: boolean;
|
|
3200
3204
|
getDepositAmount: boolean;
|
|
3201
3205
|
cancelUrl: string;
|
|
3206
|
+
shouldContinue: boolean;
|
|
3202
3207
|
payed: Subject<void>;
|
|
3203
3208
|
paymentFailed: Subject<void>;
|
|
3204
3209
|
pollingForStatusStarted: Subject<void>;
|
|
@@ -4986,6 +4991,8 @@ declare class TransactionLineImageAndDescriptionComponent extends TransactionLin
|
|
|
4986
4991
|
articleTextExpandRef: ElementRef<HTMLDivElement>;
|
|
4987
4992
|
popUpView: boolean;
|
|
4988
4993
|
showPurchaseDesc: boolean;
|
|
4994
|
+
showArticleNr: boolean;
|
|
4995
|
+
showPriceAmount: boolean;
|
|
4989
4996
|
customerPortal: boolean;
|
|
4990
4997
|
showClass(): boolean;
|
|
4991
4998
|
openArticleTextClicked: EventEmitter<void>;
|
|
@@ -5009,7 +5016,7 @@ declare class TransactionLineImageAndDescriptionComponent extends TransactionLin
|
|
|
5009
5016
|
private _loadLineImage;
|
|
5010
5017
|
private _checkIfExpandable;
|
|
5011
5018
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineImageAndDescriptionComponent, never>;
|
|
5012
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineImageAndDescriptionComponent, "co-transaction-line-image-and-description", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; "popUpView": { "alias": "popUpView"; "required": false; }; "showPurchaseDesc": { "alias": "showPurchaseDesc"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; }, { "openArticleTextClicked": "openArticleTextClicked"; "handleDeleteLine": "handleDeleteLine"; }, never, never, false, never>;
|
|
5019
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineImageAndDescriptionComponent, "co-transaction-line-image-and-description", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; "popUpView": { "alias": "popUpView"; "required": false; }; "showPurchaseDesc": { "alias": "showPurchaseDesc"; "required": false; }; "showArticleNr": { "alias": "showArticleNr"; "required": false; }; "showPriceAmount": { "alias": "showPriceAmount"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; }, { "openArticleTextClicked": "openArticleTextClicked"; "handleDeleteLine": "handleDeleteLine"; }, never, never, false, never>;
|
|
5013
5020
|
}
|
|
5014
5021
|
|
|
5015
5022
|
declare abstract class TransactionInputLineFieldBaseComponent extends TransactionLineBaseComponent {
|
|
@@ -5033,6 +5040,7 @@ declare class TransactionLineDescriptionComponent extends TransactionInputLineFi
|
|
|
5033
5040
|
configNames: ImageAndDescriptionCfgNames;
|
|
5034
5041
|
customHeight: boolean;
|
|
5035
5042
|
customerPortal: boolean;
|
|
5043
|
+
showPriceAmount: boolean;
|
|
5036
5044
|
inputLabel: boolean;
|
|
5037
5045
|
input: InputTextComponent;
|
|
5038
5046
|
description: string;
|
|
@@ -5045,7 +5053,7 @@ declare class TransactionLineDescriptionComponent extends TransactionInputLineFi
|
|
|
5045
5053
|
protected updatePurchaseDescription(description: string): Promise<boolean>;
|
|
5046
5054
|
protected transactionLineSet(): void;
|
|
5047
5055
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineDescriptionComponent, never>;
|
|
5048
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineDescriptionComponent, "co-transaction-line-description", never, { "showPurchaseDesc": { "alias": "showPurchaseDesc"; "required": false; }; "configNames": { "alias": "configNames"; "required": false; }; "customHeight": { "alias": "customHeight"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; }, {}, never, never, false, never>;
|
|
5056
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineDescriptionComponent, "co-transaction-line-description", never, { "showPurchaseDesc": { "alias": "showPurchaseDesc"; "required": false; }; "configNames": { "alias": "configNames"; "required": false; }; "customHeight": { "alias": "customHeight"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "showPriceAmount": { "alias": "showPriceAmount"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; }, {}, never, never, false, never>;
|
|
5049
5057
|
}
|
|
5050
5058
|
|
|
5051
5059
|
declare class TransactionLineLabelComponent {
|
|
@@ -5247,7 +5255,9 @@ declare class TransactionBaseLineComponent implements OnInit, OnDestroy {
|
|
|
5247
5255
|
checkbox: boolean;
|
|
5248
5256
|
actionButtons: boolean;
|
|
5249
5257
|
showPurchaseDescAndPrice: boolean;
|
|
5258
|
+
showArticleNr: boolean;
|
|
5250
5259
|
customerPortal: boolean;
|
|
5260
|
+
showPriceAmount: boolean;
|
|
5251
5261
|
checkboxValueChanged: EventEmitter<boolean>;
|
|
5252
5262
|
waitingForUserAction: EventEmitter<boolean>;
|
|
5253
5263
|
showClass(): boolean;
|
|
@@ -5265,7 +5275,7 @@ declare class TransactionBaseLineComponent implements OnInit, OnDestroy {
|
|
|
5265
5275
|
deleteTransactionLineClick(event: MouseEvent): Promise<void>;
|
|
5266
5276
|
handleOpenArticleText(): void;
|
|
5267
5277
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionBaseLineComponent, never>;
|
|
5268
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionBaseLineComponent, "co-transaction-base-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "transactionInfo": { "alias": "transactionInfo"; "required": false; }; "transactionLine": { "alias": "transactionLine"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "preview": { "alias": "preview"; "required": false; }; "isFirst": { "alias": "isFirst"; "required": false; }; "checkboxValue": { "alias": "checkboxValue"; "required": false; }; "showColorIndicator": { "alias": "showColorIndicator"; "required": false; }; "colorIndicatorColor": { "alias": "colorIndicatorColor"; "required": false; }; "checkboxReadonly": { "alias": "checkboxReadonly"; "required": false; }; "checkbox": { "alias": "checkbox"; "required": false; }; "actionButtons": { "alias": "actionButtons"; "required": false; }; "showPurchaseDescAndPrice": { "alias": "showPurchaseDescAndPrice"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; }, { "checkboxValueChanged": "checkboxValueChanged"; "waitingForUserAction": "waitingForUserAction"; }, never, ["*"], false, never>;
|
|
5278
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionBaseLineComponent, "co-transaction-base-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "transactionInfo": { "alias": "transactionInfo"; "required": false; }; "transactionLine": { "alias": "transactionLine"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "preview": { "alias": "preview"; "required": false; }; "isFirst": { "alias": "isFirst"; "required": false; }; "checkboxValue": { "alias": "checkboxValue"; "required": false; }; "showColorIndicator": { "alias": "showColorIndicator"; "required": false; }; "colorIndicatorColor": { "alias": "colorIndicatorColor"; "required": false; }; "checkboxReadonly": { "alias": "checkboxReadonly"; "required": false; }; "checkbox": { "alias": "checkbox"; "required": false; }; "actionButtons": { "alias": "actionButtons"; "required": false; }; "showPurchaseDescAndPrice": { "alias": "showPurchaseDescAndPrice"; "required": false; }; "showArticleNr": { "alias": "showArticleNr"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "showPriceAmount": { "alias": "showPriceAmount"; "required": false; }; }, { "checkboxValueChanged": "checkboxValueChanged"; "waitingForUserAction": "waitingForUserAction"; }, never, ["*"], false, never>;
|
|
5269
5279
|
}
|
|
5270
5280
|
|
|
5271
5281
|
declare class TransactionBaseLineModule {
|
|
@@ -6661,6 +6671,7 @@ declare class DeliveryPlanningService {
|
|
|
6661
6671
|
deliveryMethodAvailabilityCheck(planOrder: PlanOrder, transportDay: PlanningTransportWeekDay): Promise<boolean>;
|
|
6662
6672
|
districtAvailabilityCheck(planOrder: PlanOrder, transportDay: PlanningTransportWeekDay): Promise<boolean>;
|
|
6663
6673
|
filterTransactionsForDeliveryPlanning(transactions: TransactionSearchView[], transportDay: PlanningTransportWeekDay): Promise<TransactionSearchView[]>;
|
|
6674
|
+
syncPlanOrderTimesWithTransportDate(planOrder: PlanOrder, transport: PlanningTransportWeekDay): Promise<void>;
|
|
6664
6675
|
static ɵfac: i0.ɵɵFactoryDeclaration<DeliveryPlanningService, never>;
|
|
6665
6676
|
static ɵprov: i0.ɵɵInjectableDeclaration<DeliveryPlanningService>;
|
|
6666
6677
|
}
|
|
@@ -6888,6 +6899,7 @@ declare class TransactionReceiveGoodsLineComponent extends TransactionReceiveGoo
|
|
|
6888
6899
|
readonly cfgNames: typeof TransactionCfgName;
|
|
6889
6900
|
showClass(): boolean;
|
|
6890
6901
|
statusBarConfigNames: StatusBarCfgNames;
|
|
6902
|
+
navigationButtonIcon: Icon;
|
|
6891
6903
|
changeNrPackagesNotAllowed(): boolean;
|
|
6892
6904
|
changeAmountPerUnitNotAllowed(): boolean;
|
|
6893
6905
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionReceiveGoodsLineComponent, never>;
|
|
@@ -7081,7 +7093,7 @@ declare class TransactionPrintPackageStickerModule {
|
|
|
7081
7093
|
|
|
7082
7094
|
declare class TransactionReceiveGoodsLineModule {
|
|
7083
7095
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionReceiveGoodsLineModule, never>;
|
|
7084
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionReceiveGoodsLineModule, [typeof TransactionReceiveGoodsLineComponent], [typeof i2.CommonModule, typeof TransactionBaseLineModule, typeof TransactionLineWarehouseButtonModule, typeof TransactionLineWarehouseLocationModule, typeof EditableLabelModule, typeof i3.InputNumberPickerModule, typeof i3.InputCheckboxModule, typeof i3.IconModule, typeof TransactionLineWarehouseLocationButtonModule, typeof TransactionLineStatusbarModule, typeof i3.InputTextModule, typeof TransactionPrintPackageStickerModule, typeof i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof PipeModule, typeof TransactionLineLabelModule], [typeof TransactionReceiveGoodsLineComponent]>;
|
|
7096
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionReceiveGoodsLineModule, [typeof TransactionReceiveGoodsLineComponent], [typeof i2.CommonModule, typeof TransactionBaseLineModule, typeof TransactionLineWarehouseButtonModule, typeof TransactionLineWarehouseLocationModule, typeof EditableLabelModule, typeof i3.InputNumberPickerModule, typeof i3.InputCheckboxModule, typeof i3.IconModule, typeof TransactionLineWarehouseLocationButtonModule, typeof TransactionLineStatusbarModule, typeof i3.InputTextModule, typeof TransactionPrintPackageStickerModule, typeof i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof PipeModule, typeof TransactionLineLabelModule, typeof TransactionNavigationButtonModule], [typeof TransactionReceiveGoodsLineComponent]>;
|
|
7085
7097
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionReceiveGoodsLineModule>;
|
|
7086
7098
|
}
|
|
7087
7099
|
|
|
@@ -7895,7 +7907,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
7895
7907
|
showCategories: boolean;
|
|
7896
7908
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
7897
7909
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
7898
|
-
currentTitle(): "
|
|
7910
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
7899
7911
|
ngOnDestroy(): void;
|
|
7900
7912
|
handleClickWrapper(event: MouseEvent): void;
|
|
7901
7913
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -7921,7 +7933,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
7921
7933
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
7922
7934
|
ngOnDestroy(): void;
|
|
7923
7935
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
7924
|
-
currentTitle(): "
|
|
7936
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
7925
7937
|
handleClickWrapper(event: MouseEvent): void;
|
|
7926
7938
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
7927
7939
|
private handleDocumentClick;
|
|
@@ -7973,7 +7985,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
7973
7985
|
showCategories: boolean;
|
|
7974
7986
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
7975
7987
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
7976
|
-
currentTitle(): "
|
|
7988
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
7977
7989
|
ngOnDestroy(): void;
|
|
7978
7990
|
handleClickWrapper(event: MouseEvent): void;
|
|
7979
7991
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -9106,11 +9118,13 @@ declare class TransactionSearchComponent implements OnDestroy {
|
|
|
9106
9118
|
searchPlaceholder: string;
|
|
9107
9119
|
draggableTransactions: boolean;
|
|
9108
9120
|
extendedTransactionSearch: boolean;
|
|
9121
|
+
returnWizardLayout: boolean;
|
|
9109
9122
|
showSearchInput: boolean;
|
|
9110
9123
|
showFilterButton: boolean;
|
|
9111
9124
|
showAddTransactionButton: boolean;
|
|
9112
9125
|
showCollapseButton: boolean;
|
|
9113
9126
|
set overrideSearchType(kind: TransactionKind);
|
|
9127
|
+
set returnSearch(rs: boolean);
|
|
9114
9128
|
transactionClick: EventEmitter<TransactionSearchView>;
|
|
9115
9129
|
addTransactionClick: EventEmitter<void>;
|
|
9116
9130
|
showClass(): boolean;
|
|
@@ -9121,7 +9135,7 @@ declare class TransactionSearchComponent implements OnDestroy {
|
|
|
9121
9135
|
private _scrollToTop;
|
|
9122
9136
|
onAddClick(): void;
|
|
9123
9137
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionSearchComponent, never>;
|
|
9124
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchComponent, "co-transaction-search", never, { "draggableTransactions": { "alias": "draggableTransactions"; "required": false; }; "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; "showSearchInput": { "alias": "showSearchInput"; "required": false; }; "showFilterButton": { "alias": "showFilterButton"; "required": false; }; "showAddTransactionButton": { "alias": "showAddTransactionButton"; "required": false; }; "showCollapseButton": { "alias": "showCollapseButton"; "required": false; }; "overrideSearchType": { "alias": "overrideSearchType"; "required": false; }; }, { "transactionClick": "transactionClick"; "addTransactionClick": "addTransactionClick"; }, never, ["*"], false, never>;
|
|
9138
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchComponent, "co-transaction-search", never, { "draggableTransactions": { "alias": "draggableTransactions"; "required": false; }; "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; "returnWizardLayout": { "alias": "returnWizardLayout"; "required": false; }; "showSearchInput": { "alias": "showSearchInput"; "required": false; }; "showFilterButton": { "alias": "showFilterButton"; "required": false; }; "showAddTransactionButton": { "alias": "showAddTransactionButton"; "required": false; }; "showCollapseButton": { "alias": "showCollapseButton"; "required": false; }; "overrideSearchType": { "alias": "overrideSearchType"; "required": false; }; "returnSearch": { "alias": "returnSearch"; "required": false; }; }, { "transactionClick": "transactionClick"; "addTransactionClick": "addTransactionClick"; }, never, ["*"], false, never>;
|
|
9125
9139
|
}
|
|
9126
9140
|
|
|
9127
9141
|
declare enum BatchDeliveryCategory {
|
|
@@ -9693,6 +9707,7 @@ declare class TransactionSearchSalesLineSelectTileComponent extends TransactionS
|
|
|
9693
9707
|
changeDetector: ChangeDetectorRef;
|
|
9694
9708
|
showClass(): boolean;
|
|
9695
9709
|
extendedTransactionSearch: boolean;
|
|
9710
|
+
returnWizardLayout: boolean;
|
|
9696
9711
|
lineClicked: EventEmitter<TransactionLineSearchIndex>;
|
|
9697
9712
|
transactionClick: EventEmitter<TransactionSearchView>;
|
|
9698
9713
|
lines: TransactionLineSearchIndex[];
|
|
@@ -9702,24 +9717,30 @@ declare class TransactionSearchSalesLineSelectTileComponent extends TransactionS
|
|
|
9702
9717
|
tileClicked(line: TransactionLineSearchIndex): void;
|
|
9703
9718
|
onTransactionClick(transaction: TransactionSearchView): void;
|
|
9704
9719
|
getPriorityLabel(priority?: PriorityType): string;
|
|
9720
|
+
showOrderLabel(): string;
|
|
9705
9721
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionSearchSalesLineSelectTileComponent, never>;
|
|
9706
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchSalesLineSelectTileComponent, "co-transaction-search-sales-line-select-tile", never, { "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; }, { "lineClicked": "lineClicked"; "transactionClick": "transactionClick"; }, never, never, false, never>;
|
|
9722
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchSalesLineSelectTileComponent, "co-transaction-search-sales-line-select-tile", never, { "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; "returnWizardLayout": { "alias": "returnWizardLayout"; "required": false; }; }, { "lineClicked": "lineClicked"; "transactionClick": "transactionClick"; }, never, never, false, never>;
|
|
9707
9723
|
}
|
|
9708
9724
|
|
|
9709
9725
|
declare class TransactionLineTileComponent {
|
|
9710
9726
|
transactionService: TransactionService;
|
|
9727
|
+
private _changeDetector;
|
|
9711
9728
|
private imageService;
|
|
9712
9729
|
line: TransactionLineSearchIndex;
|
|
9730
|
+
set showPriceAmount(value: boolean);
|
|
9731
|
+
get showPriceAmount(): boolean;
|
|
9713
9732
|
showClass(): boolean;
|
|
9714
|
-
|
|
9733
|
+
private _showPriceAmount;
|
|
9734
|
+
constructor(transactionService: TransactionService, _changeDetector: ChangeDetectorRef, imageService: TransactionImageService);
|
|
9715
9735
|
handleVisibilityChange(visible: boolean): void;
|
|
9736
|
+
private _detectChanges;
|
|
9716
9737
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineTileComponent, never>;
|
|
9717
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineTileComponent, "co-transaction-line-tile", never, { "line": { "alias": "line"; "required": false; }; }, {}, never, never, false, never>;
|
|
9738
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineTileComponent, "co-transaction-line-tile", never, { "line": { "alias": "line"; "required": false; }; "showPriceAmount": { "alias": "showPriceAmount"; "required": false; }; }, {}, never, never, false, never>;
|
|
9718
9739
|
}
|
|
9719
9740
|
|
|
9720
9741
|
declare class TransactionLineTileModule {
|
|
9721
9742
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineTileModule, never>;
|
|
9722
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineTileModule, [typeof TransactionLineTileComponent], [typeof CoreModule, typeof i3.ObserveVisibilityModule], [typeof TransactionLineTileComponent]>;
|
|
9743
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineTileModule, [typeof TransactionLineTileComponent], [typeof CoreModule, typeof i3.ObserveVisibilityModule, typeof i3.CoCurrencyPipeModule, typeof TransactionLineDescriptionModule], [typeof TransactionLineTileComponent]>;
|
|
9723
9744
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineTileModule>;
|
|
9724
9745
|
}
|
|
9725
9746
|
|
|
@@ -14550,6 +14571,11 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14550
14571
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionQuickAccessPlanningComponent, "co-transaction-quick-access-planning", never, {}, {}, never, never, false, never>;
|
|
14551
14572
|
}
|
|
14552
14573
|
|
|
14574
|
+
declare enum LspDialogType {
|
|
14575
|
+
Transaction = "TRANSACTION",
|
|
14576
|
+
WMS = "WMS"
|
|
14577
|
+
}
|
|
14578
|
+
|
|
14553
14579
|
interface DeliveryMethod {
|
|
14554
14580
|
code: string;
|
|
14555
14581
|
description: string;
|
|
@@ -14558,7 +14584,6 @@ interface DeliveryMethod {
|
|
|
14558
14584
|
};
|
|
14559
14585
|
}
|
|
14560
14586
|
declare class TransactionQuickAccessPlanningPopupComponent implements OnInit {
|
|
14561
|
-
private _transaction;
|
|
14562
14587
|
iconCacheService: IconCacheService;
|
|
14563
14588
|
transactionService: TransactionService;
|
|
14564
14589
|
readonly icons: typeof Icon;
|
|
@@ -14567,23 +14592,27 @@ declare class TransactionQuickAccessPlanningPopupComponent implements OnInit {
|
|
|
14567
14592
|
layoutCode: LayoutCode;
|
|
14568
14593
|
disablePdfPreview: boolean;
|
|
14569
14594
|
printerList: Printer[];
|
|
14570
|
-
|
|
14595
|
+
reportDocumentLspPrintRequest: PrintLspPackageInfoRequest;
|
|
14596
|
+
reportDocumentLspWmsPrintRequest: LspWmsDeliveryNotePrintRequest;
|
|
14571
14597
|
selectedDeliveryMethod: DeliveryMethod;
|
|
14572
14598
|
defaultSendMethodIcon: string;
|
|
14573
14599
|
showLoader: boolean;
|
|
14574
14600
|
showSendMethodDialog: boolean;
|
|
14575
14601
|
defaultSendMethod: string;
|
|
14576
|
-
set packageLSP(packageLSP: PackageLSP[]);
|
|
14577
|
-
get packageLSP(): PackageLSP[];
|
|
14578
14602
|
private _packageLSP;
|
|
14603
|
+
private _lspDialogType;
|
|
14604
|
+
set lspDialogType(type: LspDialogType);
|
|
14605
|
+
autoPrint: boolean;
|
|
14606
|
+
set packageLSP(packageLSP: PackageLSP[]);
|
|
14579
14607
|
deliveryMethods: DeliveryMethod[];
|
|
14580
14608
|
close: EventEmitter<void>;
|
|
14609
|
+
autoPrinted: EventEmitter<number>;
|
|
14581
14610
|
createdTrackAndTrace: EventEmitter<string>;
|
|
14611
|
+
get packageLSP(): PackageLSP[];
|
|
14582
14612
|
showClass(): boolean;
|
|
14583
|
-
constructor(
|
|
14613
|
+
constructor(iconCacheService: IconCacheService, transactionService: TransactionService);
|
|
14584
14614
|
ngOnInit(): void;
|
|
14585
14615
|
get transactionInfo(): TransactionInfoResponse;
|
|
14586
|
-
get selectedLines(): TransactionLineInfo[];
|
|
14587
14616
|
deliveryMethodChange(method: DeliveryMethod): void;
|
|
14588
14617
|
createTrackAndTrace(): Promise<void>;
|
|
14589
14618
|
openTrackAndTraceURL(packageLsp: PackageLSP): void;
|
|
@@ -14592,7 +14621,7 @@ declare class TransactionQuickAccessPlanningPopupComponent implements OnInit {
|
|
|
14592
14621
|
getPrintLayouts(): Promise<void>;
|
|
14593
14622
|
private _getPrinters;
|
|
14594
14623
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionQuickAccessPlanningPopupComponent, never>;
|
|
14595
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionQuickAccessPlanningPopupComponent, "co-transaction-quick-access-planning-popup", never, { "packageLSP": { "alias": "packageLSP"; "required": false; }; "deliveryMethods": { "alias": "deliveryMethods"; "required": false; }; }, { "close": "close"; "createdTrackAndTrace": "createdTrackAndTrace"; }, never, never, false, never>;
|
|
14624
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionQuickAccessPlanningPopupComponent, "co-transaction-quick-access-planning-popup", never, { "lspDialogType": { "alias": "lspDialogType"; "required": false; }; "autoPrint": { "alias": "autoPrint"; "required": false; }; "packageLSP": { "alias": "packageLSP"; "required": false; }; "deliveryMethods": { "alias": "deliveryMethods"; "required": false; }; }, { "close": "close"; "autoPrinted": "autoPrinted"; "createdTrackAndTrace": "createdTrackAndTrace"; }, never, never, false, never>;
|
|
14596
14625
|
}
|
|
14597
14626
|
|
|
14598
14627
|
declare class TransactionQuickAccessPlanningModule {
|
|
@@ -16116,7 +16145,7 @@ declare class TransactionSalesPersonInputComponent implements OnInit {
|
|
|
16116
16145
|
readonly icons: typeof Icon;
|
|
16117
16146
|
readonly buttonType: typeof AppPopupButtonType;
|
|
16118
16147
|
parentForOverlay: ElementRef;
|
|
16119
|
-
collection:
|
|
16148
|
+
collection: any[];
|
|
16120
16149
|
filteredCollection: SalesPerson[];
|
|
16121
16150
|
salesPersonClicked: EventEmitter<SalesPerson>;
|
|
16122
16151
|
close: EventEmitter<MouseEvent>;
|
|
@@ -16994,5 +17023,5 @@ declare class SharedConnectorService {
|
|
|
16994
17023
|
static ɵprov: i0.ɵɵInjectableDeclaration<SharedConnectorService>;
|
|
16995
17024
|
}
|
|
16996
17025
|
|
|
16997
|
-
export { AddProductComponent, AddProductModule, BatchProcessDialogComponent, BatchProcessDialogModule, CharacteristicAnswerComponent, CharacteristicAnswerModule, CheckoutComponent, CheckoutModule, CheckoutOverviewDeliveryEditComponent, CheckoutOverviewRelationEditComponent, DatePeriod, DeliveryPlanningCalendarModes, DeliveryPlanningComponent, DeliveryPlanningModes, DeliveryPlanningModule, DeliveryPlanningService, DeliveryPlanningViewModes, DialogBranchComponent, DialogBranchModule, DialogTransactionLineWarehouseCcComponent, DialogTransactionLineWarehouseCcModule, DialogTransactionLineWarehouseLocationComponent, DialogTransactionLineWarehouseLocationModule, FastDateRangePickerComponent, FastDateRangePickerModule, FilterRequestService, LineSelectionService, LoaderComponent, LoaderModule, PosOrderData, PurchaseConfirmationService, QuickSendButtonComponent, QuickSendButtonModule, SearchViewMode, SearchbarViewMode, SharedConnectorService, ShippingMethodDialogComponent, ShippingMethodDialogModule, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, StepperComponent, StepperModule, StepperStepComponent, StepperStepModule, TRANSACTION_BUTTON_BAR_MAPPING_CONFIG, TRANSACTION_CARD_MAPPING_CONFIG, TRANSACTION_DIALOG_MAPPING_CONFIG, TRANSACTION_FILTER_MAPPING_CONFIG, TRANSACTION_LINE_MAPPING_CONFIG, TRANSACTION_QUICK_ACCESS_MAPPING_CONFIG, TRANSACTION_SEARCH_MAPPING_CONFIG, TRANSACTION_SIDE_PANEL_MAPPING_CONFIG, TransactionBusinessObjectCacheManagerService, TransactionCashRegisterDialogComponent, TransactionCashRegisterDialogModule, TransactionCashRegisterOrderReceiptDialogComponent, TransactionCashRegisterOrderReceiptDialogModule, TransactionCfgName, TransactionComponent, TransactionConfirmTotalsComponent, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionConnectorAdapterService, TransactionConnectorService, TransactionCreateDateLabelComponent, TransactionCreateDateLabelModule, TransactionCreateWizardComponent, TransactionCreateWizardModule, TransactionDatePickDialogComponent, TransactionDatePickDialogModule, TransactionDialogService, TransactionEventService, TransactionFilterComponent, TransactionFilterContentService, TransactionFilterModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionInvoiceCheckOrder, TransactionInvoiceCheckOrderTileComponent, TransactionInvoiceCheckOrderTileModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineSidePanelArticleDetailsComponent, TransactionLineSidePanelArticleDetailsModule, TransactionLineSidePanelReplenishmentArticleDetailsComponent, TransactionLineSidePanelReplenishmentArticleDetailsModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionMappingService, TransactionMarginComponent, TransactionMarginModule, TransactionModule, TransactionNotificationLineSelectionService, TransactionNumberLabelComponent, TransactionNumberLabelModule, TransactionPaymentConnectorService, TransactionPaymentService, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessPlanningComponent, TransactionQuickAccessPlanningModule, TransactionQuickAccessPlanningPopupComponent, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionRelationConnectorService, TransactionRelationService, TransactionScreenConfigurationService, TransactionSearchComponent, TransactionSearchModule, TransactionSearchResultComponent, TransactionSearchResultModule, TransactionSearchService, TransactionSelectMultipleCacheService, TransactionSelectMultipleParameterizedCacheService, TransactionSelectSingleCacheService, TransactionSelectSingleParameterizedCacheService, TransactionService, TransactionSettings, TransactionSettingsOptions, TransactionSettingsService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTagComponent, TransactionTagsComponent, TransactionTagsModule, TransactionTotalsComponent, TransactionTotalsModule, Version, VoucherCodePendingReasonDialogComponent, VoucherCodePendingReasonDialogModule, WarehouseCCTab };
|
|
17026
|
+
export { AddProductComponent, AddProductModule, BatchProcessDialogComponent, BatchProcessDialogModule, CharacteristicAnswerComponent, CharacteristicAnswerModule, CheckoutComponent, CheckoutModule, CheckoutOverviewDeliveryEditComponent, CheckoutOverviewRelationEditComponent, DatePeriod, DeliveryPlanningCalendarModes, DeliveryPlanningComponent, DeliveryPlanningModes, DeliveryPlanningModule, DeliveryPlanningService, DeliveryPlanningViewModes, DialogBranchComponent, DialogBranchModule, DialogTransactionLineWarehouseCcComponent, DialogTransactionLineWarehouseCcModule, DialogTransactionLineWarehouseLocationComponent, DialogTransactionLineWarehouseLocationModule, FastDateRangePickerComponent, FastDateRangePickerModule, FilterRequestService, LineSelectionService, LoaderComponent, LoaderModule, LspDialogType, PosOrderData, PurchaseConfirmationService, QuickSendButtonComponent, QuickSendButtonModule, SearchViewMode, SearchbarViewMode, SharedConnectorService, ShippingMethodDialogComponent, ShippingMethodDialogModule, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, StepperComponent, StepperModule, StepperStepComponent, StepperStepModule, TRANSACTION_BUTTON_BAR_MAPPING_CONFIG, TRANSACTION_CARD_MAPPING_CONFIG, TRANSACTION_DIALOG_MAPPING_CONFIG, TRANSACTION_FILTER_MAPPING_CONFIG, TRANSACTION_LINE_MAPPING_CONFIG, TRANSACTION_QUICK_ACCESS_MAPPING_CONFIG, TRANSACTION_SEARCH_MAPPING_CONFIG, TRANSACTION_SIDE_PANEL_MAPPING_CONFIG, TransactionBusinessObjectCacheManagerService, TransactionCashRegisterDialogComponent, TransactionCashRegisterDialogModule, TransactionCashRegisterOrderReceiptDialogComponent, TransactionCashRegisterOrderReceiptDialogModule, TransactionCfgName, TransactionComponent, TransactionConfirmTotalsComponent, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionConnectorAdapterService, TransactionConnectorService, TransactionCreateDateLabelComponent, TransactionCreateDateLabelModule, TransactionCreateWizardComponent, TransactionCreateWizardModule, TransactionDatePickDialogComponent, TransactionDatePickDialogModule, TransactionDialogService, TransactionEventService, TransactionFilterComponent, TransactionFilterContentService, TransactionFilterModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionInvoiceCheckOrder, TransactionInvoiceCheckOrderTileComponent, TransactionInvoiceCheckOrderTileModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineSidePanelArticleDetailsComponent, TransactionLineSidePanelArticleDetailsModule, TransactionLineSidePanelReplenishmentArticleDetailsComponent, TransactionLineSidePanelReplenishmentArticleDetailsModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionMappingService, TransactionMarginComponent, TransactionMarginModule, TransactionModule, TransactionNotificationLineSelectionService, TransactionNumberLabelComponent, TransactionNumberLabelModule, TransactionPaymentConnectorService, TransactionPaymentService, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessPlanningComponent, TransactionQuickAccessPlanningModule, TransactionQuickAccessPlanningPopupComponent, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionRelationConnectorService, TransactionRelationService, TransactionScreenConfigurationService, TransactionSearchComponent, TransactionSearchModule, TransactionSearchResultComponent, TransactionSearchResultModule, TransactionSearchService, TransactionSelectMultipleCacheService, TransactionSelectMultipleParameterizedCacheService, TransactionSelectSingleCacheService, TransactionSelectSingleParameterizedCacheService, TransactionService, TransactionSettings, TransactionSettingsOptions, TransactionSettingsService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTagComponent, TransactionTagsComponent, TransactionTagsModule, TransactionTotalsComponent, TransactionTotalsModule, Version, VoucherCodePendingReasonDialogComponent, VoucherCodePendingReasonDialogModule, WarehouseCCTab };
|
|
16998
17027
|
export type { AddArticleInterface, DeliveryMethod, InvoiceCheckOrderInterface, InvoiceCheckOrderLineInterface, TransactionButtonBarMappingConfig, TransactionCardMappingConfig, TransactionDialogMappingConfig, TransactionFilterMappingConfig, TransactionLineMappingConfig, TransactionQuickAccessMappingConfig, TransactionSearchMappingConfig, TransactionSidePanelMappingConfig, steps };
|
|
@@ -4,5 +4,3 @@
|
|
|
4
4
|
@import "./theme";
|
|
5
5
|
$cc-co-carousel-3d-navigate-button-width: 40px;
|
|
6
6
|
@import "../../../relation/relation-address/style/material";
|
|
7
|
-
@import "@colijnit/corecomponents_v12/lib/components/carousel-3d/style/material";
|
|
8
|
-
@import "@colijnit/corecomponents_v12/lib/components/input-checkbox/style/material";
|
|
@@ -11,5 +11,3 @@ $cc-co-carousel-3d-navigate-button-width: 40px;
|
|
|
11
11
|
@import "../../../relation/relation-general/style/material";
|
|
12
12
|
@import "../../../relation/relation-contact-details/style/material";
|
|
13
13
|
@import "../../../relation/relation-preferences/style/material";
|
|
14
|
-
@import "@colijnit/corecomponents_v12/lib/components/carousel-3d/style/material";
|
|
15
|
-
@import "@colijnit/corecomponents_v12/lib/components/input-checkbox/style/material";
|