@colijnit/transaction 261.20.21 → 261.20.23
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 +1702 -476
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +191 -33
- package/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-popup/style/_layout.scss +12 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_layout.scss +38 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_material-definition.scss +1 -1
- package/lib/component/shared/conversion-assistant/style/_layout.scss +61 -0
- package/lib/component/shared/conversion-assistant/style/_material-definition.scss +2 -0
- package/lib/component/shared/conversion-assistant/style/_theme.scss +6 -0
- package/lib/component/shared/conversion-assistant/style/material.scss +3 -0
- package/lib/component/transaction-header/transaction-header-popup/style/_material-definition.scss +1 -0
- package/lib/component/transaction-header/transaction-header-relation/style/_layout.scss +7 -0
- package/lib/component/transaction-line/transaction-interbranch-receive-goods-line/style/_layout.scss +16 -0
- package/lib/component/transaction-line/transaction-interbranch-receive-goods-line/style/_material-definition.scss +0 -0
- package/lib/component/transaction-line/transaction-interbranch-receive-goods-line/style/_theme.scss +4 -0
- package/lib/component/transaction-line/transaction-interbranch-receive-goods-line/style/material.scss +5 -0
- package/lib/component/transaction-line/transaction-line/style/_layout.scss +1 -0
- package/lib/component/transaction-line/transaction-planning-line/components/transaction-planning-line-planned-resource/style/_layout.scss +9 -8
- package/lib/component/transaction-line/transaction-planning-line/style/_layout.scss +6 -3
- package/lib/component/transaction-lines-side-panel/transaction-lines-side-panel-cash-desk/style/_layout.scss +6 -2
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -165,6 +165,8 @@ import { ExternalCatalogStartupInfo } from '@colijnit/articleapi/build/model/ext
|
|
|
165
165
|
import { ArticleExtended } from '@colijnit/articleapi/build/model/article-extended.bo';
|
|
166
166
|
import { GetArticlePriceRequest } from '@colijnit/articleapi/build/model/get-article-price-request';
|
|
167
167
|
import { GetArticlePriceResult } from '@colijnit/articleapi/build/model/get-article-price-result';
|
|
168
|
+
import { Unit } from '@colijnit/articleapi/build/model/unit';
|
|
169
|
+
import { ConvertQuantityToDefaultUnitRequest } from '@colijnit/articleapi/build/model/convert-quantity-to-default-unit-request';
|
|
168
170
|
import { OrderLineSetCategory } from '@colijnit/mainapi/build/model/order-line-set-category.bo';
|
|
169
171
|
import { OrderLineSetDTO } from '@colijnit/transactionapi/build/model/order-line-set-dto';
|
|
170
172
|
import { TransactionAddOrderLineSetTextLineRequest } from '@colijnit/transactionapi/build/model/transaction-add-order-line-set-text-line-request';
|
|
@@ -294,7 +296,7 @@ import { RelationSmallObject as RelationSmallObject$1 } from '@colijnit/relation
|
|
|
294
296
|
import { DocDeliveryBatch } from '@colijnit/transactionapi/build/model/doc-delivery-batch.bo';
|
|
295
297
|
import * as i3 from '@colijnit/corecomponents_v12';
|
|
296
298
|
import { BaseModuleScreenConfigService, BaseModuleService, FormMasterService, ScreenConfigAdapterComponent, OverlayService, FormComponent, FilterItemViewmodel, InputTextComponent, InputDatePickerComponent, InputCheckboxComponent, ColorSequenceService, SimpleGridColumnTemplateType, SimpleGridColumnDirective, ColumnAlign, ButtonComponent, OverlayParentDirective, ContentViewMode, HourSchedulingExpandableComponent, FilterItemComponent, FilterItemMode, InputTextareaComponent, InputScannerComponent, CoreComponentsIcon } from '@colijnit/corecomponents_v12';
|
|
297
|
-
import * as i5 from '@colijnit/relation';
|
|
299
|
+
import * as i5$1 from '@colijnit/relation';
|
|
298
300
|
import { RelationService } from '@colijnit/relation';
|
|
299
301
|
import * as i6 from '@colijnit/sharedcomponents';
|
|
300
302
|
import { SharedService, StatusbarData, CalendarView, SendMethod, AgendaEventPerDay, FormBuilderUserFormComponent, ComponentActivityListComponent } from '@colijnit/sharedcomponents';
|
|
@@ -326,7 +328,7 @@ import { PaymentLineType } from '@colijnit/transactionapi/build/enum/payment-lin
|
|
|
326
328
|
import * as i4 from '@angular/cdk/scrolling';
|
|
327
329
|
import { SupplierStockForecast } from '@colijnit/transactionapi/build/model/supplier-stock-forecast';
|
|
328
330
|
import { PurchaseReservationSalesLine } from '@colijnit/transactionapi/build/model/purchase-reservation-sales-line.bo';
|
|
329
|
-
import * as
|
|
331
|
+
import * as i5 from '@colijnit/catalog';
|
|
330
332
|
import { CatalogService, CatalogEventService, ExternalSourceViewmodel } from '@colijnit/catalog';
|
|
331
333
|
import { SendMethodType } from '@colijnit/mainapi/build/enum/send-method-type.enum';
|
|
332
334
|
import { ReportingDocumentPdfBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-pdf-base-request';
|
|
@@ -779,6 +781,7 @@ declare class TransactionEventService {
|
|
|
779
781
|
readonly editTransactionText: Subject<TransactionLineInfo>;
|
|
780
782
|
readonly editorActive: BehaviorSubject<boolean>;
|
|
781
783
|
readonly articleLineTextAddedOrChanged: Subject<number>;
|
|
784
|
+
readonly requestConversionAssistant: Subject<TransactionLineInfo>;
|
|
782
785
|
readonly newPlanOrderEvent: Subject<void>;
|
|
783
786
|
readonly updatePlanningEvent: Subject<void>;
|
|
784
787
|
readonly openSidePanel: Subject<TransactionLineInfo>;
|
|
@@ -992,6 +995,8 @@ declare class ArticleConnectorService {
|
|
|
992
995
|
storeCatFarmCompositionArticle(catalogId: number, articleFlatTree: ArticleFlatTreeDTO): Promise<string>;
|
|
993
996
|
getWebViewStartupInfo(request: ExternalCatalogStartupInfoRequest): Promise<ExternalCatalogStartupInfo>;
|
|
994
997
|
getArticlePrice(request: GetArticlePriceRequest): Promise<GetArticlePriceResult>;
|
|
998
|
+
getConversionUnitsForDefaultArticleUnitByGoodIdAndTransactionKind(goodId: number, transactionKind: string): Promise<Unit[]>;
|
|
999
|
+
convertAmountByUnitCodeToDefaultUnitOfArticle(request: ConvertQuantityToDefaultUnitRequest): Promise<number>;
|
|
995
1000
|
private _handleExceptionFromResponse;
|
|
996
1001
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArticleConnectorService, never>;
|
|
997
1002
|
static ɵprov: i0.ɵɵInjectableDeclaration<ArticleConnectorService>;
|
|
@@ -1998,6 +2003,7 @@ declare enum Icon {
|
|
|
1998
2003
|
BarsFilter = "bars_filter",
|
|
1999
2004
|
BoxesPackingRegular = "boxes_packing_regular",
|
|
2000
2005
|
BoxOpenFullRegular = "box_open_full_regular",
|
|
2006
|
+
CalculatorRegularFull = "calculator_regular_full",
|
|
2001
2007
|
CalendarDay = "calendar_day",
|
|
2002
2008
|
CalendarDayRegular = "calendar_day_regular",
|
|
2003
2009
|
CalendarLinesRegular = "calendar_lines_regular",
|
|
@@ -2093,6 +2099,7 @@ declare enum Icon {
|
|
|
2093
2099
|
Purchase = "purchase",
|
|
2094
2100
|
RegularBoxesPackingCircleCheck = "regular_boxes_packing_circle_check",
|
|
2095
2101
|
RegularBoxOpenCircleCheck = "regular_box_open_circle_check",
|
|
2102
|
+
RegularBoxOpenFullCircleCheck = "regular_box_open_full_circle_check",
|
|
2096
2103
|
RegularCalendarDayLock = "regular_calendar_day_lock",
|
|
2097
2104
|
RegularCartFlatbedBoxesCircleCheck = "regular_cart_flatbed_boxes_circle_check",
|
|
2098
2105
|
RegularCartShoppingCheck = "regular_cart_shopping_check",
|
|
@@ -2505,6 +2512,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2505
2512
|
updateTextLine(uuid: string, lineUuid: string, showOnDocuments: number, text: string): Promise<boolean>;
|
|
2506
2513
|
changeLineSequence(lineUuid: string, aboveLineNr?: number, belowLineNr?: number): Promise<boolean>;
|
|
2507
2514
|
deleteTransactionLine(transactionLineUuid: string): Promise<boolean>;
|
|
2515
|
+
checkLockandChangeTransactionLineQuantity(transactionUuid: string, lineUuid: string, newQuantity: number): Promise<boolean>;
|
|
2508
2516
|
changeTransactionLineQuantity(transactionUuid: string, lineUuid: string, newQuantity: number): Promise<boolean>;
|
|
2509
2517
|
changeTransactionLineAssemblyTime(uuid: string, lineUuid: string, time: number): Promise<TransactionInfoResponse>;
|
|
2510
2518
|
changeLineShippingCost(uuid: string, lineUuid: string, newShippingCost: number): Promise<TransactionInfoResponse>;
|
|
@@ -4115,7 +4123,6 @@ declare class RelationAddressComponent extends RelationBaseComponent implements
|
|
|
4115
4123
|
fields: Object;
|
|
4116
4124
|
countryModel: Country;
|
|
4117
4125
|
postalCodeCheckErrorMessage: string;
|
|
4118
|
-
wrongAddress: boolean;
|
|
4119
4126
|
private _prevPostalCodeForCheck;
|
|
4120
4127
|
private _prevHouseNoForCheck;
|
|
4121
4128
|
private _address;
|
|
@@ -4765,11 +4772,25 @@ declare class TransactionTextLineModule {
|
|
|
4765
4772
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionTextLineModule>;
|
|
4766
4773
|
}
|
|
4767
4774
|
|
|
4775
|
+
declare class ArticleService {
|
|
4776
|
+
private _articleConnectorService;
|
|
4777
|
+
private _selectMultipleParameterizedCacheService;
|
|
4778
|
+
constructor(_articleConnectorService: ArticleConnectorService, _selectMultipleParameterizedCacheService: TransactionSelectMultipleParameterizedCacheService);
|
|
4779
|
+
getWarehouseLocations(warehouseNr: number): Promise<any>;
|
|
4780
|
+
getWebViewStartupInfo(request: ExternalCatalogStartupInfoRequest): Promise<ExternalCatalogStartupInfo>;
|
|
4781
|
+
getArticlePrice(request: GetArticlePriceRequest): Promise<GetArticlePriceResult>;
|
|
4782
|
+
getConversionUnitsForDefaultArticleUnitByGoodIdAndTransactionKind(goodId: number, transactionKind: string): Promise<Unit[]>;
|
|
4783
|
+
convertAmountByUnitCodeToDefaultUnitOfArticle(goodId: number, transactionKind: TransactionKind, conversionAmount: number, unitCode: string): Promise<number>;
|
|
4784
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArticleService, never>;
|
|
4785
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ArticleService>;
|
|
4786
|
+
}
|
|
4787
|
+
|
|
4768
4788
|
declare class TransactionLineActionButtonsComponent implements OnInit {
|
|
4769
4789
|
elementRef: ElementRef;
|
|
4770
4790
|
iconCacheService: IconCacheService;
|
|
4771
4791
|
private _transactionService;
|
|
4772
4792
|
private _transactionEventService;
|
|
4793
|
+
private _articleService;
|
|
4773
4794
|
private _overlayService;
|
|
4774
4795
|
private _changeDetector;
|
|
4775
4796
|
private _lineSelectionService;
|
|
@@ -4793,7 +4814,7 @@ declare class TransactionLineActionButtonsComponent implements OnInit {
|
|
|
4793
4814
|
private _transactionLine;
|
|
4794
4815
|
private _actionButtonsPopupComponentRef;
|
|
4795
4816
|
private _orderLineSet;
|
|
4796
|
-
constructor(elementRef: ElementRef, iconCacheService: IconCacheService, _transactionService: TransactionService, _transactionEventService: TransactionEventService, _overlayService: OverlayService, _changeDetector: ChangeDetectorRef, _lineSelectionService: LineSelectionService);
|
|
4817
|
+
constructor(elementRef: ElementRef, iconCacheService: IconCacheService, _transactionService: TransactionService, _transactionEventService: TransactionEventService, _articleService: ArticleService, _overlayService: OverlayService, _changeDetector: ChangeDetectorRef, _lineSelectionService: LineSelectionService);
|
|
4797
4818
|
ngOnInit(): void;
|
|
4798
4819
|
handleShowHideClick(event: MouseEvent): void;
|
|
4799
4820
|
reopenExternalOrderClick(): void;
|
|
@@ -4804,9 +4825,11 @@ declare class TransactionLineActionButtonsComponent implements OnInit {
|
|
|
4804
4825
|
handleViewStockButtonClick(): void;
|
|
4805
4826
|
handleClickCopyLineButtonClick(): void;
|
|
4806
4827
|
handleShowSidePanel(): void;
|
|
4828
|
+
handleCoversionAssistantButtonClick(): void;
|
|
4807
4829
|
private _showPopup;
|
|
4808
4830
|
private _hidePopup;
|
|
4809
4831
|
private _isReopenableExternalCatalogLine;
|
|
4832
|
+
private _getConversionUnitsAvailable;
|
|
4810
4833
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineActionButtonsComponent, never>;
|
|
4811
4834
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineActionButtonsComponent, "co-transaction-line-action-buttons", never, { "configNames": { "alias": "configNames"; "required": false; }; "transactionLine": { "alias": "transactionLine"; "required": false; }; "isFirst": { "alias": "isFirst"; "required": false; }; "orderLineSets": { "alias": "orderLineSets"; "required": false; }; }, { "waitingForUserAction": "waitingForUserAction"; "transactionArticleTextOverviewButtonClicked": "transactionArticleTextOverviewButtonClicked"; "transactionTextButtonClicked": "transactionTextButtonClicked"; "articleTextButtonClicked": "articleTextButtonClicked"; "sidePanelButtonClicked": "sidePanelButtonClicked"; }, never, never, false, never>;
|
|
4812
4835
|
}
|
|
@@ -5103,6 +5126,7 @@ declare class TransactionLineActionButtonsPopupComponent {
|
|
|
5103
5126
|
canReopenExternalOrder: boolean;
|
|
5104
5127
|
canCreateService: boolean;
|
|
5105
5128
|
areAllowedToChangeOrder: boolean;
|
|
5129
|
+
conversionUnitsAvailable: boolean;
|
|
5106
5130
|
reopenExternalOrderClick: EventEmitter<void>;
|
|
5107
5131
|
addDocumentButtonClick: EventEmitter<void>;
|
|
5108
5132
|
articleTextButtonClick: EventEmitter<void>;
|
|
@@ -5111,6 +5135,7 @@ declare class TransactionLineActionButtonsPopupComponent {
|
|
|
5111
5135
|
viewStockButtonClick: EventEmitter<void>;
|
|
5112
5136
|
sidePanelButtonClick: EventEmitter<void>;
|
|
5113
5137
|
copyLineButtonClick: EventEmitter<void>;
|
|
5138
|
+
convAssistButtonClick: EventEmitter<void>;
|
|
5114
5139
|
clickOutsideClick: EventEmitter<void>;
|
|
5115
5140
|
showClass: boolean;
|
|
5116
5141
|
constructor(iconCacheService: IconCacheService);
|
|
@@ -5122,8 +5147,9 @@ declare class TransactionLineActionButtonsPopupComponent {
|
|
|
5122
5147
|
handleViewStockButtonClick(event: MouseEvent): void;
|
|
5123
5148
|
handleSidePanelButtonClick(event: MouseEvent): void;
|
|
5124
5149
|
handleCopyLineButtonClick(event: MouseEvent): void;
|
|
5150
|
+
handleCalcAssistButtonClick(event: MouseEvent): void;
|
|
5125
5151
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineActionButtonsPopupComponent, never>;
|
|
5126
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineActionButtonsPopupComponent, "co-transaction-line-action-buttons-popup", never, { "configNames": { "alias": "configNames"; "required": false; }; "parentForOverlay": { "alias": "parentForOverlay"; "required": false; }; "canReopenExternalOrder": { "alias": "canReopenExternalOrder"; "required": false; }; "canCreateService": { "alias": "canCreateService"; "required": false; }; "areAllowedToChangeOrder": { "alias": "areAllowedToChangeOrder"; "required": false; }; }, { "reopenExternalOrderClick": "reopenExternalOrderClick"; "addDocumentButtonClick": "addDocumentButtonClick"; "articleTextButtonClick": "articleTextButtonClick"; "transactionTextButtonClick": "transactionTextButtonClick"; "createServiceButtonClick": "createServiceButtonClick"; "viewStockButtonClick": "viewStockButtonClick"; "sidePanelButtonClick": "sidePanelButtonClick"; "copyLineButtonClick": "copyLineButtonClick"; "clickOutsideClick": "clickOutsideClick"; }, never, never, false, never>;
|
|
5152
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineActionButtonsPopupComponent, "co-transaction-line-action-buttons-popup", never, { "configNames": { "alias": "configNames"; "required": false; }; "parentForOverlay": { "alias": "parentForOverlay"; "required": false; }; "canReopenExternalOrder": { "alias": "canReopenExternalOrder"; "required": false; }; "canCreateService": { "alias": "canCreateService"; "required": false; }; "areAllowedToChangeOrder": { "alias": "areAllowedToChangeOrder"; "required": false; }; "conversionUnitsAvailable": { "alias": "conversionUnitsAvailable"; "required": false; }; }, { "reopenExternalOrderClick": "reopenExternalOrderClick"; "addDocumentButtonClick": "addDocumentButtonClick"; "articleTextButtonClick": "articleTextButtonClick"; "transactionTextButtonClick": "transactionTextButtonClick"; "createServiceButtonClick": "createServiceButtonClick"; "viewStockButtonClick": "viewStockButtonClick"; "sidePanelButtonClick": "sidePanelButtonClick"; "copyLineButtonClick": "copyLineButtonClick"; "convAssistButtonClick": "convAssistButtonClick"; "clickOutsideClick": "clickOutsideClick"; }, never, never, false, never>;
|
|
5127
5153
|
}
|
|
5128
5154
|
|
|
5129
5155
|
declare class TransactionLineActionButtonsModule {
|
|
@@ -6269,17 +6295,6 @@ declare class TransactionLineSidePanelArticleDetailsComponent {
|
|
|
6269
6295
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineSidePanelArticleDetailsComponent, "co-transaction-line-side-panel-article-details", never, { "suppliers": { "alias": "suppliers"; "required": false; }; "warehouses": { "alias": "warehouses"; "required": false; }; "purchaseAdviceLine": { "alias": "purchaseAdviceLine"; "required": false; }; "onlySupplierAvailable": { "alias": "onlySupplierAvailable"; "required": false; }; }, { "purchaseAdviceLineChange": "purchaseAdviceLineChange"; "closeSideBarClicked": "closeSideBarClicked"; }, never, never, false, never>;
|
|
6270
6296
|
}
|
|
6271
6297
|
|
|
6272
|
-
declare class ArticleService {
|
|
6273
|
-
private _articleConnectorService;
|
|
6274
|
-
private _selectMultipleParameterizedCacheService;
|
|
6275
|
-
constructor(_articleConnectorService: ArticleConnectorService, _selectMultipleParameterizedCacheService: TransactionSelectMultipleParameterizedCacheService);
|
|
6276
|
-
getWarehouseLocations(warehouseNr: number): Promise<any>;
|
|
6277
|
-
getWebViewStartupInfo(request: ExternalCatalogStartupInfoRequest): Promise<ExternalCatalogStartupInfo>;
|
|
6278
|
-
getArticlePrice(request: GetArticlePriceRequest): Promise<GetArticlePriceResult>;
|
|
6279
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ArticleService, never>;
|
|
6280
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ArticleService>;
|
|
6281
|
-
}
|
|
6282
|
-
|
|
6283
6298
|
declare class AlternateSupplierTileComponent {
|
|
6284
6299
|
changeDetection: ChangeDetectorRef;
|
|
6285
6300
|
private _articleService;
|
|
@@ -6508,7 +6523,7 @@ declare class DialogTransactionLineWarehouseLocationModule {
|
|
|
6508
6523
|
|
|
6509
6524
|
declare class TransactionLineWarehouseLocationButtonModule {
|
|
6510
6525
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineWarehouseLocationButtonModule, never>;
|
|
6511
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineWarehouseLocationButtonModule, [typeof TransactionLineWarehouseLocationButtonComponent], [typeof i2.CommonModule, typeof i3.IconModule, typeof DialogTransactionLineWarehouseLocationModule, typeof
|
|
6526
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineWarehouseLocationButtonModule, [typeof TransactionLineWarehouseLocationButtonComponent], [typeof i2.CommonModule, typeof i3.IconModule, typeof DialogTransactionLineWarehouseLocationModule, typeof i5.CatalogFilterModule, typeof TransactionButtonModule, typeof TransactionLineWarehouseLocationModule, typeof TransactionLineLabelModule], [typeof TransactionLineWarehouseLocationButtonComponent]>;
|
|
6512
6527
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineWarehouseLocationButtonModule>;
|
|
6513
6528
|
}
|
|
6514
6529
|
|
|
@@ -6710,7 +6725,7 @@ declare class TransactionPlanningLinePlannedResourceComponent {
|
|
|
6710
6725
|
|
|
6711
6726
|
declare class TransactionPlanningLineModule {
|
|
6712
6727
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPlanningLineModule, never>;
|
|
6713
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionPlanningLineModule, [typeof TransactionPlanningLineComponent, typeof TransactionPlanningLinePlannedResourceComponent], [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 i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof TransactionLineLabelModule], [typeof TransactionPlanningLineComponent]>;
|
|
6728
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionPlanningLineModule, [typeof TransactionPlanningLineComponent, typeof TransactionPlanningLinePlannedResourceComponent], [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 i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof TransactionLineLabelModule], [typeof TransactionPlanningLineComponent, typeof TransactionPlanningLinePlannedResourceComponent]>;
|
|
6714
6729
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionPlanningLineModule>;
|
|
6715
6730
|
}
|
|
6716
6731
|
|
|
@@ -7070,6 +7085,72 @@ declare class TransactionReceiveGoodsLineModule {
|
|
|
7070
7085
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionReceiveGoodsLineModule>;
|
|
7071
7086
|
}
|
|
7072
7087
|
|
|
7088
|
+
declare abstract class TransactionInterbranchReceiveGoodsLineBaseComponent extends TransactionLineBaseComponent implements OnInit, OnDestroy {
|
|
7089
|
+
readonly icons: typeof Icon;
|
|
7090
|
+
readonly transactionTypeCategory: typeof TransactionTypeCategory;
|
|
7091
|
+
warehouseLocationButtonDisabled: boolean;
|
|
7092
|
+
showCheckboxForLine: boolean;
|
|
7093
|
+
returnStockMode: boolean;
|
|
7094
|
+
calculatedStickerAmount: number;
|
|
7095
|
+
private _subscriptions;
|
|
7096
|
+
ngOnInit(): Promise<void>;
|
|
7097
|
+
ngOnDestroy(): void;
|
|
7098
|
+
changeLineAmount(amount: number): void;
|
|
7099
|
+
calcStickerAmount(): void;
|
|
7100
|
+
protected transactionLineSet(): void;
|
|
7101
|
+
private _handleTransactionLineSet;
|
|
7102
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInterbranchReceiveGoodsLineBaseComponent, never>;
|
|
7103
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TransactionInterbranchReceiveGoodsLineBaseComponent, never, never, {}, {}, never, never, true, never>;
|
|
7104
|
+
}
|
|
7105
|
+
|
|
7106
|
+
declare class TransactionInterbranchReceiveGoodsLineComponent extends TransactionInterbranchReceiveGoodsLineBaseComponent implements OnInit {
|
|
7107
|
+
readonly cfgNames: typeof TransactionCfgName;
|
|
7108
|
+
showClass(): boolean;
|
|
7109
|
+
statusBarConfigNames: StatusBarCfgNames;
|
|
7110
|
+
changeNrPackagesNotAllowed(): boolean;
|
|
7111
|
+
changeAmountPerUnitNotAllowed(): boolean;
|
|
7112
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInterbranchReceiveGoodsLineComponent, never>;
|
|
7113
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInterbranchReceiveGoodsLineComponent, "co-transaction-interbranch-receive-goods-line", never, {}, {}, never, never, false, never>;
|
|
7114
|
+
}
|
|
7115
|
+
|
|
7116
|
+
declare class TransactionLineInterbranchWarehouseLocationButtonComponent extends TransactionLineBaseComponent {
|
|
7117
|
+
transactionHeaderService: TransactionHeaderService;
|
|
7118
|
+
transactionLineService: TransactionLineService;
|
|
7119
|
+
transactionEventService: TransactionEventService;
|
|
7120
|
+
service: TransactionService;
|
|
7121
|
+
iconCacheService: IconCacheService;
|
|
7122
|
+
transactionScreenConfigurationService: TransactionScreenConfigurationService;
|
|
7123
|
+
protected dictionaryService: DictionaryService;
|
|
7124
|
+
protected imageService: TransactionImageService;
|
|
7125
|
+
protected changeDetector: ChangeDetectorRef;
|
|
7126
|
+
private _dialogService;
|
|
7127
|
+
private _articleService;
|
|
7128
|
+
readonly icons: typeof Icon;
|
|
7129
|
+
showDialogLocation: boolean;
|
|
7130
|
+
inputLabel: boolean;
|
|
7131
|
+
showClass(): boolean;
|
|
7132
|
+
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _dialogService: TransactionDialogService, _articleService: ArticleService);
|
|
7133
|
+
openWarehouseLocationDialog(event: MouseEvent): Promise<void>;
|
|
7134
|
+
protected transactionLineSet(): void;
|
|
7135
|
+
private _checkLocationValidity;
|
|
7136
|
+
private _setDefaultLocationIfExistInWarehouse;
|
|
7137
|
+
private _locationExistInWarehouse;
|
|
7138
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineInterbranchWarehouseLocationButtonComponent, never>;
|
|
7139
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineInterbranchWarehouseLocationButtonComponent, "co-transaction-line-interbranch-warehouse-location-button", never, { "inputLabel": { "alias": "inputLabel"; "required": false; }; }, {}, never, never, false, never>;
|
|
7140
|
+
}
|
|
7141
|
+
|
|
7142
|
+
declare class TransactionLineInterbranchWarehouseLocationButtonModule {
|
|
7143
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineInterbranchWarehouseLocationButtonModule, never>;
|
|
7144
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineInterbranchWarehouseLocationButtonModule, [typeof TransactionLineInterbranchWarehouseLocationButtonComponent], [typeof i2.CommonModule, typeof i3.IconModule, typeof DialogTransactionLineWarehouseLocationModule, typeof i5.CatalogFilterModule, typeof TransactionButtonModule, typeof TransactionLineWarehouseLocationModule, typeof TransactionLineLabelModule], [typeof TransactionLineInterbranchWarehouseLocationButtonComponent]>;
|
|
7145
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineInterbranchWarehouseLocationButtonModule>;
|
|
7146
|
+
}
|
|
7147
|
+
|
|
7148
|
+
declare class TransactionInterbranchReceiveGoodsLineModule {
|
|
7149
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInterbranchReceiveGoodsLineModule, never>;
|
|
7150
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionInterbranchReceiveGoodsLineModule, [typeof TransactionInterbranchReceiveGoodsLineComponent], [typeof i2.CommonModule, typeof TransactionBaseLineModule, typeof TransactionLineWarehouseButtonModule, typeof TransactionLineWarehouseLocationModule, typeof EditableLabelModule, typeof i3.InputNumberPickerModule, typeof i3.InputCheckboxModule, typeof i3.IconModule, typeof TransactionLineStatusbarModule, typeof i3.InputTextModule, typeof TransactionPrintPackageStickerModule, typeof i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof PipeModule, typeof TransactionLineLabelModule, typeof TransactionLineInterbranchWarehouseLocationButtonModule], [typeof TransactionInterbranchReceiveGoodsLineComponent]>;
|
|
7151
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionInterbranchReceiveGoodsLineModule>;
|
|
7152
|
+
}
|
|
7153
|
+
|
|
7073
7154
|
declare abstract class TransactionPurchaseOrderLineBaseComponent extends TransactionLineBaseComponent implements OnInit, OnDestroy {
|
|
7074
7155
|
transactionHeaderService: TransactionHeaderService;
|
|
7075
7156
|
transactionLineService: TransactionLineService;
|
|
@@ -7795,7 +7876,7 @@ declare class TransactionSalesPickingButtonBarButtonComponent extends Transactio
|
|
|
7795
7876
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSalesPickingButtonBarButtonComponent, "co-transaction-sales-picking-button-bar-button", never, {}, { "buttonClicked": "buttonClicked"; }, never, never, false, never>;
|
|
7796
7877
|
}
|
|
7797
7878
|
|
|
7798
|
-
declare class TransactionSalesOverviewButtonBarButtonComponent extends TransactionButtonBarButtonBaseComponent
|
|
7879
|
+
declare class TransactionSalesOverviewButtonBarButtonComponent extends TransactionButtonBarButtonBaseComponent {
|
|
7799
7880
|
iconCacheService: IconCacheService;
|
|
7800
7881
|
protected changeDetector: ChangeDetectorRef;
|
|
7801
7882
|
private _transactionEventService;
|
|
@@ -7823,7 +7904,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
7823
7904
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSalesOverviewButtonBarButtonComponent, "co-transaction-sales-overview-button-bar-button", never, {}, {}, never, never, false, never>;
|
|
7824
7905
|
}
|
|
7825
7906
|
|
|
7826
|
-
declare class TransactionPurchaseOverviewButtonBarButtonComponent extends TransactionButtonBarButtonBaseComponent
|
|
7907
|
+
declare class TransactionPurchaseOverviewButtonBarButtonComponent extends TransactionButtonBarButtonBaseComponent {
|
|
7827
7908
|
iconCacheService: IconCacheService;
|
|
7828
7909
|
transactionHeaderService: TransactionHeaderService;
|
|
7829
7910
|
transactionEventService: TransactionEventService;
|
|
@@ -8528,7 +8609,8 @@ declare enum DeliveryPlanningUpdateActions {
|
|
|
8528
8609
|
PlanOrder = "planOrder",
|
|
8529
8610
|
PlanLines = "planLines",
|
|
8530
8611
|
DeletePlannedOrder = "deletePlannedOrder",
|
|
8531
|
-
DeletePlannedLines = "deletePlannedLines"
|
|
8612
|
+
DeletePlannedLines = "deletePlannedLines",
|
|
8613
|
+
DeleteOrderReplan = "deleteOrderReplan"
|
|
8532
8614
|
}
|
|
8533
8615
|
|
|
8534
8616
|
declare class DeliveryPlanningMainComponent implements OnInit, OnDestroy {
|
|
@@ -8555,6 +8637,7 @@ declare class DeliveryPlanningMainComponent implements OnInit, OnDestroy {
|
|
|
8555
8637
|
oldWeek: PlanningTransportWeekDay[];
|
|
8556
8638
|
week: PlanningTransportWeekDay[];
|
|
8557
8639
|
action: DeliveryPlanningUpdateActions;
|
|
8640
|
+
resolve?: () => void;
|
|
8558
8641
|
}): Promise<void>;
|
|
8559
8642
|
updateNewValues(): Promise<void>;
|
|
8560
8643
|
getPlanningTransportWeek(): Promise<void>;
|
|
@@ -8801,6 +8884,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
8801
8884
|
oldWeek: PlanningTransportWeekDay[];
|
|
8802
8885
|
week: PlanningTransportWeekDay[];
|
|
8803
8886
|
action: DeliveryPlanningUpdateActions;
|
|
8887
|
+
resolve?: () => void;
|
|
8804
8888
|
}>;
|
|
8805
8889
|
resetPlanningTransportEvent: EventEmitter<void>;
|
|
8806
8890
|
get planTransportWeekArr(): PlanningTransportWeekDay[][];
|
|
@@ -8862,6 +8946,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
8862
8946
|
end: Date;
|
|
8863
8947
|
transId: number;
|
|
8864
8948
|
}, transportWeekDay: PlanningTransportWeekDay, week: PlanningTransportWeekDay[]): Promise<void>;
|
|
8949
|
+
handleMoveNormalEvent(transId: string, transport: PlanningTransportWeekDay, week: PlanningTransportWeekDay[], weekArr: PlanningTransportWeekDay[][]): Promise<void>;
|
|
8865
8950
|
handleReorderOrder(event: {
|
|
8866
8951
|
transId: number;
|
|
8867
8952
|
insertIndex: number;
|
|
@@ -11528,6 +11613,8 @@ declare class TransactionLineToolbarComponent implements OnInit {
|
|
|
11528
11613
|
iconCacheService: IconCacheService;
|
|
11529
11614
|
private _transactionEventService;
|
|
11530
11615
|
private _transactionService;
|
|
11616
|
+
private _articleService;
|
|
11617
|
+
private _changeDetector;
|
|
11531
11618
|
readonly: boolean;
|
|
11532
11619
|
readonly icons: typeof Icon;
|
|
11533
11620
|
private _transactionKind;
|
|
@@ -11538,14 +11625,16 @@ declare class TransactionLineToolbarComponent implements OnInit {
|
|
|
11538
11625
|
canReopenExternalOrder: boolean;
|
|
11539
11626
|
canCreateService: boolean;
|
|
11540
11627
|
areAllowedToChangeOrder: boolean;
|
|
11628
|
+
conversionUnitsAvailable: boolean;
|
|
11541
11629
|
set transactionLine(value: TransactionLineInfo);
|
|
11542
11630
|
set orderLineSets(value: OrderLineSetInfo[]);
|
|
11543
11631
|
get orderLineSets(): OrderLineSetInfo[];
|
|
11544
11632
|
get transactionLine(): TransactionLineInfo;
|
|
11545
11633
|
waitingForUserAction: EventEmitter<boolean>;
|
|
11634
|
+
calcAssistButtonClick: EventEmitter<void>;
|
|
11546
11635
|
showClass(): boolean;
|
|
11547
|
-
constructor(iconCacheService: IconCacheService, _transactionEventService: TransactionEventService, _transactionService: TransactionService);
|
|
11548
|
-
ngOnInit(): void
|
|
11636
|
+
constructor(iconCacheService: IconCacheService, _transactionEventService: TransactionEventService, _transactionService: TransactionService, _articleService: ArticleService, _changeDetector: ChangeDetectorRef);
|
|
11637
|
+
ngOnInit(): Promise<void>;
|
|
11549
11638
|
handleReopenExternalOrderClick(): void;
|
|
11550
11639
|
handleAddDocumentButtonClick(): void;
|
|
11551
11640
|
handleTransactionText(): void;
|
|
@@ -11554,9 +11643,12 @@ declare class TransactionLineToolbarComponent implements OnInit {
|
|
|
11554
11643
|
handleViewStockButtonClick(): void;
|
|
11555
11644
|
handleCopyLineButtonClick(): void;
|
|
11556
11645
|
handleSidePanelButtonClick(): void;
|
|
11646
|
+
handleCalcAssistButtonClick(): void;
|
|
11557
11647
|
private _isReopenableExternalCatalogLine;
|
|
11648
|
+
private _getConversionUnitsAvailable;
|
|
11649
|
+
private _detectChanges;
|
|
11558
11650
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineToolbarComponent, never>;
|
|
11559
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineToolbarComponent, "co-transaction-line-toolbar", never, { "configNames": { "alias": "configNames"; "required": false; }; "canReopenExternalOrder": { "alias": "canReopenExternalOrder"; "required": false; }; "canCreateService": { "alias": "canCreateService"; "required": false; }; "areAllowedToChangeOrder": { "alias": "areAllowedToChangeOrder"; "required": false; }; "transactionLine": { "alias": "transactionLine"; "required": false; }; "orderLineSets": { "alias": "orderLineSets"; "required": false; }; }, { "waitingForUserAction": "waitingForUserAction"; }, never, never, false, never>;
|
|
11651
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineToolbarComponent, "co-transaction-line-toolbar", never, { "configNames": { "alias": "configNames"; "required": false; }; "canReopenExternalOrder": { "alias": "canReopenExternalOrder"; "required": false; }; "canCreateService": { "alias": "canCreateService"; "required": false; }; "areAllowedToChangeOrder": { "alias": "areAllowedToChangeOrder"; "required": false; }; "conversionUnitsAvailable": { "alias": "conversionUnitsAvailable"; "required": false; }; "transactionLine": { "alias": "transactionLine"; "required": false; }; "orderLineSets": { "alias": "orderLineSets"; "required": false; }; }, { "waitingForUserAction": "waitingForUserAction"; "calcAssistButtonClick": "calcAssistButtonClick"; }, never, never, false, never>;
|
|
11560
11652
|
}
|
|
11561
11653
|
|
|
11562
11654
|
declare class TransactionLineToolbarModule {
|
|
@@ -11567,7 +11659,7 @@ declare class TransactionLineToolbarModule {
|
|
|
11567
11659
|
|
|
11568
11660
|
declare class TransactionLineModule {
|
|
11569
11661
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineModule, never>;
|
|
11570
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineModule, [typeof TransactionLineComponent], [typeof i2.CommonModule, typeof TransactionTextLineModule, typeof TransactionOverviewLineModule, typeof TransactionPurchaseLineModule, typeof TransactionGoodsAllocationLineModule, typeof TransactionCustomerPortalLineModule, typeof TransactionOrderDeliveryLineModule, typeof TransactionInvoiceLineModule, typeof TransactionPickedLineModule, typeof TransactionToBePickedLineModule, typeof TransactionPurchaseOverviewLineModule, typeof TransactionReceiveGoodsLineModule, typeof TransactionPurchaseOrderLineModule, typeof TransactionCashRegisterOrderLineModule, typeof TransactionSalesOrderQuotationLineModule, typeof TransactionReserveGoodsLineModule, typeof TransactionPurchaseOrderStickersLineModule, typeof TransactionPurchaseTransportLineModule, typeof TransactionPlanningLineModule, typeof TransactionLineLabelModule, typeof TransactionLineSidePanelModule, typeof i3.ClickoutsideModule, typeof TransactionLineToolbarModule], [typeof TransactionLineComponent]>;
|
|
11662
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineModule, [typeof TransactionLineComponent], [typeof i2.CommonModule, typeof TransactionTextLineModule, typeof TransactionOverviewLineModule, typeof TransactionPurchaseLineModule, typeof TransactionGoodsAllocationLineModule, typeof TransactionCustomerPortalLineModule, typeof TransactionOrderDeliveryLineModule, typeof TransactionInvoiceLineModule, typeof TransactionPickedLineModule, typeof TransactionToBePickedLineModule, typeof TransactionPurchaseOverviewLineModule, typeof TransactionReceiveGoodsLineModule, typeof TransactionInterbranchReceiveGoodsLineModule, typeof TransactionPurchaseOrderLineModule, typeof TransactionCashRegisterOrderLineModule, typeof TransactionSalesOrderQuotationLineModule, typeof TransactionReserveGoodsLineModule, typeof TransactionPurchaseOrderStickersLineModule, typeof TransactionPurchaseTransportLineModule, typeof TransactionPlanningLineModule, typeof TransactionLineLabelModule, typeof TransactionLineSidePanelModule, typeof i3.ClickoutsideModule, typeof TransactionLineToolbarModule], [typeof TransactionLineComponent]>;
|
|
11571
11663
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineModule>;
|
|
11572
11664
|
}
|
|
11573
11665
|
|
|
@@ -12023,7 +12115,7 @@ declare class RelationContactDetailsComponent extends RelationBaseComponent {
|
|
|
12023
12115
|
|
|
12024
12116
|
declare class RelationContactDetailsModule {
|
|
12025
12117
|
static ɵfac: i0.ɵɵFactoryDeclaration<RelationContactDetailsModule, never>;
|
|
12026
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RelationContactDetailsModule, [typeof RelationContactDetailsComponent], [typeof i2.CommonModule, typeof i3.InputTextModule, typeof PipeModule, typeof i3.InputCheckboxModule, typeof i3.ScreenConfigurationModule, typeof i5.RelationContactOptionsModule], [typeof RelationContactDetailsComponent]>;
|
|
12118
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RelationContactDetailsModule, [typeof RelationContactDetailsComponent], [typeof i2.CommonModule, typeof i3.InputTextModule, typeof PipeModule, typeof i3.InputCheckboxModule, typeof i3.ScreenConfigurationModule, typeof i5$1.RelationContactOptionsModule], [typeof RelationContactDetailsComponent]>;
|
|
12027
12119
|
static ɵinj: i0.ɵɵInjectorDeclaration<RelationContactDetailsModule>;
|
|
12028
12120
|
}
|
|
12029
12121
|
|
|
@@ -13092,7 +13184,7 @@ declare class DialogCatalogComponent implements OnInit, OnDestroy {
|
|
|
13092
13184
|
|
|
13093
13185
|
declare class DialogCatalogModule {
|
|
13094
13186
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogCatalogModule, never>;
|
|
13095
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DialogCatalogModule, [typeof DialogCatalogComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof
|
|
13187
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DialogCatalogModule, [typeof DialogCatalogComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof i5.CatalogSearchModule, typeof i6.StockModule, typeof PipeModule, typeof i5.CatalogExternalSourceModule, typeof i3.IconModule, typeof i7.IoneProductModule, typeof i7.ProductExternalSourceModule], [typeof DialogCatalogComponent]>;
|
|
13096
13188
|
static ɵinj: i0.ɵɵInjectorDeclaration<DialogCatalogModule>;
|
|
13097
13189
|
}
|
|
13098
13190
|
|
|
@@ -13286,9 +13378,36 @@ declare class TransactionHeaderRelationDateModule {
|
|
|
13286
13378
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderRelationDateModule>;
|
|
13287
13379
|
}
|
|
13288
13380
|
|
|
13381
|
+
declare class TransactionHeaderTargetWarehouseComponent extends TransactionFilterPopupHeaderBaseComponent<Warehouse> implements OnInit {
|
|
13382
|
+
transactionHeaderService: TransactionHeaderService;
|
|
13383
|
+
transactionEventService: TransactionEventService;
|
|
13384
|
+
service: TransactionService;
|
|
13385
|
+
iconCacheService: IconCacheService;
|
|
13386
|
+
transactionScreenConfigurationService: TransactionScreenConfigurationService;
|
|
13387
|
+
protected dictionaryService: DictionaryService;
|
|
13388
|
+
protected imageService: TransactionImageService;
|
|
13389
|
+
protected changeDetector: ChangeDetectorRef;
|
|
13390
|
+
fields: Object;
|
|
13391
|
+
warehouseModel: Warehouse;
|
|
13392
|
+
protected codeField: string;
|
|
13393
|
+
protected checkField: string;
|
|
13394
|
+
protected propsForLabel: CheckboxListPropertyInterface[];
|
|
13395
|
+
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef);
|
|
13396
|
+
ngOnInit(): void;
|
|
13397
|
+
private _setWarehouseModel;
|
|
13398
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderTargetWarehouseComponent, never>;
|
|
13399
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderTargetWarehouseComponent, "co-transaction-header-target-warehouse", never, {}, {}, never, never, false, never>;
|
|
13400
|
+
}
|
|
13401
|
+
|
|
13402
|
+
declare class TransactionHeaderTargetWarehouseModule {
|
|
13403
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderTargetWarehouseModule, never>;
|
|
13404
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderTargetWarehouseModule, [typeof TransactionHeaderTargetWarehouseComponent], [typeof i2.CommonModule, typeof PipeModule, typeof i3.InputCheckboxModule, typeof TransactionLineCheckboxModule, typeof i3.TooltipDirectiveModule, typeof i3.ListOfValuesModule, typeof i3.ScreenConfigurationModule], [typeof TransactionHeaderTargetWarehouseComponent]>;
|
|
13405
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderTargetWarehouseModule>;
|
|
13406
|
+
}
|
|
13407
|
+
|
|
13289
13408
|
declare class TransactionHeaderPopupModule {
|
|
13290
13409
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderPopupModule, never>;
|
|
13291
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderPopupModule, [typeof TransactionHeaderPopupComponent, typeof TransactionHeaderPopupRelationComponent, typeof TransactionHeaderPopupOrderComponent, typeof TransactionHeaderPopupDeliveryComponent, typeof TransactionHeaderPopupPaymentComponent, typeof CashOnDeliveryModalComponent, typeof ProjectCodeyModalComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof PipeModule, typeof TransactionFilterCategoriesModule, typeof i3.FormModule, typeof RelationTypeModule, typeof CoreModule, typeof RelationGeneralModule, typeof RelationAddressesModule, typeof DropShipmentModule, typeof i3.InputCheckboxModule, typeof RelationPreferencesModule, typeof TransactionHeaderBranchModule, typeof TransactionHeaderSalesPersonModule, typeof TransactionHeaderAdministrativeRelationModule, typeof TransactionHeaderPriceKindModule, typeof TransactionHeaderCurrencyModule, typeof TransactionHeaderTypeModule, typeof TransactionHeaderPaymentConditionModule, typeof TransactionHeaderHoldCodesModule, typeof TransactionHeaderMarketingModule, typeof DepositPaymentModule, typeof TransactionHeaderDeliveryOptionsModule, typeof TransactionHeaderRemarksModule, typeof TransactionHeaderReferenceModule, typeof TransactionHeaderRelationReferenceModule, typeof TransactionHeaderDeliveryMethodButtonModule, typeof i3.ButtonModule, typeof TransactionHeaderDefinitiveModule, typeof TransactionHeaderDeliveryDateModule, typeof TransactionHeaderPreferredDeliveryDateModule, typeof TransactionHeaderDeliverydateDefinitiveButtonModule, typeof TransactionHeaderDepositPercentageModule, typeof TransactionHeaderDepositAmountModule, typeof TransactionHeaderPaymentButtonModule, typeof i3.IconModule, typeof i3.TooltipDirectiveModule, typeof LoaderModule, typeof TransactionHeaderDivideEvenlyModule, typeof TransactionHeaderAmountToSettleModule, typeof i3.InputTextModule, typeof TransactionHeaderScoringChanceModule, typeof TransactionHeaderRetailStadiumModule, typeof TransactionHeaderScoringDateModule, typeof TransactionHeaderPartialDeliveryModule, typeof i3.ScreenConfigurationModule, typeof TransactionHeaderAutoRecalculateDepositModule, typeof TransactionHeaderUseDepositRuleModule, typeof TransactionHeaderPriceKindModule, typeof TransactionHeaderProjectCodeModule, typeof RelationContactDetailsModule, typeof i3.InputTextareaModule, typeof DialogCatalogModule, typeof i3.InputSearchModule, typeof ServiceWizardQaModule, typeof DialogHeaderSearchModule, typeof DialogTransactionSearchModule, typeof i6.FilesUploadModule, typeof i3.InputDatePickerModule, typeof TransactionHeaderPreferredDeliveryTimeModule, typeof i3.ImageModule, typeof PaymentModule, typeof i3.InputRadioButtonModule, typeof TransactionHeaderAssemblyDateModule, typeof TransactionHeaderTotalAssemblyTimeModule, typeof TransactionHeaderDistrictModule, typeof TransactionHeaderRelationDateModule], [typeof TransactionHeaderPopupComponent, typeof TransactionHeaderPopupRelationComponent]>;
|
|
13410
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderPopupModule, [typeof TransactionHeaderPopupComponent, typeof TransactionHeaderPopupRelationComponent, typeof TransactionHeaderPopupOrderComponent, typeof TransactionHeaderPopupDeliveryComponent, typeof TransactionHeaderPopupPaymentComponent, typeof CashOnDeliveryModalComponent, typeof ProjectCodeyModalComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof PipeModule, typeof TransactionFilterCategoriesModule, typeof i3.FormModule, typeof RelationTypeModule, typeof CoreModule, typeof RelationGeneralModule, typeof RelationAddressesModule, typeof DropShipmentModule, typeof i3.InputCheckboxModule, typeof RelationPreferencesModule, typeof TransactionHeaderBranchModule, typeof TransactionHeaderSalesPersonModule, typeof TransactionHeaderAdministrativeRelationModule, typeof TransactionHeaderPriceKindModule, typeof TransactionHeaderCurrencyModule, typeof TransactionHeaderTypeModule, typeof TransactionHeaderPaymentConditionModule, typeof TransactionHeaderHoldCodesModule, typeof TransactionHeaderMarketingModule, typeof DepositPaymentModule, typeof TransactionHeaderDeliveryOptionsModule, typeof TransactionHeaderRemarksModule, typeof TransactionHeaderReferenceModule, typeof TransactionHeaderRelationReferenceModule, typeof TransactionHeaderDeliveryMethodButtonModule, typeof i3.ButtonModule, typeof TransactionHeaderDefinitiveModule, typeof TransactionHeaderDeliveryDateModule, typeof TransactionHeaderPreferredDeliveryDateModule, typeof TransactionHeaderDeliverydateDefinitiveButtonModule, typeof TransactionHeaderDepositPercentageModule, typeof TransactionHeaderDepositAmountModule, typeof TransactionHeaderPaymentButtonModule, typeof i3.IconModule, typeof i3.TooltipDirectiveModule, typeof LoaderModule, typeof TransactionHeaderDivideEvenlyModule, typeof TransactionHeaderAmountToSettleModule, typeof i3.InputTextModule, typeof TransactionHeaderScoringChanceModule, typeof TransactionHeaderRetailStadiumModule, typeof TransactionHeaderScoringDateModule, typeof TransactionHeaderPartialDeliveryModule, typeof i3.ScreenConfigurationModule, typeof TransactionHeaderAutoRecalculateDepositModule, typeof TransactionHeaderUseDepositRuleModule, typeof TransactionHeaderPriceKindModule, typeof TransactionHeaderProjectCodeModule, typeof RelationContactDetailsModule, typeof i3.InputTextareaModule, typeof DialogCatalogModule, typeof i3.InputSearchModule, typeof ServiceWizardQaModule, typeof DialogHeaderSearchModule, typeof DialogTransactionSearchModule, typeof i6.FilesUploadModule, typeof i3.InputDatePickerModule, typeof TransactionHeaderPreferredDeliveryTimeModule, typeof i3.ImageModule, typeof PaymentModule, typeof i3.InputRadioButtonModule, typeof TransactionHeaderAssemblyDateModule, typeof TransactionHeaderTotalAssemblyTimeModule, typeof TransactionHeaderDistrictModule, typeof TransactionHeaderRelationDateModule, typeof TransactionHeaderTargetWarehouseModule], [typeof TransactionHeaderPopupComponent, typeof TransactionHeaderPopupRelationComponent]>;
|
|
13292
13411
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderPopupModule>;
|
|
13293
13412
|
}
|
|
13294
13413
|
|
|
@@ -13506,6 +13625,7 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
13506
13625
|
showReservationPopup: boolean;
|
|
13507
13626
|
showTransactionText: boolean;
|
|
13508
13627
|
showArticleText: boolean;
|
|
13628
|
+
showConversionAssistant: boolean;
|
|
13509
13629
|
showCopyOrderDialog: boolean;
|
|
13510
13630
|
showArticleStockPopup: boolean;
|
|
13511
13631
|
showPreferredPlanning: boolean;
|
|
@@ -13543,6 +13663,7 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
13543
13663
|
handleShowArticleTextOverview(line: TransactionLineInfo): void;
|
|
13544
13664
|
handleShowTransactionText(line: TransactionLineInfo): void;
|
|
13545
13665
|
handleShowArticleText(line: TransactionLineInfo): void;
|
|
13666
|
+
handleShowConversionAssistant(line: TransactionLineInfo): void;
|
|
13546
13667
|
saveTransactionLineText(data: {
|
|
13547
13668
|
request: TransactionAddTextLineRequest;
|
|
13548
13669
|
new: boolean;
|
|
@@ -13557,6 +13678,7 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
13557
13678
|
}): Promise<void>;
|
|
13558
13679
|
handleEditTransactionText(line: TransactionLineInfo): void;
|
|
13559
13680
|
handleEditArticleText(line: TransactionLineInfo): void;
|
|
13681
|
+
updateArticleLineAmount(amount: number): Promise<void>;
|
|
13560
13682
|
handleCopyTransactionLine(line: TransactionLineInfo): void;
|
|
13561
13683
|
handleCreateServiceRequest(lineNr: number): void;
|
|
13562
13684
|
handleViewStock(goodId: number): void;
|
|
@@ -13567,6 +13689,8 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
13567
13689
|
showTransactionTextDialog(): void;
|
|
13568
13690
|
showArticleTextDialog(): void;
|
|
13569
13691
|
showArticleTextOverviewDialog(): void;
|
|
13692
|
+
showConversionAssistantDialog(): void;
|
|
13693
|
+
closeConversionAssistantDialog(): void;
|
|
13570
13694
|
shouldShowTiles(): boolean;
|
|
13571
13695
|
fullyInvoiced(): boolean;
|
|
13572
13696
|
private _getOrderLineSetIfExists;
|
|
@@ -13932,8 +14056,7 @@ declare class TransactionQuickAccessInterbranchReceivedGoodsComponent extends Tr
|
|
|
13932
14056
|
protected emailDocument(emailInvoiceRequest: ReportingDocumentEmailSignDocBaseRequest): void;
|
|
13933
14057
|
protected transactionInfoSet(): void;
|
|
13934
14058
|
protected combinedDocument(request: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest, localPrint: boolean): void;
|
|
13935
|
-
private
|
|
13936
|
-
private getIsSingleLineWarehouse;
|
|
14059
|
+
private setLocations;
|
|
13937
14060
|
private getLocations;
|
|
13938
14061
|
private checkAndSetNoColliStickers;
|
|
13939
14062
|
private _receiveGoods;
|
|
@@ -15817,6 +15940,7 @@ declare class DialogTransactionLineWarehouseCcComponent extends DialogBaseCompon
|
|
|
15817
15940
|
iconCacheService: IconCacheService;
|
|
15818
15941
|
transactionHeaderService: TransactionHeaderService;
|
|
15819
15942
|
transactionLineService: TransactionLineService;
|
|
15943
|
+
protected articleService: ArticleService;
|
|
15820
15944
|
readonly icons: typeof Icon;
|
|
15821
15945
|
readonly tab: typeof WarehouseCCTab;
|
|
15822
15946
|
readonly buttonType: typeof AppPopupButtonType;
|
|
@@ -15840,8 +15964,12 @@ declare class DialogTransactionLineWarehouseCcComponent extends DialogBaseCompon
|
|
|
15840
15964
|
directSellSupplier: SupplierLightObject;
|
|
15841
15965
|
directSellPurchaseOrderNumber: number;
|
|
15842
15966
|
stockForecastDeliveryDate: Date;
|
|
15967
|
+
conversionUnitsAvailable: boolean;
|
|
15968
|
+
conversionUnits: Unit[];
|
|
15969
|
+
chosenConversionUnit: Unit;
|
|
15970
|
+
conversionAmount: string;
|
|
15843
15971
|
readonly TransactionKind: typeof TransactionKind;
|
|
15844
|
-
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService);
|
|
15972
|
+
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, articleService: ArticleService);
|
|
15845
15973
|
ngOnInit(): Promise<void>;
|
|
15846
15974
|
handleQuantityChange(value: any): void;
|
|
15847
15975
|
handleCommissionCodeChange(value: any): void;
|
|
@@ -15851,16 +15979,18 @@ declare class DialogTransactionLineWarehouseCcComponent extends DialogBaseCompon
|
|
|
15851
15979
|
handleClose(type: AppPopupButtonType): void;
|
|
15852
15980
|
showTab(tab: WarehouseCCTab): void;
|
|
15853
15981
|
checkWarehouseForTabSwitch(tab: WarehouseCCTab): void;
|
|
15982
|
+
recalculateConversionAmountIfNeeded(): Promise<void>;
|
|
15854
15983
|
handleCloseDialog(event: MouseEvent, type: AppPopupButtonType): void;
|
|
15855
15984
|
private _activeTabValid;
|
|
15856
15985
|
private _scrollIntoView;
|
|
15986
|
+
protected readonly model: i0.ModelFunction;
|
|
15857
15987
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogTransactionLineWarehouseCcComponent, never>;
|
|
15858
15988
|
static ɵcmp: i0.ɵɵComponentDeclaration<DialogTransactionLineWarehouseCcComponent, "co-dialog-transaction-line-warehouse-cc", never, { "transactionKind": { "alias": "transactionKind"; "required": false; }; }, { "close": "close"; }, never, never, false, never>;
|
|
15859
15989
|
}
|
|
15860
15990
|
|
|
15861
15991
|
declare class DialogTransactionLineWarehouseCcModule {
|
|
15862
15992
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogTransactionLineWarehouseCcModule, never>;
|
|
15863
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DialogTransactionLineWarehouseCcModule, [typeof DialogTransactionLineWarehouseCcComponent, typeof TransactionLineWarehouseCcGeneralComponent, typeof TransactionLineWarehouseCcDirectsellComponent, typeof TransactionLineWarehouseCcInterbranchComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof PipeModule, typeof TransactionLineCheckboxModule, typeof TransactionLineCommissionCodeModule, typeof TransactionLineWarehouseModule, typeof i3.InputNumberPickerModule, typeof i3.ButtonModule, typeof i3.IconModule, typeof i3.ListOfValuesModule, typeof i3.InputCheckboxModule, typeof i3.FormModule, typeof TransactionLineDirectSellModule, typeof i3.InputTextModule], [typeof DialogTransactionLineWarehouseCcComponent]>;
|
|
15993
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DialogTransactionLineWarehouseCcModule, [typeof DialogTransactionLineWarehouseCcComponent, typeof TransactionLineWarehouseCcGeneralComponent, typeof TransactionLineWarehouseCcDirectsellComponent, typeof TransactionLineWarehouseCcInterbranchComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof PipeModule, typeof TransactionLineCheckboxModule, typeof TransactionLineCommissionCodeModule, typeof TransactionLineWarehouseModule, typeof i3.InputNumberPickerModule, typeof i3.ButtonModule, typeof i3.IconModule, typeof i3.ListOfValuesModule, typeof i3.InputCheckboxModule, typeof i3.FormModule, typeof TransactionLineDirectSellModule, typeof i3.InputTextModule, typeof PipeModule], [typeof DialogTransactionLineWarehouseCcComponent]>;
|
|
15864
15994
|
static ɵinj: i0.ɵɵInjectorDeclaration<DialogTransactionLineWarehouseCcModule>;
|
|
15865
15995
|
}
|
|
15866
15996
|
|
|
@@ -16063,9 +16193,37 @@ declare class TransactionLineActivitiesModule {
|
|
|
16063
16193
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineActivitiesModule>;
|
|
16064
16194
|
}
|
|
16065
16195
|
|
|
16196
|
+
declare class TransactionLineConversionAssistantComponent implements OnInit {
|
|
16197
|
+
iconCacheService: IconCacheService;
|
|
16198
|
+
private _articleService;
|
|
16199
|
+
private _transactionService;
|
|
16200
|
+
readonly icons: typeof Icon;
|
|
16201
|
+
transactionLine: TransactionLineInfo;
|
|
16202
|
+
closeClick: EventEmitter<MouseEvent>;
|
|
16203
|
+
cancelClick: EventEmitter<MouseEvent>;
|
|
16204
|
+
saveClick: EventEmitter<number>;
|
|
16205
|
+
showClass(): boolean;
|
|
16206
|
+
conversionUnits: Unit[];
|
|
16207
|
+
chosenConversionUnit: Unit;
|
|
16208
|
+
conversionAmount: string;
|
|
16209
|
+
articleAmount: number;
|
|
16210
|
+
constructor(iconCacheService: IconCacheService, _articleService: ArticleService, _transactionService: TransactionService);
|
|
16211
|
+
ngOnInit(): void;
|
|
16212
|
+
private _getConversionUnits;
|
|
16213
|
+
recalculateConversionAmountIfNeeded(): Promise<void>;
|
|
16214
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineConversionAssistantComponent, never>;
|
|
16215
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineConversionAssistantComponent, "co-transaction-line-conversion-assistant", never, { "transactionLine": { "alias": "transactionLine"; "required": false; }; }, { "closeClick": "closeClick"; "cancelClick": "cancelClick"; "saveClick": "saveClick"; }, never, never, false, never>;
|
|
16216
|
+
}
|
|
16217
|
+
|
|
16218
|
+
declare class TransactionLineConversionAssistantModule {
|
|
16219
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineConversionAssistantModule, never>;
|
|
16220
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineConversionAssistantModule, [typeof TransactionLineConversionAssistantComponent], [typeof i2.CommonModule, typeof CoreModule, typeof i3.CoDialogModule, typeof i13.DragDropModule, typeof i3.ButtonModule, typeof TransactionArticleTextModule, typeof PipeModule, typeof i3.IconModule, typeof i3.InputNumberPickerModule, typeof i3.InputTextModule, typeof i3.ListOfValuesModule], [typeof TransactionLineConversionAssistantComponent]>;
|
|
16221
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineConversionAssistantModule>;
|
|
16222
|
+
}
|
|
16223
|
+
|
|
16066
16224
|
declare class TransactionInternalModule {
|
|
16067
16225
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInternalModule, never>;
|
|
16068
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionInternalModule, [typeof TransactionInternalComponent, typeof TransactionSalesReservationPopupComponent], [typeof i2.CommonModule, typeof TransactionHeaderModule, typeof TransactionQuickAccessModule, typeof TransactionButtonBarModule, typeof AvatarModule, typeof i3.ViewModeButtonsModule, typeof TransactionCardModule, typeof TransactionLinesModule, typeof AddProductModule, typeof TransactionTotalsModule, typeof TransactionLineSidePanelModule, typeof TransactionArticleTextOverviewModule, typeof TransactionArticleTextModule, typeof PipeModule, typeof TransactionCopyOrderModule, typeof i13.DragDropModule, typeof TransactionLinesSidePanelModule, typeof i3.ButtonModule, typeof i3.IconModule, typeof TransactionButtonModule, typeof i3.ScreenConfigurationModule, typeof TransactionServiceOverviewModule, typeof TransactionCardsModule, typeof TransactionMarginModule, typeof ClickBlockModule, typeof DialogTransactionLineWarehouseCcModule, typeof DialogTransactionHeaderBranchModule, typeof DialogBranchModule, typeof TransactionPurchaseReservationOrderTileModule, typeof i3.CoDialogModule, typeof i6.StockModule, typeof TransactionArticleStockModule, typeof TransactionOrderTileModule, typeof TransactionHeaderCustomerPortalModule, typeof TransactionSalesPersonInputModule, typeof TransactionHeaderSalesPersonModule, typeof i3.ClickoutsideModule, typeof i3.OverlayModule, typeof TransactionHeaderHandledByModule, typeof i6.FormBuilderUserFormModule, typeof DeliveryPlanningOverviewModule, typeof TransactionLineActivitiesModule], [typeof TransactionInternalComponent, typeof TransactionSalesReservationPopupComponent]>;
|
|
16226
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionInternalModule, [typeof TransactionInternalComponent, typeof TransactionSalesReservationPopupComponent], [typeof i2.CommonModule, typeof TransactionHeaderModule, typeof TransactionQuickAccessModule, typeof TransactionButtonBarModule, typeof AvatarModule, typeof i3.ViewModeButtonsModule, typeof TransactionCardModule, typeof TransactionLinesModule, typeof AddProductModule, typeof TransactionTotalsModule, typeof TransactionLineSidePanelModule, typeof TransactionArticleTextOverviewModule, typeof TransactionArticleTextModule, typeof PipeModule, typeof TransactionCopyOrderModule, typeof i13.DragDropModule, typeof TransactionLinesSidePanelModule, typeof i3.ButtonModule, typeof i3.IconModule, typeof TransactionButtonModule, typeof i3.ScreenConfigurationModule, typeof TransactionServiceOverviewModule, typeof TransactionCardsModule, typeof TransactionMarginModule, typeof ClickBlockModule, typeof DialogTransactionLineWarehouseCcModule, typeof DialogTransactionHeaderBranchModule, typeof DialogBranchModule, typeof TransactionPurchaseReservationOrderTileModule, typeof i3.CoDialogModule, typeof i6.StockModule, typeof TransactionArticleStockModule, typeof TransactionOrderTileModule, typeof TransactionHeaderCustomerPortalModule, typeof TransactionSalesPersonInputModule, typeof TransactionHeaderSalesPersonModule, typeof i3.ClickoutsideModule, typeof i3.OverlayModule, typeof TransactionHeaderHandledByModule, typeof i6.FormBuilderUserFormModule, typeof DeliveryPlanningOverviewModule, typeof TransactionLineActivitiesModule, typeof TransactionLineConversionAssistantModule], [typeof TransactionInternalComponent, typeof TransactionSalesReservationPopupComponent]>;
|
|
16069
16227
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionInternalModule>;
|
|
16070
16228
|
}
|
|
16071
16229
|
|
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
@include export-module('cc-delivery-planning-overview-popup-layout') {
|
|
2
2
|
.co-delivery-planning-overview-popup {
|
|
3
3
|
|
|
4
|
+
.body-wrapper {
|
|
5
|
+
margin-top: 50px;
|
|
4
6
|
.popup-row {
|
|
7
|
+
|
|
8
|
+
.row {
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: row;
|
|
11
|
+
align-items: center;
|
|
12
|
+
gap: 5px;
|
|
13
|
+
justify-content: start;
|
|
14
|
+
padding-bottom: 5px;
|
|
15
|
+
}
|
|
5
16
|
display: flex;
|
|
6
17
|
flex-direction: row;
|
|
7
18
|
align-items: center;
|
|
@@ -10,6 +21,7 @@
|
|
|
10
21
|
padding-bottom: 10px;
|
|
11
22
|
|
|
12
23
|
|
|
24
|
+
}
|
|
13
25
|
|
|
14
26
|
co-editable-label {
|
|
15
27
|
display: flex;
|