@colijnit/transaction 261.20.55 → 261.20.57
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 +96 -100
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +24 -15
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -844,6 +844,10 @@ declare class TransactionEventService {
|
|
|
844
844
|
readonly interbranchExistingOrderNavigation: Subject<string>;
|
|
845
845
|
readonly serviceExistingOrderNavigation: Subject<string>;
|
|
846
846
|
readonly salesQuotationOrderNavigation: Subject<string>;
|
|
847
|
+
readonly relationNavigationRequested: Subject<{
|
|
848
|
+
relationNr: number;
|
|
849
|
+
relationKind: RelationKind;
|
|
850
|
+
}>;
|
|
847
851
|
readonly relationNavigation: Subject<{
|
|
848
852
|
relationNr: number;
|
|
849
853
|
relationKind: RelationKind;
|
|
@@ -875,7 +879,13 @@ declare class TransactionEventService {
|
|
|
875
879
|
readonly headerDeliveryHash: Subject<string>;
|
|
876
880
|
readonly headerInvoiceHash: Subject<string>;
|
|
877
881
|
readonly showPlanningPopupEvent: BehaviorSubject<boolean>;
|
|
878
|
-
readonly headerPopupClose: Subject<
|
|
882
|
+
readonly headerPopupClose: Subject<{
|
|
883
|
+
commit: boolean;
|
|
884
|
+
relationData: {
|
|
885
|
+
relationNr: number;
|
|
886
|
+
relationKind: RelationKind;
|
|
887
|
+
};
|
|
888
|
+
}>;
|
|
879
889
|
readonly orderLineSetButtonClick: Subject<void>;
|
|
880
890
|
readonly addDocumentToLineClicked: Subject<TransactionLineInfo>;
|
|
881
891
|
readonly reopenExternalOrderClicked: Subject<{
|
|
@@ -952,6 +962,7 @@ declare class TransactionEventService {
|
|
|
952
962
|
readonly fillContainerSuccess: Subject<void>;
|
|
953
963
|
readonly removeFromContainerRequested: Subject<void>;
|
|
954
964
|
readonly removeFromContainerSuccess: Subject<void>;
|
|
965
|
+
readonly requestFocusOnArticleField: Subject<void>;
|
|
955
966
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionEventService, never>;
|
|
956
967
|
static ɵprov: i0.ɵɵInjectableDeclaration<TransactionEventService>;
|
|
957
968
|
}
|
|
@@ -1960,7 +1971,7 @@ declare class TransactionConnectorService {
|
|
|
1960
1971
|
getWorkOrderEmailLayouts(transactionUUID: string, showLoader?: boolean): Promise<ReportLayoutSelectionEmail[]>;
|
|
1961
1972
|
getWorkOrderPrintLayouts(transactionUUID: string, showLoader?: boolean): Promise<ReportLayoutSelectionPrint[]>;
|
|
1962
1973
|
getWorkOrderDefaultSendMethod(relationId: number, showLoader?: boolean): Promise<number>;
|
|
1963
|
-
getDefaultEmailAddressListForWorkOrder(transactionUUID: string, showLoader?: boolean): Promise<
|
|
1974
|
+
getDefaultEmailAddressListForWorkOrder(transactionUUID: string, showLoader?: boolean): Promise<ReportLayoutSelectionEmail[]>;
|
|
1964
1975
|
previewWorkOrder(pdfWorkOrderRequest: PdfWorkOrderRequest, showLoader?: boolean): Promise<PdfWorkOrderResponse>;
|
|
1965
1976
|
roundUp(amount: number, paymentMethodCode: string, showLoader?: boolean): Promise<number>;
|
|
1966
1977
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionConnectorService, never>;
|
|
@@ -2811,7 +2822,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2811
2822
|
getWorkOrderEmailLayouts(transactionUUID: string, showLoader?: boolean): Promise<ReportLayoutSelectionEmail[]>;
|
|
2812
2823
|
getWorkOrderPrintLayouts(transactionUUID: string, showLoader?: boolean): Promise<ReportLayoutSelectionPrint[]>;
|
|
2813
2824
|
getWorkOrderDefaultSendMethod(relationId: number, showLoader?: boolean): Promise<number>;
|
|
2814
|
-
getDefaultEmailAddressListForWorkOrder(transactionUUID: string, showLoader?: boolean): Promise<
|
|
2825
|
+
getDefaultEmailAddressListForWorkOrder(transactionUUID: string, showLoader?: boolean): Promise<ReportLayoutSelectionEmail[]>;
|
|
2815
2826
|
previewWorkOrder(pdfWorkOrderRequest: PdfWorkOrderRequest, showLoader?: boolean): Promise<PdfWorkOrderResponse>;
|
|
2816
2827
|
sendPackageInformationToLSP(request: TransactionLspInformationRequest): Promise<TransactionInfoResponse>;
|
|
2817
2828
|
roundUp(amount: number, paymentMethodCode: string, showLoader?: boolean): Promise<number>;
|
|
@@ -5969,7 +5980,10 @@ declare abstract class TransactionHeaderPopupBaseComponent extends TransactionHe
|
|
|
5969
5980
|
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, dialogService: TransactionDialogService, formMasterService: FormMasterService, relationService: TransactionRelationService);
|
|
5970
5981
|
ngOnInit(): Promise<void>;
|
|
5971
5982
|
ngOnDestroy(): Promise<void>;
|
|
5972
|
-
saveObjects(
|
|
5983
|
+
saveObjects(relationInfo?: {
|
|
5984
|
+
relationNr: number;
|
|
5985
|
+
relationKind: RelationKind;
|
|
5986
|
+
}): Promise<void>;
|
|
5973
5987
|
saveRelation(): Promise<boolean>;
|
|
5974
5988
|
saveTransaction(): Promise<boolean>;
|
|
5975
5989
|
protected setFormPristine(): void;
|
|
@@ -9582,9 +9596,9 @@ declare class TransactionReceivingGoodsHistoryComponent {
|
|
|
9582
9596
|
showDeleteButton: boolean;
|
|
9583
9597
|
set goodsReceiptHistory(value: LogisticalStateDetail[]);
|
|
9584
9598
|
get goodsReceiptHistory(): LogisticalStateDetail[];
|
|
9599
|
+
private _goodsReceiptHistory;
|
|
9585
9600
|
deleteRow: EventEmitter<LogisticalStateDetail>;
|
|
9586
9601
|
showClass(): boolean;
|
|
9587
|
-
private _goodsReceiptHistory;
|
|
9588
9602
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionReceivingGoodsHistoryComponent, never>;
|
|
9589
9603
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionReceivingGoodsHistoryComponent, "co-transaction-receiving-goods-history", never, { "showDeleteButton": { "alias": "showDeleteButton"; "required": false; }; "goodsReceiptHistory": { "alias": "goodsReceiptHistory"; "required": false; }; }, { "deleteRow": "deleteRow"; }, never, never, false, never>;
|
|
9590
9604
|
}
|
|
@@ -9853,7 +9867,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
9853
9867
|
showCategories: boolean;
|
|
9854
9868
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9855
9869
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9856
|
-
currentTitle(): "
|
|
9870
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9857
9871
|
ngOnDestroy(): void;
|
|
9858
9872
|
handleClickWrapper(event: MouseEvent): void;
|
|
9859
9873
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -9879,7 +9893,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
9879
9893
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
9880
9894
|
ngOnDestroy(): void;
|
|
9881
9895
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9882
|
-
currentTitle(): "
|
|
9896
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9883
9897
|
handleClickWrapper(event: MouseEvent): void;
|
|
9884
9898
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
9885
9899
|
private handleDocumentClick;
|
|
@@ -9931,7 +9945,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
9931
9945
|
showCategories: boolean;
|
|
9932
9946
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9933
9947
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9934
|
-
currentTitle(): "
|
|
9948
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9935
9949
|
ngOnDestroy(): void;
|
|
9936
9950
|
handleClickWrapper(event: MouseEvent): void;
|
|
9937
9951
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -17227,12 +17241,6 @@ declare class TransactionInvoiceCheckOrderTileComponent {
|
|
|
17227
17241
|
readonly SimpleGridColumnTemplateType: typeof SimpleGridColumnTemplateType;
|
|
17228
17242
|
readonly columnAlign: typeof ColumnAlign;
|
|
17229
17243
|
readonly icons: typeof Icon;
|
|
17230
|
-
showClass(): boolean;
|
|
17231
|
-
selected: boolean;
|
|
17232
|
-
toCheckInputList: QueryList<InputTextComponent>;
|
|
17233
|
-
set toCheckInputs(toCheckInputs: QueryList<InputTextComponent>);
|
|
17234
|
-
bookingPriceInputList: QueryList<InputTextComponent>;
|
|
17235
|
-
set bookingPriceInputs(bookingPriceInputs: QueryList<InputTextComponent>);
|
|
17236
17244
|
invoiceCheckOrder: InvoiceCheckOrderInterface;
|
|
17237
17245
|
lineSelectedEvent: EventEmitter<{
|
|
17238
17246
|
selected: boolean;
|
|
@@ -17247,11 +17255,12 @@ declare class TransactionInvoiceCheckOrderTileComponent {
|
|
|
17247
17255
|
}>;
|
|
17248
17256
|
selectAllLinesEvent: EventEmitter<void>;
|
|
17249
17257
|
openTransactionEvent: EventEmitter<number>;
|
|
17258
|
+
selected: boolean;
|
|
17250
17259
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef);
|
|
17260
|
+
showClass(): boolean;
|
|
17251
17261
|
handleLineSelected(selected: boolean, line: InvoiceCheckOrderLineInterface): void;
|
|
17252
17262
|
handleSaveRow(data: InvoiceCheckOrderLineInterface | {}): void;
|
|
17253
17263
|
handleOpenTransaction(transNo: number): void;
|
|
17254
|
-
protected readonly close: typeof close;
|
|
17255
17264
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInvoiceCheckOrderTileComponent, never>;
|
|
17256
17265
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInvoiceCheckOrderTileComponent, "co-transaction-invoice-check-order-tile", never, { "invoiceCheckOrder": { "alias": "invoiceCheckOrder"; "required": false; }; }, { "lineSelectedEvent": "lineSelectedEvent"; "saveRowEvent": "saveRowEvent"; "selectAllLinesEvent": "selectAllLinesEvent"; "openTransactionEvent": "openTransactionEvent"; }, never, never, false, never>;
|
|
17257
17266
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "261.20.
|
|
3
|
+
"version": "261.20.57",
|
|
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.16",
|
|
15
15
|
"@colijnit/ioneconnector": ">=261.1.2",
|
|
16
16
|
"@colijnit/mainapi": ">=261.1.7",
|
|
17
17
|
"@colijnit/product": ">=261.20.0",
|