@colijnit/transaction 261.20.58 → 261.20.59
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 +194 -12
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +38 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -2307,6 +2307,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2307
2307
|
internalParameterSellDirectlyFromSupp: boolean;
|
|
2308
2308
|
internalParameterStockMutBeforeDelivery: boolean;
|
|
2309
2309
|
printColliStickerDefault: boolean;
|
|
2310
|
+
internalPlanDaysParam: number;
|
|
2310
2311
|
contactPersonId: number;
|
|
2311
2312
|
firstDayOfWeek: string;
|
|
2312
2313
|
articleAmountChange: BehaviorSubject<number>;
|
|
@@ -2348,6 +2349,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
|
|
|
2348
2349
|
logisticsButtonVisible: () => Promise<boolean>;
|
|
2349
2350
|
prepareDropShipmentInternalParam(): void;
|
|
2350
2351
|
prepareReceiveGoodsWithDataTerminalInternalParam(): void;
|
|
2352
|
+
prepareInternalPlanDaysParam(): Promise<void>;
|
|
2351
2353
|
preparePrintColliStickerDefault(): void;
|
|
2352
2354
|
getInternalParameter(param: InternalParam): Promise<boolean>;
|
|
2353
2355
|
getCashLimitValue(param: InternalParam): Promise<number>;
|
|
@@ -4094,6 +4096,7 @@ declare enum TransactionCfgName {
|
|
|
4094
4096
|
LineNetLineTotal = "lineNetLineTotal",
|
|
4095
4097
|
LinePurchasePrice = "linePurchasePrice",
|
|
4096
4098
|
LinePurchaseDescription = "linePurchaseDescription",
|
|
4099
|
+
LineExpectedDeliveryDateCP = "lineExpectedDeliveryDateCP",
|
|
4097
4100
|
LineSupplier = "lineSupplier",
|
|
4098
4101
|
LineRefTransactions = "lineRefTransactions",
|
|
4099
4102
|
LineConfirmedDeliveryDate = "lineConfirmedDeliveryDate",
|
|
@@ -4948,6 +4951,7 @@ declare class TransactionOverviewLineComponent extends TransactionLineBaseCompon
|
|
|
4948
4951
|
showClass(): boolean;
|
|
4949
4952
|
stock: StockStatus;
|
|
4950
4953
|
noLabel: boolean;
|
|
4954
|
+
showEstimatedDeliveryDate: boolean;
|
|
4951
4955
|
statusBarConfigNames: StatusBarCfgNames;
|
|
4952
4956
|
discountConfigNames: LineDiscountCfgNames;
|
|
4953
4957
|
private _subs;
|
|
@@ -8121,9 +8125,42 @@ declare class TransactionNavigationButtonListModule {
|
|
|
8121
8125
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionNavigationButtonListModule>;
|
|
8122
8126
|
}
|
|
8123
8127
|
|
|
8128
|
+
declare class TransactionLineExpectedDeliveryDateButtonComponent extends TransactionLineBaseComponent implements OnInit, OnDestroy {
|
|
8129
|
+
transactionHeaderService: TransactionHeaderService;
|
|
8130
|
+
transactionLineService: TransactionLineService;
|
|
8131
|
+
transactionEventService: TransactionEventService;
|
|
8132
|
+
service: TransactionService;
|
|
8133
|
+
iconCacheService: IconCacheService;
|
|
8134
|
+
transactionScreenConfigurationService: TransactionScreenConfigurationService;
|
|
8135
|
+
protected dictionaryService: DictionaryService;
|
|
8136
|
+
protected imageService: TransactionImageService;
|
|
8137
|
+
protected changeDetector: ChangeDetectorRef;
|
|
8138
|
+
readonly icons: typeof Icon;
|
|
8139
|
+
parentComponent: ElementRef;
|
|
8140
|
+
showClass(): boolean;
|
|
8141
|
+
inputLabel: boolean;
|
|
8142
|
+
showConfirmedDeliveryDateChange: EventEmitter<boolean>;
|
|
8143
|
+
expectedDeliveryDate: Date;
|
|
8144
|
+
private _handled;
|
|
8145
|
+
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef);
|
|
8146
|
+
ngOnInit(): void;
|
|
8147
|
+
ngOnDestroy(): void;
|
|
8148
|
+
protected transactionInfoSet(): void;
|
|
8149
|
+
protected transactionLineSet(): void;
|
|
8150
|
+
private _checkConfirmedDeliveryDate;
|
|
8151
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineExpectedDeliveryDateButtonComponent, never>;
|
|
8152
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineExpectedDeliveryDateButtonComponent, "co-transaction-line-expected-delivery-date-button", never, { "inputLabel": { "alias": "inputLabel"; "required": false; }; }, { "showConfirmedDeliveryDateChange": "showConfirmedDeliveryDateChange"; }, never, never, false, never>;
|
|
8153
|
+
}
|
|
8154
|
+
|
|
8155
|
+
declare class TransactionLineExpectedDeliveryDateButtonModule {
|
|
8156
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineExpectedDeliveryDateButtonModule, never>;
|
|
8157
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineExpectedDeliveryDateButtonModule, [typeof TransactionLineExpectedDeliveryDateButtonComponent], [typeof i2.CommonModule, typeof TransactionButtonModule, typeof TransactionLineLabelModule, typeof PipeModule], [typeof TransactionLineExpectedDeliveryDateButtonComponent]>;
|
|
8158
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineExpectedDeliveryDateButtonModule>;
|
|
8159
|
+
}
|
|
8160
|
+
|
|
8124
8161
|
declare class TransactionOverviewLineModule {
|
|
8125
8162
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionOverviewLineModule, never>;
|
|
8126
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionOverviewLineModule, [typeof TransactionOverviewLineComponent], [typeof i2.CommonModule, typeof CoreModule, typeof i3.ButtonModule, typeof i3.InputNumberPickerModule, typeof TransactionArticleTextModule, typeof TransactionArticleTextOverviewModule, typeof PipeModule, typeof TransactionLineActionButtonsModule, typeof i3.IconModule, typeof EditableLabelModule, typeof TransactionLinePriceModule, typeof TransactionLineDescriptionModule, typeof TransactionBaseLineModule, typeof i13.DragDropModule, typeof TransactionLineCommissionButtonModule, typeof TransactionLineWarehouseButtonModule, typeof TransactionLineDeliveryButtonModule, typeof TransactionLineDeliveryDateButtonModule, typeof DialogTransactionLineVatModule, typeof DialogTransactionLineDiscountModule, typeof TransactionLineStatusbarModule, typeof TransactionLineAmountModule, typeof TransactionLineVatButtonModule, typeof TransactionLineDiscountButtonModule, typeof TransactionLineDeliveryDateModule, typeof TransactionMarginInfoLineModule, typeof i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof TransactionLineLabelModule, typeof TransactionLineDirectSellButtonModule, typeof TransactionNavigationButtonListModule], [typeof TransactionOverviewLineComponent]>;
|
|
8163
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionOverviewLineModule, [typeof TransactionOverviewLineComponent], [typeof i2.CommonModule, typeof CoreModule, typeof i3.ButtonModule, typeof i3.InputNumberPickerModule, typeof TransactionArticleTextModule, typeof TransactionArticleTextOverviewModule, typeof PipeModule, typeof TransactionLineActionButtonsModule, typeof i3.IconModule, typeof EditableLabelModule, typeof TransactionLinePriceModule, typeof TransactionLineDescriptionModule, typeof TransactionBaseLineModule, typeof i13.DragDropModule, typeof TransactionLineCommissionButtonModule, typeof TransactionLineWarehouseButtonModule, typeof TransactionLineDeliveryButtonModule, typeof TransactionLineDeliveryDateButtonModule, typeof DialogTransactionLineVatModule, typeof DialogTransactionLineDiscountModule, typeof TransactionLineStatusbarModule, typeof TransactionLineAmountModule, typeof TransactionLineVatButtonModule, typeof TransactionLineDiscountButtonModule, typeof TransactionLineDeliveryDateModule, typeof TransactionMarginInfoLineModule, typeof i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof TransactionLineLabelModule, typeof TransactionLineDirectSellButtonModule, typeof TransactionNavigationButtonListModule, typeof TransactionLineExpectedDeliveryDateButtonModule], [typeof TransactionOverviewLineComponent]>;
|
|
8127
8164
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionOverviewLineModule>;
|
|
8128
8165
|
}
|
|
8129
8166
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "261.20.
|
|
3
|
+
"version": "261.20.59",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"@colijnit/articleapi": ">=261.1.3",
|
|
13
13
|
"@colijnit/catalog": ">=261.20.3",
|
|
14
14
|
"@colijnit/corecomponents_v12": ">=261.20.16",
|
|
15
|
-
"@colijnit/ioneconnector": ">=261.1.
|
|
16
|
-
"@colijnit/mainapi": ">=261.1.
|
|
15
|
+
"@colijnit/ioneconnector": ">=261.1.4",
|
|
16
|
+
"@colijnit/mainapi": ">=261.1.11",
|
|
17
17
|
"@colijnit/product": ">=261.20.0",
|
|
18
18
|
"@colijnit/relation": ">=261.20.0",
|
|
19
19
|
"@colijnit/relationapi": ">=261.1.1",
|