@colijnit/transaction 261.20.47 → 261.20.49
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 +588 -310
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +55 -11
- package/lib/component/checkout/checkout-overview-relation-edit/style/material.scss +0 -1
- package/lib/component/relation/relation-addresses/style/_layout.scss +0 -4
- package/lib/component/transaction-header/transaction-header-delivery/style/_layout.scss +0 -4
- package/lib/component/transaction-header/transaction-header-popup/style/_layout.scss +0 -5
- package/lib/component/transaction-header/transaction-header-relation/style/_layout.scss +0 -4
- package/lib/component/transaction-header/transaction-header-relation/style/material.scss +0 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -3269,6 +3269,7 @@ declare class TransactionPaymentService implements OnDestroy {
|
|
|
3269
3269
|
private _clearInterval;
|
|
3270
3270
|
private _dataUriToBase64;
|
|
3271
3271
|
private _setCashDrawerIdIfValidDrawer;
|
|
3272
|
+
private _triggerCalculateAmountToPay;
|
|
3272
3273
|
private _handleCashLimitCheck;
|
|
3273
3274
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPaymentService, never>;
|
|
3274
3275
|
static ɵprov: i0.ɵɵInjectableDeclaration<TransactionPaymentService>;
|
|
@@ -3972,6 +3973,7 @@ declare enum TransactionCfgName {
|
|
|
3972
3973
|
DiscountAmount = "discountAmount",
|
|
3973
3974
|
DiscountTransTotal = "discountTransTotal",
|
|
3974
3975
|
DiscountRedistributeButton = "discountRedistributeBtn",
|
|
3976
|
+
TransactionDiscountReason = "transactionDiscountReason",
|
|
3975
3977
|
Definitive = "definitive",
|
|
3976
3978
|
OnHoldCodes = "onHoldCodes",
|
|
3977
3979
|
Branch = "branch",
|
|
@@ -6219,6 +6221,7 @@ declare class DiscountCodesPopupComponent implements OnInit {
|
|
|
6219
6221
|
discountCodes: DiscountCode[];
|
|
6220
6222
|
selectedDiscountCode: DiscountCode;
|
|
6221
6223
|
discountRemark: string;
|
|
6224
|
+
readonly cfgNames: typeof TransactionCfgName;
|
|
6222
6225
|
readonly icons: typeof Icon;
|
|
6223
6226
|
constructor(iconCacheService: IconCacheService, transactionService: TransactionService);
|
|
6224
6227
|
ngOnInit(): void;
|
|
@@ -6371,7 +6374,7 @@ declare class RelationAddressesComponent extends RelationBaseComponent implement
|
|
|
6371
6374
|
|
|
6372
6375
|
declare class RelationAddressesModule {
|
|
6373
6376
|
static ɵfac: i0.ɵɵFactoryDeclaration<RelationAddressesModule, never>;
|
|
6374
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RelationAddressesModule, [typeof RelationAddressesComponent], [typeof i2.CommonModule, typeof
|
|
6377
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RelationAddressesModule, [typeof RelationAddressesComponent], [typeof i2.CommonModule, typeof RelationAddressTileModule, typeof CoreModule, typeof PipeModule, typeof i3.CoDialogModule, typeof RelationAddressModule, typeof i3.FormModule, typeof i3.ButtonModule, typeof i3.CarouselModule, typeof i3.FilterPipeModule], [typeof RelationAddressesComponent]>;
|
|
6375
6378
|
static ɵinj: i0.ɵɵInjectorDeclaration<RelationAddressesModule>;
|
|
6376
6379
|
}
|
|
6377
6380
|
|
|
@@ -6829,7 +6832,7 @@ declare class DeliveryTypeTileModule {
|
|
|
6829
6832
|
|
|
6830
6833
|
declare class TransactionHeaderDeliveryMethodModule {
|
|
6831
6834
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderDeliveryMethodModule, never>;
|
|
6832
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderDeliveryMethodModule, [typeof TransactionHeaderDeliveryMethodComponent], [typeof i2.CommonModule, typeof PipeModule, typeof
|
|
6835
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderDeliveryMethodModule, [typeof TransactionHeaderDeliveryMethodComponent], [typeof i2.CommonModule, typeof PipeModule, typeof DeliveryTypeTileModule, typeof i3.InputCheckboxModule, typeof TransactionLineCheckboxModule, typeof i3.CarouselModule, typeof i3.TooltipDirectiveModule], [typeof TransactionHeaderDeliveryMethodComponent]>;
|
|
6833
6836
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderDeliveryMethodModule>;
|
|
6834
6837
|
}
|
|
6835
6838
|
|
|
@@ -7592,6 +7595,7 @@ declare class TransactionSearchSalesLineSelectTileComponent extends TransactionS
|
|
|
7592
7595
|
showClass(): boolean;
|
|
7593
7596
|
extendedTransactionSearch: boolean;
|
|
7594
7597
|
returnWizardLayout: boolean;
|
|
7598
|
+
customerPortal: boolean;
|
|
7595
7599
|
lineClicked: EventEmitter<TransactionLineSearchIndex>;
|
|
7596
7600
|
transactionClick: EventEmitter<TransactionSearchView>;
|
|
7597
7601
|
lines: TransactionLineSearchIndex[];
|
|
@@ -7603,7 +7607,7 @@ declare class TransactionSearchSalesLineSelectTileComponent extends TransactionS
|
|
|
7603
7607
|
getPriorityLabel(priority?: PriorityType): string;
|
|
7604
7608
|
showOrderLabel(): string;
|
|
7605
7609
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionSearchSalesLineSelectTileComponent, never>;
|
|
7606
|
-
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>;
|
|
7610
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchSalesLineSelectTileComponent, "co-transaction-search-sales-line-select-tile", never, { "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; "returnWizardLayout": { "alias": "returnWizardLayout"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; }, { "lineClicked": "lineClicked"; "transactionClick": "transactionClick"; }, never, never, false, never>;
|
|
7607
7611
|
}
|
|
7608
7612
|
|
|
7609
7613
|
declare class TransactionLineStatusbarComponent extends TransactionLineBaseComponent {
|
|
@@ -7641,6 +7645,7 @@ declare class TransactionLineTileComponent {
|
|
|
7641
7645
|
transactionService: TransactionService;
|
|
7642
7646
|
private _changeDetector;
|
|
7643
7647
|
private imageService;
|
|
7648
|
+
customerPortal: boolean;
|
|
7644
7649
|
line: TransactionLineSearchIndex;
|
|
7645
7650
|
set showPriceAmount(value: boolean);
|
|
7646
7651
|
get showPriceAmount(): boolean;
|
|
@@ -7650,12 +7655,12 @@ declare class TransactionLineTileComponent {
|
|
|
7650
7655
|
handleVisibilityChange(visible: boolean): void;
|
|
7651
7656
|
private _detectChanges;
|
|
7652
7657
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineTileComponent, never>;
|
|
7653
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineTileComponent, "co-transaction-line-tile", never, { "line": { "alias": "line"; "required": false; }; "showPriceAmount": { "alias": "showPriceAmount"; "required": false; }; }, {}, never, never, false, never>;
|
|
7658
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineTileComponent, "co-transaction-line-tile", never, { "customerPortal": { "alias": "customerPortal"; "required": false; }; "line": { "alias": "line"; "required": false; }; "showPriceAmount": { "alias": "showPriceAmount"; "required": false; }; }, {}, never, never, false, never>;
|
|
7654
7659
|
}
|
|
7655
7660
|
|
|
7656
7661
|
declare class TransactionLineTileModule {
|
|
7657
7662
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineTileModule, never>;
|
|
7658
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineTileModule, [typeof TransactionLineTileComponent], [typeof CoreModule, typeof i3.ObserveVisibilityModule, typeof i3.CoCurrencyPipeModule, typeof TransactionLineDescriptionModule], [typeof TransactionLineTileComponent]>;
|
|
7663
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineTileModule, [typeof TransactionLineTileComponent], [typeof CoreModule, typeof i3.ObserveVisibilityModule, typeof i3.CoCurrencyPipeModule, typeof TransactionLineDescriptionModule, typeof PipeModule, typeof i2.DatePipe], [typeof TransactionLineTileComponent]>;
|
|
7659
7664
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineTileModule>;
|
|
7660
7665
|
}
|
|
7661
7666
|
|
|
@@ -12393,6 +12398,11 @@ declare class TransactionPurchaseOrderFilterContentOrderComponent extends Transa
|
|
|
12393
12398
|
text: any;
|
|
12394
12399
|
value: any;
|
|
12395
12400
|
};
|
|
12401
|
+
withOrWithoutLines: FilterItemViewmodel[];
|
|
12402
|
+
withOrWithoutLinesFields: {
|
|
12403
|
+
text: any;
|
|
12404
|
+
value: any;
|
|
12405
|
+
};
|
|
12396
12406
|
transStartDate: Date;
|
|
12397
12407
|
transEndDate: Date;
|
|
12398
12408
|
deliveryStartDate: Date;
|
|
@@ -12410,6 +12420,7 @@ declare class TransactionPurchaseOrderFilterContentOrderComponent extends Transa
|
|
|
12410
12420
|
private _setWorkFlowStatusNames;
|
|
12411
12421
|
private _setAllProjectCodes;
|
|
12412
12422
|
private _setSuppliers;
|
|
12423
|
+
private _setWithOrWithoutLines;
|
|
12413
12424
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPurchaseOrderFilterContentOrderComponent, never>;
|
|
12414
12425
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionPurchaseOrderFilterContentOrderComponent, "co-transaction-purchase-order-filter-content-order", never, {}, {}, never, never, false, never>;
|
|
12415
12426
|
}
|
|
@@ -13732,7 +13743,7 @@ declare class StepperStepModule {
|
|
|
13732
13743
|
|
|
13733
13744
|
declare class CheckoutModule {
|
|
13734
13745
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckoutModule, never>;
|
|
13735
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CheckoutModule, [typeof CheckoutOverviewRelationEditComponent, typeof CheckoutOverviewDeliveryEditComponent, typeof CheckoutOverviewPaymentComponent, typeof CheckoutComponent], [typeof CoreModule, typeof i2.CommonModule, typeof i3.IconModule, typeof i3.InputTextModule, typeof i3.InputCheckboxModule, typeof i3.InputRadioButtonModule, typeof i3.FormModule, typeof i3.InputDatePickerModule, typeof i3.InputNumberPickerModule, typeof i3.CoDialogModule, typeof i3.ButtonModule, typeof i3.PopupModule, typeof i8.ReactiveFormsModule, typeof i8.FormsModule, typeof RelationAddressModule, typeof RelationAddressSelectModule, typeof RelationAddressTileModule, typeof i3.
|
|
13746
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CheckoutModule, [typeof CheckoutOverviewRelationEditComponent, typeof CheckoutOverviewDeliveryEditComponent, typeof CheckoutOverviewPaymentComponent, typeof CheckoutComponent], [typeof CoreModule, typeof i2.CommonModule, typeof i3.IconModule, typeof i3.InputTextModule, typeof i3.InputCheckboxModule, typeof i3.InputRadioButtonModule, typeof i3.FormModule, typeof i3.InputDatePickerModule, typeof i3.InputNumberPickerModule, typeof i3.CoDialogModule, typeof i3.ButtonModule, typeof i3.PopupModule, typeof i8.ReactiveFormsModule, typeof i8.FormsModule, typeof RelationAddressModule, typeof RelationAddressSelectModule, typeof RelationAddressTileModule, typeof i3.InputTextareaModule, typeof PipeModule, typeof StepperModule, typeof ShoppingCartPreviewModule, typeof AvatarModule, typeof DeliveryTypeTileModule, typeof i3.CollapsibleModule, typeof PaymentModule, typeof RelationTypeModule, typeof RelationGeneralModule, typeof RelationAddressesModule, typeof RelationContactDetailsModule, typeof RelationPreferencesModule, typeof TransactionHeaderDeliveryModule, typeof TransactionHeaderPreferredDeliveryDateModule, typeof TransactionHeaderDeliveryDateModule, typeof TransactionHeaderDeliveryMethodModule, typeof TransactionHeaderPartialDeliveryModule, typeof TransactionHeaderDeliveryOptionsModule, typeof TransactionHeaderRemarksModule, typeof TransactionHeaderReferenceModule, typeof TransactionHeaderRelationReferenceModule, typeof TransactionHeaderDepositPercentageModule, typeof TransactionHeaderDepositAmountModule, typeof TransactionHeaderDefinitiveModule, typeof TransactionHeaderBranchModule, typeof TransactionHeaderAdministrativeRelationModule, typeof TransactionHeaderMarketingModule, typeof TransactionHeaderHoldCodesModule, typeof RelationSuggestionsListModule, typeof i3.ScreenConfigurationModule, typeof SuggestionsSidebarModule, typeof i3.ListOfValuesModule, typeof StepperStepModule, typeof TransactionHeaderSalesPersonModule, typeof TransactionHeaderPaymentConditionModule, typeof i3.InputSearchModule], [typeof CheckoutComponent, typeof CheckoutOverviewRelationEditComponent]>;
|
|
13736
13747
|
static ɵinj: i0.ɵɵInjectorDeclaration<CheckoutModule>;
|
|
13737
13748
|
}
|
|
13738
13749
|
|
|
@@ -16813,6 +16824,8 @@ declare class ServiceWizardCreateServiceComponent implements OnInit {
|
|
|
16813
16824
|
buttonsVisible: boolean;
|
|
16814
16825
|
customerPortal: boolean;
|
|
16815
16826
|
slaBtnSelected: EventEmitter<boolean>;
|
|
16827
|
+
portalLineSelected: EventEmitter<boolean>;
|
|
16828
|
+
resetServiceWizard: EventEmitter<void>;
|
|
16816
16829
|
chosenTransactionLine: TransactionLineSearchIndex;
|
|
16817
16830
|
chosenArticle: ArticleExtended;
|
|
16818
16831
|
slaProductName: string;
|
|
@@ -16824,8 +16837,9 @@ declare class ServiceWizardCreateServiceComponent implements OnInit {
|
|
|
16824
16837
|
slaSelected(slaProduct: SLAProduct): void;
|
|
16825
16838
|
transLineChosen(chosenLine: TransactionLineSearchIndex): void;
|
|
16826
16839
|
articleChosen(chosenArticle: ArticleExtended): void;
|
|
16840
|
+
onResetService(): void;
|
|
16827
16841
|
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceWizardCreateServiceComponent, never>;
|
|
16828
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ServiceWizardCreateServiceComponent, "co-service-wizard-create-service", never, { "forceReadonly": { "alias": "forceReadonly"; "required": false; }; "relation": { "alias": "relation"; "required": false; }; "afterSalesSystem": { "alias": "afterSalesSystem"; "required": false; }; "existingTransaction": { "alias": "existingTransaction"; "required": false; }; "existingTransactionLine": { "alias": "existingTransactionLine"; "required": false; }; "buttonsVisible": { "alias": "buttonsVisible"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; }, { "slaBtnSelected": "slaBtnSelected"; }, never, never, false, never>;
|
|
16842
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ServiceWizardCreateServiceComponent, "co-service-wizard-create-service", never, { "forceReadonly": { "alias": "forceReadonly"; "required": false; }; "relation": { "alias": "relation"; "required": false; }; "afterSalesSystem": { "alias": "afterSalesSystem"; "required": false; }; "existingTransaction": { "alias": "existingTransaction"; "required": false; }; "existingTransactionLine": { "alias": "existingTransactionLine"; "required": false; }; "buttonsVisible": { "alias": "buttonsVisible"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; }, { "slaBtnSelected": "slaBtnSelected"; "portalLineSelected": "portalLineSelected"; "resetServiceWizard": "resetServiceWizard"; }, never, never, false, never>;
|
|
16829
16843
|
}
|
|
16830
16844
|
|
|
16831
16845
|
declare class ServiceWizardQuestionsComponent {
|
|
@@ -16861,6 +16875,7 @@ declare class SimpleVerticalStepperComponent extends StepperBaseComponent {
|
|
|
16861
16875
|
stepButtonLabels: string[];
|
|
16862
16876
|
externalSlaBtn: boolean;
|
|
16863
16877
|
afterSalesSystem: boolean;
|
|
16878
|
+
portalBtn: boolean;
|
|
16864
16879
|
set openStep(step: number);
|
|
16865
16880
|
set content(children: any);
|
|
16866
16881
|
private _openStep;
|
|
@@ -16872,7 +16887,7 @@ declare class SimpleVerticalStepperComponent extends StepperBaseComponent {
|
|
|
16872
16887
|
protected validateCurrentStep(nextStep?: number): void;
|
|
16873
16888
|
protected setActive(idx: number): void;
|
|
16874
16889
|
static ɵfac: i0.ɵɵFactoryDeclaration<SimpleVerticalStepperComponent, never>;
|
|
16875
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleVerticalStepperComponent, "co-simple-vertical-stepper", never, { "doNotShowOKOnSteps": { "alias": "doNotShowOKOnSteps"; "required": false; }; "skipSteps": { "alias": "skipSteps"; "required": false; }; "stepButton": { "alias": "stepButton"; "required": false; }; "stepButtonLabels": { "alias": "stepButtonLabels"; "required": false; }; "externalSlaBtn": { "alias": "externalSlaBtn"; "required": false; }; "afterSalesSystem": { "alias": "afterSalesSystem"; "required": false; }; "openStep": { "alias": "openStep"; "required": false; }; }, {}, ["content"], ["*"], false, never>;
|
|
16890
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleVerticalStepperComponent, "co-simple-vertical-stepper", never, { "doNotShowOKOnSteps": { "alias": "doNotShowOKOnSteps"; "required": false; }; "skipSteps": { "alias": "skipSteps"; "required": false; }; "stepButton": { "alias": "stepButton"; "required": false; }; "stepButtonLabels": { "alias": "stepButtonLabels"; "required": false; }; "externalSlaBtn": { "alias": "externalSlaBtn"; "required": false; }; "afterSalesSystem": { "alias": "afterSalesSystem"; "required": false; }; "portalBtn": { "alias": "portalBtn"; "required": false; }; "openStep": { "alias": "openStep"; "required": false; }; }, {}, ["content"], ["*"], false, never>;
|
|
16876
16891
|
}
|
|
16877
16892
|
|
|
16878
16893
|
declare class TransactionCreateWizardComponent implements OnInit, OnDestroy {
|
|
@@ -16909,6 +16924,7 @@ declare class TransactionCreateWizardComponent implements OnInit, OnDestroy {
|
|
|
16909
16924
|
buttonsVisible: boolean;
|
|
16910
16925
|
openStep: number;
|
|
16911
16926
|
slaBtnSelected: boolean;
|
|
16927
|
+
portalBtnSelected: boolean;
|
|
16912
16928
|
private _branch;
|
|
16913
16929
|
private _externallyProvidedTransaction;
|
|
16914
16930
|
private _externallyProvidedLineNr;
|
|
@@ -16925,7 +16941,9 @@ declare class TransactionCreateWizardComponent implements OnInit, OnDestroy {
|
|
|
16925
16941
|
wizardFinished(): Promise<void>;
|
|
16926
16942
|
skipWizard(): void;
|
|
16927
16943
|
resetWizard(): void;
|
|
16944
|
+
resetService(): void;
|
|
16928
16945
|
onSlaButtonChange(selected: boolean): void;
|
|
16946
|
+
onPortalButtonChange(selected: boolean): void;
|
|
16929
16947
|
private _initNewRelation;
|
|
16930
16948
|
private _validateForArticleTransaction;
|
|
16931
16949
|
private _processExternalSettings;
|
|
@@ -17045,9 +17063,11 @@ declare class ServiceWizardArtOrTransComponent implements OnInit {
|
|
|
17045
17063
|
articleChosen: EventEmitter<ArticleExtended>;
|
|
17046
17064
|
oldOrderIdChange: EventEmitter<string>;
|
|
17047
17065
|
oldGoodIdChange: EventEmitter<string>;
|
|
17066
|
+
resetServiceWizard: EventEmitter<void>;
|
|
17048
17067
|
createViaTransLine: boolean;
|
|
17049
17068
|
createViaProduct: boolean;
|
|
17050
17069
|
createViaOldTrans: boolean;
|
|
17070
|
+
showCustomerPortalSearchBundle: boolean;
|
|
17051
17071
|
showTransLinePopup: boolean;
|
|
17052
17072
|
set chosenTransactionLine(response: TransactionLineSearchIndex);
|
|
17053
17073
|
get chosenTransactionLine(): TransactionLineSearchIndex;
|
|
@@ -17068,15 +17088,39 @@ declare class ServiceWizardArtOrTransComponent implements OnInit {
|
|
|
17068
17088
|
openTransactionPopUp(): void;
|
|
17069
17089
|
closeTransactionPopup(): void;
|
|
17070
17090
|
handleCatalogArticleClick(article: ArticleExtended): void;
|
|
17071
|
-
|
|
17091
|
+
handleTransactionLineClick(line: TransactionLineSearchIndex): void;
|
|
17072
17092
|
createOrderWithTransactionLineClicked(openSearch?: boolean): void;
|
|
17073
17093
|
createOrderWithArticleClicked(): void;
|
|
17074
17094
|
createOrderFromOldTrans(): void;
|
|
17095
|
+
chooseOtherProduct(): void;
|
|
17075
17096
|
private _prepareCatalogRequest;
|
|
17076
17097
|
private setTransactionLabel;
|
|
17077
17098
|
private setTransactionLineImage;
|
|
17078
17099
|
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceWizardArtOrTransComponent, never>;
|
|
17079
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ServiceWizardArtOrTransComponent, "co-service-wizard-art-or-trans", never, { "forceReadonly": { "alias": "forceReadonly"; "required": false; }; "relation": { "alias": "relation"; "required": false; }; "oldOrderId": { "alias": "oldOrderId"; "required": false; }; "oldGoodId": { "alias": "oldGoodId"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "existingTransaction": { "alias": "existingTransaction"; "required": false; }; "existingTransactionLine": { "alias": "existingTransactionLine"; "required": false; }; "buttonsVisible": { "alias": "buttonsVisible"; "required": false; }; }, { "transLineChosen": "transLineChosen"; "articleChosen": "articleChosen"; "oldOrderIdChange": "oldOrderIdChange"; "oldGoodIdChange": "oldGoodIdChange"; }, never, never, false, never>;
|
|
17100
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ServiceWizardArtOrTransComponent, "co-service-wizard-art-or-trans", never, { "forceReadonly": { "alias": "forceReadonly"; "required": false; }; "relation": { "alias": "relation"; "required": false; }; "oldOrderId": { "alias": "oldOrderId"; "required": false; }; "oldGoodId": { "alias": "oldGoodId"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "existingTransaction": { "alias": "existingTransaction"; "required": false; }; "existingTransactionLine": { "alias": "existingTransactionLine"; "required": false; }; "buttonsVisible": { "alias": "buttonsVisible"; "required": false; }; }, { "transLineChosen": "transLineChosen"; "articleChosen": "articleChosen"; "oldOrderIdChange": "oldOrderIdChange"; "oldGoodIdChange": "oldGoodIdChange"; "resetServiceWizard": "resetServiceWizard"; }, never, never, false, never>;
|
|
17101
|
+
}
|
|
17102
|
+
|
|
17103
|
+
declare class ServiceWizardSearchBundleComponent implements OnInit, OnDestroy {
|
|
17104
|
+
transactionSearchService: TransactionSearchService;
|
|
17105
|
+
iconCacheService: IconCacheService;
|
|
17106
|
+
readonly icons: typeof Icon;
|
|
17107
|
+
placeholder: string;
|
|
17108
|
+
set relation(value: Relation);
|
|
17109
|
+
filterIconClick: EventEmitter<void>;
|
|
17110
|
+
closeClick: EventEmitter<void>;
|
|
17111
|
+
lineClicked: EventEmitter<TransactionLineSearchIndex>;
|
|
17112
|
+
showClass(): boolean;
|
|
17113
|
+
showFilters: boolean;
|
|
17114
|
+
constructor(transactionSearchService: TransactionSearchService, iconCacheService: IconCacheService);
|
|
17115
|
+
ngOnInit(): Promise<void>;
|
|
17116
|
+
ngOnDestroy(): void;
|
|
17117
|
+
onPeriodChange(): Promise<void>;
|
|
17118
|
+
readMore(): Promise<void>;
|
|
17119
|
+
get hasMoreTransactions(): boolean;
|
|
17120
|
+
transLineClicked(line: TransactionLineSearchIndex): void;
|
|
17121
|
+
searchTransactions(): Promise<void>;
|
|
17122
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceWizardSearchBundleComponent, never>;
|
|
17123
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ServiceWizardSearchBundleComponent, "service-wizard-search-bundle", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "relation": { "alias": "relation"; "required": false; }; }, { "filterIconClick": "filterIconClick"; "closeClick": "closeClick"; "lineClicked": "lineClicked"; }, never, never, false, never>;
|
|
17080
17124
|
}
|
|
17081
17125
|
|
|
17082
17126
|
declare class SimpleVerticalStepperModule {
|
|
@@ -17106,7 +17150,7 @@ declare class RelationGeneralContactPersonDialogModule {
|
|
|
17106
17150
|
|
|
17107
17151
|
declare class TransactionCreateWizardModule {
|
|
17108
17152
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCreateWizardModule, never>;
|
|
17109
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionCreateWizardModule, [typeof TransactionCreateWizardComponent, typeof ServiceWizardRelationComponent, typeof ServiceWizardSlaComponent, typeof ServiceWizardCreateServiceComponent, typeof ServiceWizardServiceFieldsComponent, typeof ServiceWizardArtOrTransComponent, typeof ServiceWizardQuestionsComponent], [typeof StepperModule, typeof i2.CommonModule, typeof TransactionHeaderPopupModule, typeof PipeModule, typeof i3.ButtonModule, typeof CheckoutModule, typeof i3.InputTextModule, typeof i3.InputTextareaModule, typeof SimpleVerticalStepperModule, typeof StepperStepModule, typeof DialogTransactionSearchModule, typeof ClickBlockModule, typeof CoreModule, typeof i6.FilesUploadModule, typeof i3.FormModule, typeof RelationPreferencesModule, typeof RelationAddressesModule, typeof i3.TooltipDirectiveModule, typeof i3.InputCheckboxModule, typeof i3.ScreenConfigurationModule, typeof RelationContactDetailsModule, typeof RelationGeneralModule, typeof RelationTypeModule, typeof ServiceWizardQaModule, typeof DialogCatalogModule, typeof RelationGeneralContactPersonDialogModule], [typeof TransactionCreateWizardComponent]>;
|
|
17153
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionCreateWizardModule, [typeof TransactionCreateWizardComponent, typeof ServiceWizardRelationComponent, typeof ServiceWizardSlaComponent, typeof ServiceWizardCreateServiceComponent, typeof ServiceWizardServiceFieldsComponent, typeof ServiceWizardArtOrTransComponent, typeof ServiceWizardQuestionsComponent, typeof ServiceWizardSearchBundleComponent], [typeof StepperModule, typeof i2.CommonModule, typeof TransactionHeaderPopupModule, typeof PipeModule, typeof i3.ButtonModule, typeof CheckoutModule, typeof i3.InputTextModule, typeof i3.InputTextareaModule, typeof SimpleVerticalStepperModule, typeof StepperStepModule, typeof DialogTransactionSearchModule, typeof ClickBlockModule, typeof CoreModule, typeof i6.FilesUploadModule, typeof i3.FormModule, typeof RelationPreferencesModule, typeof RelationAddressesModule, typeof i3.TooltipDirectiveModule, typeof i3.InputCheckboxModule, typeof i3.ScreenConfigurationModule, typeof RelationContactDetailsModule, typeof RelationGeneralModule, typeof RelationTypeModule, typeof ServiceWizardQaModule, typeof DialogCatalogModule, typeof RelationGeneralContactPersonDialogModule, typeof TransactionSearchSalesLineSelectTileModule, typeof TransactionSearchHeaderModule], [typeof TransactionCreateWizardComponent]>;
|
|
17110
17154
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionCreateWizardModule>;
|
|
17111
17155
|
}
|
|
17112
17156
|
|
|
@@ -54,10 +54,6 @@
|
|
|
54
54
|
.co-transaction-filter-categories .transaction-filter-categories-wrapper {
|
|
55
55
|
justify-content: flex-start;
|
|
56
56
|
}
|
|
57
|
-
.co-relation-addresses .co-carousel-3d {
|
|
58
|
-
max-width: 100%;
|
|
59
|
-
height: 175px;
|
|
60
|
-
}
|
|
61
57
|
.header-relation-navigation-wrapper {
|
|
62
58
|
display: flex;
|
|
63
59
|
overflow: hidden;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
@import "./material-definition";
|
|
2
2
|
@import "./layout";
|
|
3
3
|
@import "./theme";
|
|
4
|
-
$cc-co-carousel-3d-navigate-button-width: 40px;
|
|
5
4
|
@import "../../../core/base/components/transaction-header-block/style/material";
|
|
6
5
|
@import "../../../relation/relation-type/style/material";
|
|
7
6
|
@import "../../../relation/relation-addresses/style/material";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "261.20.
|
|
3
|
+
"version": "261.20.49",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@angular/core": ">=20.3.16",
|
|
12
12
|
"@colijnit/articleapi": ">=261.1.3",
|
|
13
13
|
"@colijnit/catalog": ">=261.20.3",
|
|
14
|
-
"@colijnit/corecomponents_v12": ">=261.20.
|
|
14
|
+
"@colijnit/corecomponents_v12": ">=261.20.13",
|
|
15
15
|
"@colijnit/ioneconnector": ">=261.1.2",
|
|
16
16
|
"@colijnit/mainapi": ">=261.1.7",
|
|
17
17
|
"@colijnit/product": ">=261.20.0",
|