@colijnit/transaction 300.1.18 → 300.1.20
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/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ComponentFactoryResolver, ApplicationRef, Injector, ComponentRef, StaticProvider, InjectionToken, EventEmitter, OnDestroy, OnInit, AfterViewInit, ChangeDetectorRef, ElementRef, PipeTransform, Type, OnChanges, SimpleChanges, AfterViewChecked, QueryList, ViewContainerRef, Renderer2
|
|
2
|
+
import { ComponentFactoryResolver, ApplicationRef, Injector, ComponentRef, StaticProvider, InjectionToken, EventEmitter, OnDestroy, OnInit, AfterViewInit, ChangeDetectorRef, ElementRef, PipeTransform, Type, OnChanges, SimpleChanges, AfterViewChecked, TemplateRef, QueryList, ViewContainerRef, Renderer2 } from '@angular/core';
|
|
3
3
|
import { DiscountType } from '@colijnit/transactionapi/build/enum/discount-type.enum';
|
|
4
4
|
import { ArticleFullObject } from '@colijnit/transactionapi/build/model/article-full-object';
|
|
5
5
|
import { CashRegister } from '@colijnit/transactionapi/build/model/cash-register';
|
|
@@ -298,6 +298,7 @@ import { SuggestedReceiptLocation } from '@colijnit/transactionapi/build/model/s
|
|
|
298
298
|
import { PdfHistoricPosReceiptRequest } from '@colijnit/transactionapi/build/model/pdf-historic-pos-receipt-request';
|
|
299
299
|
import { CreatePublicQuoteRequest } from '@colijnit/transactionapi/build/model/create-public-quote-request';
|
|
300
300
|
import { UpsertTransactionStandardTextRequest } from '@colijnit/transactionapi/build/model/upsert-transaction-standard-text-request';
|
|
301
|
+
import { ChangeHeaderExtraDocRequest } from '@colijnit/transactionapi/build/model/change-header-extra-doc-request';
|
|
301
302
|
import { BusinessObjectIDType } from '@colijnit/ioneconnector/build/type/business-object-id-type';
|
|
302
303
|
import { RelationKind as RelationKind$1 } from '@colijnit/articleapi/build/enum/relation-kind.enum';
|
|
303
304
|
import { Relation } from '@colijnit/relationapi/build/model/relation.bo';
|
|
@@ -365,6 +366,7 @@ import { PlanningTask } from '@colijnit/transactionapi/build/model/planning-task
|
|
|
365
366
|
import { LayoutCode as LayoutCode$1 } from '@colijnit/mainapi/build/enum/layout-code.enum';
|
|
366
367
|
import { SearchType } from '@colijnit/transactionapi/build/enum/search-type.enum';
|
|
367
368
|
import { QuantityInHistoricState } from '@colijnit/transactionapi/build/enum/quantity-in-historic-state.enum';
|
|
369
|
+
import { ExtraDocValues } from '@colijnit/transactionapi/build/enum/extra-doc-values.enum';
|
|
368
370
|
import { LogisticStickerRequest } from '@colijnit/transactionapi/build/model/logistic-sticker-request';
|
|
369
371
|
import { Payment } from '@colijnit/transactionapi/build/model/payment.bo';
|
|
370
372
|
import { WorkflowCategoryType } from '@colijnit/mainapi/build/enum/workflow-category.enum';
|
|
@@ -1333,6 +1335,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1333
1335
|
getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]>;
|
|
1334
1336
|
insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void>;
|
|
1335
1337
|
changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse>;
|
|
1338
|
+
changeHeaderExtraDoc(request: ChangeHeaderExtraDocRequest): Promise<TransactionInfoResponse>;
|
|
1336
1339
|
pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest, localPrint: boolean): Promise<boolean>;
|
|
1337
1340
|
pdfHistoricPosReceipt(pdfHistoricPosReceiptRequest: PdfHistoricPosReceiptRequest, localPrint: boolean): Promise<boolean>;
|
|
1338
1341
|
printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean>;
|
|
@@ -1841,6 +1844,7 @@ declare class TransactionConnectorService {
|
|
|
1841
1844
|
getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]>;
|
|
1842
1845
|
insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void>;
|
|
1843
1846
|
changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse>;
|
|
1847
|
+
changeHeaderExtraDoc(request: ChangeHeaderExtraDocRequest): Promise<TransactionInfoResponse>;
|
|
1844
1848
|
pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest, localPrint: boolean): Promise<boolean>;
|
|
1845
1849
|
pdfHistoricPosReceipt(pdfHistoricPosReceiptRequest: PdfHistoricPosReceiptRequest, localPrint: boolean): Promise<boolean>;
|
|
1846
1850
|
printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean>;
|
|
@@ -2733,6 +2737,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2733
2737
|
getDropshipmentInfosByRelationId(relationId: number): Promise<DropshipmentInfo[]>;
|
|
2734
2738
|
insertNewDropshipmentInfo(request: DropshipmentInfo): Promise<void>;
|
|
2735
2739
|
changeHeaderDropshipmentInfo(request: ChangeHeaderDropshipmentInfoRequest): Promise<TransactionInfoResponse>;
|
|
2740
|
+
changeHeaderExtraDoc(request: ChangeHeaderExtraDocRequest, saveTransaction: boolean): Promise<boolean>;
|
|
2736
2741
|
pdfPosReceipt(pdfPosReceiptRequest: PdfPosReceiptRequest, localPrint?: boolean): Promise<boolean>;
|
|
2737
2742
|
pdfHistoricPosReceipt(pdfHistoricPosReceiptRequest: PdfHistoricPosReceiptRequest, localPrint?: boolean): Promise<boolean>;
|
|
2738
2743
|
printPosReceipt(printPosReceiptRequest: PrintPosReceiptRequest): Promise<boolean>;
|
|
@@ -4775,7 +4780,9 @@ declare class TransactionMappingService {
|
|
|
4775
4780
|
private _cardConfig;
|
|
4776
4781
|
private _sidePanelConfig;
|
|
4777
4782
|
private _quickAccessConfig;
|
|
4783
|
+
private _handledByDescription;
|
|
4778
4784
|
constructor(_buttonBarConfig: TransactionButtonBarMappingConfig, _filterConfig: TransactionFilterMappingConfig, _searchConfig: TransactionSearchMappingConfig, _lineConfig: TransactionLineMappingConfig, _cardConfig: TransactionCardMappingConfig, _sidePanelConfig: TransactionSidePanelMappingConfig, _quickAccessConfig: TransactionQuickAccessMappingConfig);
|
|
4785
|
+
getHandledByDescription(type: TransactionKind): string;
|
|
4779
4786
|
getButtonBar(type: TransactionKind): TransactionBarButton[];
|
|
4780
4787
|
getSidePanelComponent(type: TransactionKind): any;
|
|
4781
4788
|
getQuickAccessComponent(type: TransactionKind, category: TransactionTypeCategory): any;
|
|
@@ -7331,6 +7338,7 @@ declare class DialogCatalogComponent implements OnInit, OnDestroy {
|
|
|
7331
7338
|
transaction: TransactionInfoResponse;
|
|
7332
7339
|
isReturn: boolean;
|
|
7333
7340
|
showRelatedProductsPopup: boolean;
|
|
7341
|
+
searchPresetsCatalogTemplate: TemplateRef<any>;
|
|
7334
7342
|
closeClick: EventEmitter<MouseEvent>;
|
|
7335
7343
|
articleClicked: EventEmitter<ArticleExtended>;
|
|
7336
7344
|
iFrameFeedback: EventEmitter<{
|
|
@@ -7399,7 +7407,7 @@ declare class DialogCatalogComponent implements OnInit, OnDestroy {
|
|
|
7399
7407
|
private buildExternalCatalogRequest;
|
|
7400
7408
|
private expandExternalCatalogRequestIfNeeded;
|
|
7401
7409
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogCatalogComponent, never>;
|
|
7402
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DialogCatalogComponent, "co-dialog-catalog", never, { "handleAddArticleInternally": { "alias": "handleAddArticleInternally"; "required": false; }; "options": { "alias": "options"; "required": false; }; "parameters": { "alias": "parameters"; "required": false; }; "showNavigation": { "alias": "showNavigation"; "required": false; }; "returnArticleOnTileClick": { "alias": "returnArticleOnTileClick"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "isReturn": { "alias": "isReturn"; "required": false; }; "showRelatedProductsPopup": { "alias": "showRelatedProductsPopup"; "required": false; }; }, { "closeClick": "closeClick"; "articleClicked": "articleClicked"; "iFrameFeedback": "iFrameFeedback"; "addArticleClicked": "addArticleClicked"; "addCatFarmArticleClicked": "addCatFarmArticleClicked"; "addExternalArticleClicked": "addExternalArticleClicked"; }, never, never, false, never>;
|
|
7410
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogCatalogComponent, "co-dialog-catalog", never, { "handleAddArticleInternally": { "alias": "handleAddArticleInternally"; "required": false; }; "options": { "alias": "options"; "required": false; }; "parameters": { "alias": "parameters"; "required": false; }; "showNavigation": { "alias": "showNavigation"; "required": false; }; "returnArticleOnTileClick": { "alias": "returnArticleOnTileClick"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "isReturn": { "alias": "isReturn"; "required": false; }; "showRelatedProductsPopup": { "alias": "showRelatedProductsPopup"; "required": false; }; "searchPresetsCatalogTemplate": { "alias": "searchPresetsCatalogTemplate"; "required": false; }; }, { "closeClick": "closeClick"; "articleClicked": "articleClicked"; "iFrameFeedback": "iFrameFeedback"; "addArticleClicked": "addArticleClicked"; "addCatFarmArticleClicked": "addCatFarmArticleClicked"; "addExternalArticleClicked": "addExternalArticleClicked"; }, never, never, false, never>;
|
|
7403
7411
|
}
|
|
7404
7412
|
|
|
7405
7413
|
declare class DialogCatalogModule {
|
|
@@ -7678,12 +7686,16 @@ declare class AvatarComponent implements OnInit {
|
|
|
7678
7686
|
get image(): CoDocument;
|
|
7679
7687
|
set relationId(value: number);
|
|
7680
7688
|
get relationId(): number;
|
|
7689
|
+
tooltipTitle: string;
|
|
7681
7690
|
set relation(value: RelationListObject);
|
|
7682
7691
|
get relation(): RelationListObject;
|
|
7683
|
-
|
|
7692
|
+
showRelationNr: boolean;
|
|
7684
7693
|
showClass(): boolean;
|
|
7685
|
-
imageSrc: string;
|
|
7686
7694
|
backgroundColor: string;
|
|
7695
|
+
imageSrc: string;
|
|
7696
|
+
relationName: string;
|
|
7697
|
+
tooltip: string;
|
|
7698
|
+
initialsFontSize: number;
|
|
7687
7699
|
set initials(value: string);
|
|
7688
7700
|
get initials(): string;
|
|
7689
7701
|
private _initials;
|
|
@@ -7698,14 +7710,24 @@ declare class AvatarComponent implements OnInit {
|
|
|
7698
7710
|
private _setRelationInitials;
|
|
7699
7711
|
private _getImageContent;
|
|
7700
7712
|
private _setBackgroundColor;
|
|
7713
|
+
private _handleRelationSet;
|
|
7714
|
+
/**
|
|
7715
|
+
* Returns the font size (in SVG user units) at which the initials still fit inside the round avatar.
|
|
7716
|
+
*
|
|
7717
|
+
* The widest text that fits a circle depends on how tall that text is: for a centred single line with cap height
|
|
7718
|
+
* `h` the usable chord is `2 * sqrt(r^2 - (h / 2)^2)`. Estimating the text width as
|
|
7719
|
+
* `length * AVATAR_GLYPH_ADVANCE_RATIO * fontSize` and the cap height as `AVATAR_CAP_HEIGHT_RATIO * fontSize` and solving for the
|
|
7720
|
+
* font size gives the expression below, capped at `AVATAR_MAX_FONT_SIZE` so short initials keep their normal size.
|
|
7721
|
+
*/
|
|
7722
|
+
private _calculateFontSize;
|
|
7701
7723
|
private _detectChanges;
|
|
7702
7724
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
7703
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "co-avatar", never, { "image": { "alias": "image"; "required": false; }; "relationId": { "alias": "relationId"; "required": false; }; "relation": { "alias": "relation"; "required": false; }; "
|
|
7725
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "co-avatar", never, { "image": { "alias": "image"; "required": false; }; "relationId": { "alias": "relationId"; "required": false; }; "tooltipTitle": { "alias": "tooltipTitle"; "required": false; }; "relation": { "alias": "relation"; "required": false; }; "showRelationNr": { "alias": "showRelationNr"; "required": false; }; }, {}, never, never, false, never>;
|
|
7704
7726
|
}
|
|
7705
7727
|
|
|
7706
7728
|
declare class AvatarModule {
|
|
7707
7729
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarModule, never>;
|
|
7708
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AvatarModule, [typeof AvatarComponent], [typeof i2.CommonModule, typeof CoreModule], [typeof AvatarComponent]>;
|
|
7730
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AvatarModule, [typeof AvatarComponent], [typeof i2.CommonModule, typeof CoreModule, typeof i3.TooltipDirectiveModule], [typeof AvatarComponent]>;
|
|
7709
7731
|
static ɵinj: i0.ɵɵInjectorDeclaration<AvatarModule>;
|
|
7710
7732
|
}
|
|
7711
7733
|
|
|
@@ -14183,6 +14205,7 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
14183
14205
|
private _transactionPlanning;
|
|
14184
14206
|
customerPortal: boolean;
|
|
14185
14207
|
resetActiveRubric: boolean;
|
|
14208
|
+
searchPresetsCatalogTemplate: TemplateRef<any>;
|
|
14186
14209
|
serviceRequested: EventEmitter<{
|
|
14187
14210
|
transactionNr: number;
|
|
14188
14211
|
transactionId: number;
|
|
@@ -14291,7 +14314,7 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
14291
14314
|
private _commitTransactionSalesPerson;
|
|
14292
14315
|
private _fetchPlanOrderIfNeeded;
|
|
14293
14316
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInternalComponent, never>;
|
|
14294
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInternalComponent, "co-transaction-internal", never, { "confirmationAnalysisId": { "alias": "confirmationAnalysisId"; "required": false; }; "posOrderData": { "alias": "posOrderData"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showViewModeButtons": { "alias": "showViewModeButtons"; "required": false; }; "transactionPlanning": { "alias": "transactionPlanning"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "resetActiveRubric": { "alias": "resetActiveRubric"; "required": false; }; "showQuickAccess": { "alias": "showQuickAccess"; "required": false; }; "showButtonBar": { "alias": "showButtonBar"; "required": false; }; }, { "serviceRequested": "serviceRequested"; }, never, never, false, never>;
|
|
14317
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInternalComponent, "co-transaction-internal", never, { "confirmationAnalysisId": { "alias": "confirmationAnalysisId"; "required": false; }; "posOrderData": { "alias": "posOrderData"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showViewModeButtons": { "alias": "showViewModeButtons"; "required": false; }; "transactionPlanning": { "alias": "transactionPlanning"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "resetActiveRubric": { "alias": "resetActiveRubric"; "required": false; }; "searchPresetsCatalogTemplate": { "alias": "searchPresetsCatalogTemplate"; "required": false; }; "showQuickAccess": { "alias": "showQuickAccess"; "required": false; }; "showButtonBar": { "alias": "showButtonBar"; "required": false; }; }, { "serviceRequested": "serviceRequested"; }, never, never, false, never>;
|
|
14295
14318
|
}
|
|
14296
14319
|
|
|
14297
14320
|
declare class TransactionSalesReservationPopupComponent implements OnInit {
|
|
@@ -14742,6 +14765,7 @@ declare class TransactionQuickAccessOverviewModule {
|
|
|
14742
14765
|
}
|
|
14743
14766
|
|
|
14744
14767
|
declare class TransactionQuickAccessOrderDeliveryComponent extends TransactionQuickAccessSendMethodBaseComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
14768
|
+
protected readonly ExtraDocValues: typeof ExtraDocValues;
|
|
14745
14769
|
showClass(): boolean;
|
|
14746
14770
|
reportDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
|
|
14747
14771
|
reportDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
|
|
@@ -14756,6 +14780,7 @@ declare class TransactionQuickAccessOrderDeliveryComponent extends TransactionQu
|
|
|
14756
14780
|
ngAfterViewInit(): void;
|
|
14757
14781
|
ngOnDestroy(): void;
|
|
14758
14782
|
handleSelectAllLines(value: boolean): void;
|
|
14783
|
+
handleNoDeliveryNoteChanged(value: boolean): Promise<void>;
|
|
14759
14784
|
protected getDefaultEmailAddressList(): Promise<string[]>;
|
|
14760
14785
|
protected getDefaultSendMethod(): Promise<number>;
|
|
14761
14786
|
protected getEmailLayouts(): Promise<ReportLayoutSelectionEmail[]>;
|
|
@@ -15827,6 +15852,7 @@ declare class AddProductComponent implements OnInit {
|
|
|
15827
15852
|
private _changeDetector;
|
|
15828
15853
|
readonly icons: typeof Icon;
|
|
15829
15854
|
handleAddArticleInternally: boolean;
|
|
15855
|
+
searchPresetsCatalogTemplate: TemplateRef<any>;
|
|
15830
15856
|
addArticle: EventEmitter<AddArticleInterface>;
|
|
15831
15857
|
inputSearchText: InputScannerComponent;
|
|
15832
15858
|
showClass(): boolean;
|
|
@@ -15878,7 +15904,7 @@ declare class AddProductComponent implements OnInit {
|
|
|
15878
15904
|
}): Promise<void>;
|
|
15879
15905
|
private _prepareCatalogRequest;
|
|
15880
15906
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddProductComponent, never>;
|
|
15881
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddProductComponent, "co-add-product", never, { "handleAddArticleInternally": { "alias": "handleAddArticleInternally"; "required": false; }; }, { "addArticle": "addArticle"; }, never, never, false, never>;
|
|
15907
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddProductComponent, "co-add-product", never, { "handleAddArticleInternally": { "alias": "handleAddArticleInternally"; "required": false; }; "searchPresetsCatalogTemplate": { "alias": "searchPresetsCatalogTemplate"; "required": false; }; }, { "addArticle": "addArticle"; }, never, never, false, never>;
|
|
15882
15908
|
}
|
|
15883
15909
|
|
|
15884
15910
|
declare class AddProductModule {
|
|
@@ -16347,7 +16373,7 @@ declare class TransactionServiceOverviewComponent extends TransactionHeaderBaseC
|
|
|
16347
16373
|
protected changeDetector: ChangeDetectorRef;
|
|
16348
16374
|
private _dialogService;
|
|
16349
16375
|
readonly TableName: typeof TableName;
|
|
16350
|
-
readonly WorkflowCategoryType:
|
|
16376
|
+
readonly WorkflowCategoryType: typeof WorkflowCategoryType;
|
|
16351
16377
|
readonly cfgNames: typeof TransactionCfgName;
|
|
16352
16378
|
openActivities: ComponentActivityListComponent;
|
|
16353
16379
|
activityTimeline: ActivityTimelineComponent;
|
|
@@ -16769,7 +16795,9 @@ declare class TransactionSalesPersonInputModule {
|
|
|
16769
16795
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionSalesPersonInputModule>;
|
|
16770
16796
|
}
|
|
16771
16797
|
|
|
16772
|
-
declare class TransactionHeaderHandledByComponent implements ScreenConfigAdapterComponent {
|
|
16798
|
+
declare class TransactionHeaderHandledByComponent implements ScreenConfigAdapterComponent, OnInit {
|
|
16799
|
+
private _mappingService;
|
|
16800
|
+
private _dictionary;
|
|
16773
16801
|
transaction: TransactionInfoResponse;
|
|
16774
16802
|
showClass(): boolean;
|
|
16775
16803
|
objectConfigName: string;
|
|
@@ -16780,13 +16808,18 @@ declare class TransactionHeaderHandledByComponent implements ScreenConfigAdapter
|
|
|
16780
16808
|
maxLength: number;
|
|
16781
16809
|
decimals: number;
|
|
16782
16810
|
redErrorBackground: boolean;
|
|
16811
|
+
relationName: string;
|
|
16812
|
+
handledByDescription: string;
|
|
16813
|
+
tooltip: string;
|
|
16814
|
+
constructor(_mappingService: TransactionMappingService, _dictionary: DictionaryService);
|
|
16815
|
+
ngOnInit(): void;
|
|
16783
16816
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderHandledByComponent, never>;
|
|
16784
16817
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderHandledByComponent, "co-transaction-header-handled-by", never, { "transaction": { "alias": "transaction"; "required": false; }; }, {}, never, never, false, never>;
|
|
16785
16818
|
}
|
|
16786
16819
|
|
|
16787
16820
|
declare class TransactionHeaderHandledByModule {
|
|
16788
16821
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderHandledByModule, never>;
|
|
16789
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderHandledByModule, [typeof TransactionHeaderHandledByComponent], [typeof i2.CommonModule, typeof AvatarModule], [typeof TransactionHeaderHandledByComponent]>;
|
|
16822
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderHandledByModule, [typeof TransactionHeaderHandledByComponent], [typeof i2.CommonModule, typeof AvatarModule, typeof i3.TooltipDirectiveModule], [typeof TransactionHeaderHandledByComponent]>;
|
|
16790
16823
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderHandledByModule>;
|
|
16791
16824
|
}
|
|
16792
16825
|
|
|
@@ -16933,6 +16966,7 @@ declare class TransactionComponent implements OnChanges {
|
|
|
16933
16966
|
transactionPlanning: boolean;
|
|
16934
16967
|
customerPortal: boolean;
|
|
16935
16968
|
resetActiveRubric: boolean;
|
|
16969
|
+
searchPresetsCatalogTemplate: TemplateRef<any>;
|
|
16936
16970
|
serviceRequested: EventEmitter<{
|
|
16937
16971
|
transactionNr: number;
|
|
16938
16972
|
transactionId: number;
|
|
@@ -16952,7 +16986,7 @@ declare class TransactionComponent implements OnChanges {
|
|
|
16952
16986
|
private _getTransaction;
|
|
16953
16987
|
private _prepareHeader;
|
|
16954
16988
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionComponent, never>;
|
|
16955
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionComponent, "co-transaction", never, { "confirmationAnalysisId": { "alias": "confirmationAnalysisId"; "required": false; }; "posOrderData": { "alias": "posOrderData"; "required": false; }; "transactionKind": { "alias": "transactionKind"; "required": false; }; "transactionNr": { "alias": "transactionNr"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showViewModeButtons": { "alias": "showViewModeButtons"; "required": false; }; "showQuickAccess": { "alias": "showQuickAccess"; "required": false; }; "showButtonBar": { "alias": "showButtonBar"; "required": false; }; "saveIconData": { "alias": "saveIconData"; "required": false; }; "cancelIconData": { "alias": "cancelIconData"; "required": false; }; "showSaveCancelLabels": { "alias": "showSaveCancelLabels"; "required": false; }; "saveCancelMovable": { "alias": "saveCancelMovable"; "required": false; }; "transactionPlanning": { "alias": "transactionPlanning"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "resetActiveRubric": { "alias": "resetActiveRubric"; "required": false; }; }, { "serviceRequested": "serviceRequested"; }, never, never, false, never>;
|
|
16989
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionComponent, "co-transaction", never, { "confirmationAnalysisId": { "alias": "confirmationAnalysisId"; "required": false; }; "posOrderData": { "alias": "posOrderData"; "required": false; }; "transactionKind": { "alias": "transactionKind"; "required": false; }; "transactionNr": { "alias": "transactionNr"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showViewModeButtons": { "alias": "showViewModeButtons"; "required": false; }; "showQuickAccess": { "alias": "showQuickAccess"; "required": false; }; "showButtonBar": { "alias": "showButtonBar"; "required": false; }; "saveIconData": { "alias": "saveIconData"; "required": false; }; "cancelIconData": { "alias": "cancelIconData"; "required": false; }; "showSaveCancelLabels": { "alias": "showSaveCancelLabels"; "required": false; }; "saveCancelMovable": { "alias": "saveCancelMovable"; "required": false; }; "transactionPlanning": { "alias": "transactionPlanning"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "resetActiveRubric": { "alias": "resetActiveRubric"; "required": false; }; "searchPresetsCatalogTemplate": { "alias": "searchPresetsCatalogTemplate"; "required": false; }; }, { "serviceRequested": "serviceRequested"; }, never, never, false, never>;
|
|
16956
16990
|
}
|
|
16957
16991
|
|
|
16958
16992
|
declare class TransactionCashRegisterOrderReceiptDialogComponent extends TransactionHeaderBaseComponent implements OnInit {
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
@include export-module('co-transaction-quick-access-order-delivery-layout') {
|
|
2
2
|
.co-transaction-quick-access-order-delivery {
|
|
3
|
-
.
|
|
3
|
+
.quick-access-content-wrapper {
|
|
4
4
|
display: flex;
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
row-gap: 10px;
|
|
6
|
+
align-items: start;
|
|
7
|
+
flex-direction: column;
|
|
7
8
|
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
.sub-section {
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
flex-direction: row;
|
|
13
|
+
column-gap: 10px;
|
|
14
|
+
}
|
|
10
15
|
}
|
|
11
16
|
}
|
|
12
17
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "300.1.
|
|
3
|
+
"version": "300.1.20",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"@colijnit/catalog": ">=300.1.0",
|
|
14
14
|
"@colijnit/corecomponents_v12": ">=300.1.4",
|
|
15
15
|
"@colijnit/ioneconnector": ">=300.1.0",
|
|
16
|
-
"@colijnit/mainapi": ">=300.1.
|
|
16
|
+
"@colijnit/mainapi": ">=300.1.11",
|
|
17
17
|
"@colijnit/product": ">=300.1.0",
|
|
18
18
|
"@colijnit/relation": ">=300.1.0",
|
|
19
19
|
"@colijnit/relationapi": ">=300.1.1",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
|
-
"@colijnit/sharedcomponents": ">=300.1.
|
|
22
|
-
"@colijnit/transactionapi": ">=300.1.
|
|
21
|
+
"@colijnit/sharedcomponents": ">=300.1.13",
|
|
22
|
+
"@colijnit/transactionapi": ">=300.1.11"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.8.1"
|