@colijnit/transaction 262.1.26 → 262.1.27
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 +99 -42
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +23 -5
- package/lib/component/core/base/components/voucher-code-pending-reason-dialog/style/_layout.scss +15 -0
- package/lib/component/core/base/components/voucher-code-pending-reason-dialog/style/_material-definition.scss +3 -0
- package/lib/component/core/base/components/voucher-code-pending-reason-dialog/style/material.scss +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -848,6 +848,10 @@ declare class TransactionEventService {
|
|
|
848
848
|
readonly interbranchExistingOrderNavigation: Subject<string>;
|
|
849
849
|
readonly serviceExistingOrderNavigation: Subject<string>;
|
|
850
850
|
readonly salesQuotationOrderNavigation: Subject<string>;
|
|
851
|
+
readonly relationNavigationRequested: Subject<{
|
|
852
|
+
relationNr: number;
|
|
853
|
+
relationKind: RelationKind;
|
|
854
|
+
}>;
|
|
851
855
|
readonly relationNavigation: Subject<{
|
|
852
856
|
relationNr: number;
|
|
853
857
|
relationKind: RelationKind;
|
|
@@ -879,7 +883,13 @@ declare class TransactionEventService {
|
|
|
879
883
|
readonly headerDeliveryHash: Subject<string>;
|
|
880
884
|
readonly headerInvoiceHash: Subject<string>;
|
|
881
885
|
readonly showPlanningPopupEvent: BehaviorSubject<boolean>;
|
|
882
|
-
readonly headerPopupClose: Subject<
|
|
886
|
+
readonly headerPopupClose: Subject<{
|
|
887
|
+
commit: boolean;
|
|
888
|
+
relationData: {
|
|
889
|
+
relationNr: number;
|
|
890
|
+
relationKind: RelationKind;
|
|
891
|
+
};
|
|
892
|
+
}>;
|
|
883
893
|
readonly orderLineSetButtonClick: Subject<void>;
|
|
884
894
|
readonly addDocumentToLineClicked: Subject<TransactionLineInfo>;
|
|
885
895
|
readonly reopenExternalOrderClicked: Subject<{
|
|
@@ -2217,6 +2227,7 @@ declare enum Icon {
|
|
|
2217
2227
|
UpFromLineRegular = "up_from_line_regular",
|
|
2218
2228
|
UpFromLineRegularFull = "up_from_line_regular_full",
|
|
2219
2229
|
UserRegular = "user_regular",
|
|
2230
|
+
VoucherRegular = "voucher_regular",
|
|
2220
2231
|
Warehouse = "warehouse",
|
|
2221
2232
|
WorkInProgressCircleLarge = "work_in_progress_circle_large",
|
|
2222
2233
|
XSolid = "x_solid"
|
|
@@ -3903,9 +3914,12 @@ declare class CharacteristicAnswerModule {
|
|
|
3903
3914
|
}
|
|
3904
3915
|
|
|
3905
3916
|
declare class VoucherCodePendingReasonDialogComponent extends DialogBaseComponent {
|
|
3917
|
+
iconCacheService: IconCacheService;
|
|
3906
3918
|
showClass(): boolean;
|
|
3919
|
+
readonly icons: typeof Icon;
|
|
3907
3920
|
voucherCode: string;
|
|
3908
3921
|
pendingReason: string;
|
|
3922
|
+
constructor(iconCacheService: IconCacheService);
|
|
3909
3923
|
handleOkClick(): void;
|
|
3910
3924
|
handleCloseClick(): void;
|
|
3911
3925
|
onKeyDown(event: KeyboardEvent): void;
|
|
@@ -3915,7 +3929,7 @@ declare class VoucherCodePendingReasonDialogComponent extends DialogBaseComponen
|
|
|
3915
3929
|
|
|
3916
3930
|
declare class VoucherCodePendingReasonDialogModule {
|
|
3917
3931
|
static ɵfac: i0.ɵɵFactoryDeclaration<VoucherCodePendingReasonDialogModule, never>;
|
|
3918
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<VoucherCodePendingReasonDialogModule, [typeof VoucherCodePendingReasonDialogComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof i3.InputTextModule, typeof PipeModule, typeof i3.ButtonModule], [typeof VoucherCodePendingReasonDialogComponent]>;
|
|
3932
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<VoucherCodePendingReasonDialogModule, [typeof VoucherCodePendingReasonDialogComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof i3.InputTextModule, typeof PipeModule, typeof i3.ButtonModule, typeof i3.IconModule], [typeof VoucherCodePendingReasonDialogComponent]>;
|
|
3919
3933
|
static ɵinj: i0.ɵɵInjectorDeclaration<VoucherCodePendingReasonDialogModule>;
|
|
3920
3934
|
}
|
|
3921
3935
|
|
|
@@ -5997,7 +6011,10 @@ declare abstract class TransactionHeaderPopupBaseComponent extends TransactionHe
|
|
|
5997
6011
|
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, dialogService: TransactionDialogService, formMasterService: FormMasterService, relationService: TransactionRelationService);
|
|
5998
6012
|
ngOnInit(): Promise<void>;
|
|
5999
6013
|
ngOnDestroy(): Promise<void>;
|
|
6000
|
-
saveObjects(
|
|
6014
|
+
saveObjects(relationInfo?: {
|
|
6015
|
+
relationNr: number;
|
|
6016
|
+
relationKind: RelationKind;
|
|
6017
|
+
}): Promise<void>;
|
|
6001
6018
|
saveRelation(): Promise<boolean>;
|
|
6002
6019
|
saveTransaction(): Promise<boolean>;
|
|
6003
6020
|
protected setFormPristine(): void;
|
|
@@ -9638,9 +9655,9 @@ declare class TransactionReceivingGoodsHistoryComponent {
|
|
|
9638
9655
|
showDeleteButton: boolean;
|
|
9639
9656
|
set goodsReceiptHistory(value: LogisticalStateDetail[]);
|
|
9640
9657
|
get goodsReceiptHistory(): LogisticalStateDetail[];
|
|
9658
|
+
private _goodsReceiptHistory;
|
|
9641
9659
|
deleteRow: EventEmitter<LogisticalStateDetail>;
|
|
9642
9660
|
showClass(): boolean;
|
|
9643
|
-
private _goodsReceiptHistory;
|
|
9644
9661
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionReceivingGoodsHistoryComponent, never>;
|
|
9645
9662
|
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>;
|
|
9646
9663
|
}
|
|
@@ -16219,6 +16236,7 @@ declare class TransactionLineWarehouseCcGeneralComponent extends TransactionLine
|
|
|
16219
16236
|
commissionCodeDisplayList: CoDomainValue[];
|
|
16220
16237
|
warehouseDescription: string;
|
|
16221
16238
|
commissionCodeDescription: string;
|
|
16239
|
+
commissionCodeReadonly: boolean;
|
|
16222
16240
|
constructor(element: ElementRef, iconCacheService: IconCacheService, _transactionService: TransactionService, _changeDetector: ChangeDetectorRef);
|
|
16223
16241
|
ngOnInit(): void;
|
|
16224
16242
|
ngOnChanges(): void;
|
|
@@ -16228,7 +16246,7 @@ declare class TransactionLineWarehouseCcGeneralComponent extends TransactionLine
|
|
|
16228
16246
|
private _getWarehouseDescription;
|
|
16229
16247
|
private _detectChanges;
|
|
16230
16248
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineWarehouseCcGeneralComponent, never>;
|
|
16231
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineWarehouseCcGeneralComponent, "co-transaction-line-warehouse-cc-general", never, {}, {}, never, never, false, never>;
|
|
16249
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineWarehouseCcGeneralComponent, "co-transaction-line-warehouse-cc-general", never, { "commissionCodeReadonly": { "alias": "commissionCodeReadonly"; "required": false; }; }, {}, never, never, false, never>;
|
|
16232
16250
|
}
|
|
16233
16251
|
|
|
16234
16252
|
declare enum WarehouseTargetSourceTab {
|
package/lib/component/core/base/components/voucher-code-pending-reason-dialog/style/_layout.scss
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
@include export-module('cc-voucher-code-pending-reason-dialog-layout') {
|
|
2
2
|
.co-voucher-code-pending-reason-dialog {
|
|
3
|
+
co-dialog {
|
|
4
|
+
.co-dialog-wrapper {
|
|
5
|
+
max-width: $cc-voucher-code-pending-dialog-width;
|
|
6
|
+
.co-dialog-header-title-icon {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
gap: $cc-voucher-code-pending-dialog-title-gap;
|
|
10
|
+
}
|
|
11
|
+
.co-dialog-content {
|
|
12
|
+
.co-input-text {
|
|
13
|
+
margin: $cc-voucher-code-pending-dialog-co-input-margin;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
3
18
|
}
|
|
4
19
|
}
|