@colijnit/transaction 261.20.22 → 261.20.24
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 +1869 -1298
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +115 -35
- 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-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-line-interbranch-receive-goods/style/_layout.scss +78 -78
- package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss +2 -2
- package/lib/component/transaction-line-interbranch-receive-goods/style/_theme.scss +4 -4
- package/lib/component/transaction-line-interbranch-receive-goods/style/material.scss +4 -4
- package/lib/component/transaction-lines-side-panel/transaction-lines-side-panel-cash-desk/style/_layout.scss +6 -2
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_layout.scss +27 -27
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_material-definition.scss +1 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_theme.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/material.scss +4 -4
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_layout.scss +73 -73
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_theme.scss +6 -6
- package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/material.scss +4 -4
- 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';
|
|
@@ -287,6 +289,7 @@ import { EmailHistoricWorkOrderRequest } from '@colijnit/transactionapi/build/mo
|
|
|
287
289
|
import { PdfWorkOrderRequest } from '@colijnit/transactionapi/build/model/pdf-work-order-request';
|
|
288
290
|
import { PdfWorkOrderResponse } from '@colijnit/transactionapi/build/model/pdf-work-order-response.bo';
|
|
289
291
|
import { PdfHistoricWorkOrderRequest } from '@colijnit/transactionapi/build/model/pdf-historic-work-order-request';
|
|
292
|
+
import { LspWmsDeliveryNotePrintRequest } from '@colijnit/transactionapi/build/model/lsp-wms-delivery-note-print-request';
|
|
290
293
|
import { BusinessObjectIDType } from '@colijnit/ioneconnector/build/type/business-object-id-type';
|
|
291
294
|
import { RelationKind as RelationKind$1 } from '@colijnit/articleapi/build/enum/relation-kind.enum';
|
|
292
295
|
import { Relation } from '@colijnit/relationapi/build/model/relation.bo';
|
|
@@ -779,6 +782,7 @@ declare class TransactionEventService {
|
|
|
779
782
|
readonly editTransactionText: Subject<TransactionLineInfo>;
|
|
780
783
|
readonly editorActive: BehaviorSubject<boolean>;
|
|
781
784
|
readonly articleLineTextAddedOrChanged: Subject<number>;
|
|
785
|
+
readonly requestConversionAssistant: Subject<TransactionLineInfo>;
|
|
782
786
|
readonly newPlanOrderEvent: Subject<void>;
|
|
783
787
|
readonly updatePlanningEvent: Subject<void>;
|
|
784
788
|
readonly openSidePanel: Subject<TransactionLineInfo>;
|
|
@@ -992,6 +996,8 @@ declare class ArticleConnectorService {
|
|
|
992
996
|
storeCatFarmCompositionArticle(catalogId: number, articleFlatTree: ArticleFlatTreeDTO): Promise<string>;
|
|
993
997
|
getWebViewStartupInfo(request: ExternalCatalogStartupInfoRequest): Promise<ExternalCatalogStartupInfo>;
|
|
994
998
|
getArticlePrice(request: GetArticlePriceRequest): Promise<GetArticlePriceResult>;
|
|
999
|
+
getConversionUnitsForDefaultArticleUnitByGoodIdAndTransactionKind(goodId: number, transactionKind: string): Promise<Unit[]>;
|
|
1000
|
+
convertAmountByUnitCodeToDefaultUnitOfArticle(request: ConvertQuantityToDefaultUnitRequest): Promise<number>;
|
|
995
1001
|
private _handleExceptionFromResponse;
|
|
996
1002
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArticleConnectorService, never>;
|
|
997
1003
|
static ɵprov: i0.ɵɵInjectableDeclaration<ArticleConnectorService>;
|
|
@@ -1430,6 +1436,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1430
1436
|
getPaymentMethodsByCashRegisterGroupForCashRegister(cashRegisterGroupId: number): Promise<PaymentMethod[]>;
|
|
1431
1437
|
getLspPackageInfoPrintLayouts(showLoader?: boolean): Promise<ReportLayoutSelectionPrint[]>;
|
|
1432
1438
|
printLspPackageInfo(request: PrintLspPackageInfoRequest, showLoader?: boolean): Promise<void>;
|
|
1439
|
+
printDeliveryNoteForLspPackage(request: LspWmsDeliveryNotePrintRequest, showLoader?: boolean): Promise<void>;
|
|
1433
1440
|
getRouteDeparture(request: GetRouteDepartureRequest, showLoader?: boolean): Promise<string>;
|
|
1434
1441
|
changeHeadersTransactionsDefinitive(request: ChangeHeadersTransactionsDefinitiveRequest, showLoader?: boolean): Promise<void>;
|
|
1435
1442
|
generateInterbranchOrders(selectionList: StockReplenishment[], showLoader?: boolean): Promise<boolean>;
|
|
@@ -1894,6 +1901,7 @@ declare class TransactionConnectorService {
|
|
|
1894
1901
|
getCashRegistersForTransaction(transactionUUID: string): Promise<CashRegister[]>;
|
|
1895
1902
|
getLspPackageInfoPrintLayouts(showLoader?: boolean): Promise<ReportLayoutSelectionPrint[]>;
|
|
1896
1903
|
printLspPackageInfo(request: PrintLspPackageInfoRequest, showLoader?: boolean): Promise<void>;
|
|
1904
|
+
printDeliveryNoteForLspPackage(request: LspWmsDeliveryNotePrintRequest, showLoader?: boolean): Promise<void>;
|
|
1897
1905
|
getRouteDeparture(request: GetRouteDepartureRequest, showLoader?: boolean): Promise<string>;
|
|
1898
1906
|
changeHeadersTransactionsDefinitive(request: ChangeHeadersTransactionsDefinitiveRequest, showLoader?: boolean): Promise<void>;
|
|
1899
1907
|
generateInterbranchOrders(selectionList: StockReplenishment[], showLoader?: boolean): Promise<boolean>;
|
|
@@ -1998,6 +2006,7 @@ declare enum Icon {
|
|
|
1998
2006
|
BarsFilter = "bars_filter",
|
|
1999
2007
|
BoxesPackingRegular = "boxes_packing_regular",
|
|
2000
2008
|
BoxOpenFullRegular = "box_open_full_regular",
|
|
2009
|
+
CalculatorRegularFull = "calculator_regular_full",
|
|
2001
2010
|
CalendarDay = "calendar_day",
|
|
2002
2011
|
CalendarDayRegular = "calendar_day_regular",
|
|
2003
2012
|
CalendarLinesRegular = "calendar_lines_regular",
|
|
@@ -2506,6 +2515,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2506
2515
|
updateTextLine(uuid: string, lineUuid: string, showOnDocuments: number, text: string): Promise<boolean>;
|
|
2507
2516
|
changeLineSequence(lineUuid: string, aboveLineNr?: number, belowLineNr?: number): Promise<boolean>;
|
|
2508
2517
|
deleteTransactionLine(transactionLineUuid: string): Promise<boolean>;
|
|
2518
|
+
checkLockandChangeTransactionLineQuantity(transactionUuid: string, lineUuid: string, newQuantity: number): Promise<boolean>;
|
|
2509
2519
|
changeTransactionLineQuantity(transactionUuid: string, lineUuid: string, newQuantity: number): Promise<boolean>;
|
|
2510
2520
|
changeTransactionLineAssemblyTime(uuid: string, lineUuid: string, time: number): Promise<TransactionInfoResponse>;
|
|
2511
2521
|
changeLineShippingCost(uuid: string, lineUuid: string, newShippingCost: number): Promise<TransactionInfoResponse>;
|
|
@@ -2728,6 +2738,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2728
2738
|
getCashRegistersForTransaction(transactionUUID: string): Promise<CashRegister[]>;
|
|
2729
2739
|
getLspPackageInfoPrintLayouts(showLoader?: boolean): Promise<ReportLayoutSelectionPrint[]>;
|
|
2730
2740
|
printLspPackageInfo(request: PrintLspPackageInfoRequest, showLoader?: boolean): Promise<void>;
|
|
2741
|
+
printDeliveryNoteForLspPackage(request: LspWmsDeliveryNotePrintRequest, showLoader?: boolean): Promise<void>;
|
|
2731
2742
|
getRouteDeparture(request: GetRouteDepartureRequest, showLoader?: boolean): Promise<string>;
|
|
2732
2743
|
changeHeadersTransactionsDefinitive(request: ChangeHeadersTransactionsDefinitiveRequest, showLoader?: boolean): Promise<void>;
|
|
2733
2744
|
generateInterbranchOrders(selectionList: StockReplenishment[], showLoader?: boolean): Promise<boolean>;
|
|
@@ -3192,6 +3203,7 @@ declare class TransactionPaymentService implements OnDestroy {
|
|
|
3192
3203
|
showPspQrCode: boolean;
|
|
3193
3204
|
getDepositAmount: boolean;
|
|
3194
3205
|
cancelUrl: string;
|
|
3206
|
+
shouldContinue: boolean;
|
|
3195
3207
|
payed: Subject<void>;
|
|
3196
3208
|
paymentFailed: Subject<void>;
|
|
3197
3209
|
pollingForStatusStarted: Subject<void>;
|
|
@@ -4116,7 +4128,6 @@ declare class RelationAddressComponent extends RelationBaseComponent implements
|
|
|
4116
4128
|
fields: Object;
|
|
4117
4129
|
countryModel: Country;
|
|
4118
4130
|
postalCodeCheckErrorMessage: string;
|
|
4119
|
-
wrongAddress: boolean;
|
|
4120
4131
|
private _prevPostalCodeForCheck;
|
|
4121
4132
|
private _prevHouseNoForCheck;
|
|
4122
4133
|
private _address;
|
|
@@ -4766,11 +4777,25 @@ declare class TransactionTextLineModule {
|
|
|
4766
4777
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionTextLineModule>;
|
|
4767
4778
|
}
|
|
4768
4779
|
|
|
4780
|
+
declare class ArticleService {
|
|
4781
|
+
private _articleConnectorService;
|
|
4782
|
+
private _selectMultipleParameterizedCacheService;
|
|
4783
|
+
constructor(_articleConnectorService: ArticleConnectorService, _selectMultipleParameterizedCacheService: TransactionSelectMultipleParameterizedCacheService);
|
|
4784
|
+
getWarehouseLocations(warehouseNr: number): Promise<any>;
|
|
4785
|
+
getWebViewStartupInfo(request: ExternalCatalogStartupInfoRequest): Promise<ExternalCatalogStartupInfo>;
|
|
4786
|
+
getArticlePrice(request: GetArticlePriceRequest): Promise<GetArticlePriceResult>;
|
|
4787
|
+
getConversionUnitsForDefaultArticleUnitByGoodIdAndTransactionKind(goodId: number, transactionKind: string): Promise<Unit[]>;
|
|
4788
|
+
convertAmountByUnitCodeToDefaultUnitOfArticle(goodId: number, transactionKind: TransactionKind, conversionAmount: number, unitCode: string): Promise<number>;
|
|
4789
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArticleService, never>;
|
|
4790
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ArticleService>;
|
|
4791
|
+
}
|
|
4792
|
+
|
|
4769
4793
|
declare class TransactionLineActionButtonsComponent implements OnInit {
|
|
4770
4794
|
elementRef: ElementRef;
|
|
4771
4795
|
iconCacheService: IconCacheService;
|
|
4772
4796
|
private _transactionService;
|
|
4773
4797
|
private _transactionEventService;
|
|
4798
|
+
private _articleService;
|
|
4774
4799
|
private _overlayService;
|
|
4775
4800
|
private _changeDetector;
|
|
4776
4801
|
private _lineSelectionService;
|
|
@@ -4794,7 +4819,7 @@ declare class TransactionLineActionButtonsComponent implements OnInit {
|
|
|
4794
4819
|
private _transactionLine;
|
|
4795
4820
|
private _actionButtonsPopupComponentRef;
|
|
4796
4821
|
private _orderLineSet;
|
|
4797
|
-
constructor(elementRef: ElementRef, iconCacheService: IconCacheService, _transactionService: TransactionService, _transactionEventService: TransactionEventService, _overlayService: OverlayService, _changeDetector: ChangeDetectorRef, _lineSelectionService: LineSelectionService);
|
|
4822
|
+
constructor(elementRef: ElementRef, iconCacheService: IconCacheService, _transactionService: TransactionService, _transactionEventService: TransactionEventService, _articleService: ArticleService, _overlayService: OverlayService, _changeDetector: ChangeDetectorRef, _lineSelectionService: LineSelectionService);
|
|
4798
4823
|
ngOnInit(): void;
|
|
4799
4824
|
handleShowHideClick(event: MouseEvent): void;
|
|
4800
4825
|
reopenExternalOrderClick(): void;
|
|
@@ -4805,9 +4830,11 @@ declare class TransactionLineActionButtonsComponent implements OnInit {
|
|
|
4805
4830
|
handleViewStockButtonClick(): void;
|
|
4806
4831
|
handleClickCopyLineButtonClick(): void;
|
|
4807
4832
|
handleShowSidePanel(): void;
|
|
4833
|
+
handleCoversionAssistantButtonClick(): void;
|
|
4808
4834
|
private _showPopup;
|
|
4809
4835
|
private _hidePopup;
|
|
4810
4836
|
private _isReopenableExternalCatalogLine;
|
|
4837
|
+
private _getConversionUnitsAvailable;
|
|
4811
4838
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineActionButtonsComponent, never>;
|
|
4812
4839
|
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>;
|
|
4813
4840
|
}
|
|
@@ -5104,6 +5131,7 @@ declare class TransactionLineActionButtonsPopupComponent {
|
|
|
5104
5131
|
canReopenExternalOrder: boolean;
|
|
5105
5132
|
canCreateService: boolean;
|
|
5106
5133
|
areAllowedToChangeOrder: boolean;
|
|
5134
|
+
conversionUnitsAvailable: boolean;
|
|
5107
5135
|
reopenExternalOrderClick: EventEmitter<void>;
|
|
5108
5136
|
addDocumentButtonClick: EventEmitter<void>;
|
|
5109
5137
|
articleTextButtonClick: EventEmitter<void>;
|
|
@@ -5112,6 +5140,7 @@ declare class TransactionLineActionButtonsPopupComponent {
|
|
|
5112
5140
|
viewStockButtonClick: EventEmitter<void>;
|
|
5113
5141
|
sidePanelButtonClick: EventEmitter<void>;
|
|
5114
5142
|
copyLineButtonClick: EventEmitter<void>;
|
|
5143
|
+
convAssistButtonClick: EventEmitter<void>;
|
|
5115
5144
|
clickOutsideClick: EventEmitter<void>;
|
|
5116
5145
|
showClass: boolean;
|
|
5117
5146
|
constructor(iconCacheService: IconCacheService);
|
|
@@ -5123,8 +5152,9 @@ declare class TransactionLineActionButtonsPopupComponent {
|
|
|
5123
5152
|
handleViewStockButtonClick(event: MouseEvent): void;
|
|
5124
5153
|
handleSidePanelButtonClick(event: MouseEvent): void;
|
|
5125
5154
|
handleCopyLineButtonClick(event: MouseEvent): void;
|
|
5155
|
+
handleCalcAssistButtonClick(event: MouseEvent): void;
|
|
5126
5156
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineActionButtonsPopupComponent, never>;
|
|
5127
|
-
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>;
|
|
5157
|
+
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>;
|
|
5128
5158
|
}
|
|
5129
5159
|
|
|
5130
5160
|
declare class TransactionLineActionButtonsModule {
|
|
@@ -6270,17 +6300,6 @@ declare class TransactionLineSidePanelArticleDetailsComponent {
|
|
|
6270
6300
|
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>;
|
|
6271
6301
|
}
|
|
6272
6302
|
|
|
6273
|
-
declare class ArticleService {
|
|
6274
|
-
private _articleConnectorService;
|
|
6275
|
-
private _selectMultipleParameterizedCacheService;
|
|
6276
|
-
constructor(_articleConnectorService: ArticleConnectorService, _selectMultipleParameterizedCacheService: TransactionSelectMultipleParameterizedCacheService);
|
|
6277
|
-
getWarehouseLocations(warehouseNr: number): Promise<any>;
|
|
6278
|
-
getWebViewStartupInfo(request: ExternalCatalogStartupInfoRequest): Promise<ExternalCatalogStartupInfo>;
|
|
6279
|
-
getArticlePrice(request: GetArticlePriceRequest): Promise<GetArticlePriceResult>;
|
|
6280
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ArticleService, never>;
|
|
6281
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ArticleService>;
|
|
6282
|
-
}
|
|
6283
|
-
|
|
6284
6303
|
declare class AlternateSupplierTileComponent {
|
|
6285
6304
|
changeDetection: ChangeDetectorRef;
|
|
6286
6305
|
private _articleService;
|
|
@@ -6647,6 +6666,7 @@ declare class DeliveryPlanningService {
|
|
|
6647
6666
|
deliveryMethodAvailabilityCheck(planOrder: PlanOrder, transportDay: PlanningTransportWeekDay): Promise<boolean>;
|
|
6648
6667
|
districtAvailabilityCheck(planOrder: PlanOrder, transportDay: PlanningTransportWeekDay): Promise<boolean>;
|
|
6649
6668
|
filterTransactionsForDeliveryPlanning(transactions: TransactionSearchView[], transportDay: PlanningTransportWeekDay): Promise<TransactionSearchView[]>;
|
|
6669
|
+
syncPlanOrderTimesWithTransportDate(planOrder: PlanOrder, transport: PlanningTransportWeekDay): Promise<void>;
|
|
6650
6670
|
static ɵfac: i0.ɵɵFactoryDeclaration<DeliveryPlanningService, never>;
|
|
6651
6671
|
static ɵprov: i0.ɵɵInjectableDeclaration<DeliveryPlanningService>;
|
|
6652
6672
|
}
|
|
@@ -6711,7 +6731,7 @@ declare class TransactionPlanningLinePlannedResourceComponent {
|
|
|
6711
6731
|
|
|
6712
6732
|
declare class TransactionPlanningLineModule {
|
|
6713
6733
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPlanningLineModule, never>;
|
|
6714
|
-
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]>;
|
|
6734
|
+
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]>;
|
|
6715
6735
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionPlanningLineModule>;
|
|
6716
6736
|
}
|
|
6717
6737
|
|
|
@@ -6874,6 +6894,7 @@ declare class TransactionReceiveGoodsLineComponent extends TransactionReceiveGoo
|
|
|
6874
6894
|
readonly cfgNames: typeof TransactionCfgName;
|
|
6875
6895
|
showClass(): boolean;
|
|
6876
6896
|
statusBarConfigNames: StatusBarCfgNames;
|
|
6897
|
+
navigationButtonIcon: Icon;
|
|
6877
6898
|
changeNrPackagesNotAllowed(): boolean;
|
|
6878
6899
|
changeAmountPerUnitNotAllowed(): boolean;
|
|
6879
6900
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionReceiveGoodsLineComponent, never>;
|
|
@@ -7067,7 +7088,7 @@ declare class TransactionPrintPackageStickerModule {
|
|
|
7067
7088
|
|
|
7068
7089
|
declare class TransactionReceiveGoodsLineModule {
|
|
7069
7090
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionReceiveGoodsLineModule, never>;
|
|
7070
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionReceiveGoodsLineModule, [typeof TransactionReceiveGoodsLineComponent], [typeof i2.CommonModule, typeof TransactionBaseLineModule, typeof TransactionLineWarehouseButtonModule, typeof TransactionLineWarehouseLocationModule, typeof EditableLabelModule, typeof i3.InputNumberPickerModule, typeof i3.InputCheckboxModule, typeof i3.IconModule, typeof TransactionLineWarehouseLocationButtonModule, typeof TransactionLineStatusbarModule, typeof i3.InputTextModule, typeof TransactionPrintPackageStickerModule, typeof i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof PipeModule, typeof TransactionLineLabelModule], [typeof TransactionReceiveGoodsLineComponent]>;
|
|
7091
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionReceiveGoodsLineModule, [typeof TransactionReceiveGoodsLineComponent], [typeof i2.CommonModule, typeof TransactionBaseLineModule, typeof TransactionLineWarehouseButtonModule, typeof TransactionLineWarehouseLocationModule, typeof EditableLabelModule, typeof i3.InputNumberPickerModule, typeof i3.InputCheckboxModule, typeof i3.IconModule, typeof TransactionLineWarehouseLocationButtonModule, typeof TransactionLineStatusbarModule, typeof i3.InputTextModule, typeof TransactionPrintPackageStickerModule, typeof i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof PipeModule, typeof TransactionLineLabelModule, typeof TransactionNavigationButtonModule], [typeof TransactionReceiveGoodsLineComponent]>;
|
|
7071
7092
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionReceiveGoodsLineModule>;
|
|
7072
7093
|
}
|
|
7073
7094
|
|
|
@@ -7881,7 +7902,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
7881
7902
|
showCategories: boolean;
|
|
7882
7903
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
7883
7904
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
7884
|
-
currentTitle(): "
|
|
7905
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
7885
7906
|
ngOnDestroy(): void;
|
|
7886
7907
|
handleClickWrapper(event: MouseEvent): void;
|
|
7887
7908
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -7907,7 +7928,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
7907
7928
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
7908
7929
|
ngOnDestroy(): void;
|
|
7909
7930
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
7910
|
-
currentTitle(): "
|
|
7931
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
7911
7932
|
handleClickWrapper(event: MouseEvent): void;
|
|
7912
7933
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
7913
7934
|
private handleDocumentClick;
|
|
@@ -7959,7 +7980,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
7959
7980
|
showCategories: boolean;
|
|
7960
7981
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
7961
7982
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
7962
|
-
currentTitle(): "
|
|
7983
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
7963
7984
|
ngOnDestroy(): void;
|
|
7964
7985
|
handleClickWrapper(event: MouseEvent): void;
|
|
7965
7986
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -8595,7 +8616,8 @@ declare enum DeliveryPlanningUpdateActions {
|
|
|
8595
8616
|
PlanOrder = "planOrder",
|
|
8596
8617
|
PlanLines = "planLines",
|
|
8597
8618
|
DeletePlannedOrder = "deletePlannedOrder",
|
|
8598
|
-
DeletePlannedLines = "deletePlannedLines"
|
|
8619
|
+
DeletePlannedLines = "deletePlannedLines",
|
|
8620
|
+
DeleteOrderReplan = "deleteOrderReplan"
|
|
8599
8621
|
}
|
|
8600
8622
|
|
|
8601
8623
|
declare class DeliveryPlanningMainComponent implements OnInit, OnDestroy {
|
|
@@ -8622,6 +8644,7 @@ declare class DeliveryPlanningMainComponent implements OnInit, OnDestroy {
|
|
|
8622
8644
|
oldWeek: PlanningTransportWeekDay[];
|
|
8623
8645
|
week: PlanningTransportWeekDay[];
|
|
8624
8646
|
action: DeliveryPlanningUpdateActions;
|
|
8647
|
+
resolve?: () => void;
|
|
8625
8648
|
}): Promise<void>;
|
|
8626
8649
|
updateNewValues(): Promise<void>;
|
|
8627
8650
|
getPlanningTransportWeek(): Promise<void>;
|
|
@@ -8868,6 +8891,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
8868
8891
|
oldWeek: PlanningTransportWeekDay[];
|
|
8869
8892
|
week: PlanningTransportWeekDay[];
|
|
8870
8893
|
action: DeliveryPlanningUpdateActions;
|
|
8894
|
+
resolve?: () => void;
|
|
8871
8895
|
}>;
|
|
8872
8896
|
resetPlanningTransportEvent: EventEmitter<void>;
|
|
8873
8897
|
get planTransportWeekArr(): PlanningTransportWeekDay[][];
|
|
@@ -8929,6 +8953,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
8929
8953
|
end: Date;
|
|
8930
8954
|
transId: number;
|
|
8931
8955
|
}, transportWeekDay: PlanningTransportWeekDay, week: PlanningTransportWeekDay[]): Promise<void>;
|
|
8956
|
+
handleMoveNormalEvent(transId: string, transport: PlanningTransportWeekDay, week: PlanningTransportWeekDay[], weekArr: PlanningTransportWeekDay[][]): Promise<void>;
|
|
8932
8957
|
handleReorderOrder(event: {
|
|
8933
8958
|
transId: number;
|
|
8934
8959
|
insertIndex: number;
|
|
@@ -11595,6 +11620,8 @@ declare class TransactionLineToolbarComponent implements OnInit {
|
|
|
11595
11620
|
iconCacheService: IconCacheService;
|
|
11596
11621
|
private _transactionEventService;
|
|
11597
11622
|
private _transactionService;
|
|
11623
|
+
private _articleService;
|
|
11624
|
+
private _changeDetector;
|
|
11598
11625
|
readonly: boolean;
|
|
11599
11626
|
readonly icons: typeof Icon;
|
|
11600
11627
|
private _transactionKind;
|
|
@@ -11605,14 +11632,16 @@ declare class TransactionLineToolbarComponent implements OnInit {
|
|
|
11605
11632
|
canReopenExternalOrder: boolean;
|
|
11606
11633
|
canCreateService: boolean;
|
|
11607
11634
|
areAllowedToChangeOrder: boolean;
|
|
11635
|
+
conversionUnitsAvailable: boolean;
|
|
11608
11636
|
set transactionLine(value: TransactionLineInfo);
|
|
11609
11637
|
set orderLineSets(value: OrderLineSetInfo[]);
|
|
11610
11638
|
get orderLineSets(): OrderLineSetInfo[];
|
|
11611
11639
|
get transactionLine(): TransactionLineInfo;
|
|
11612
11640
|
waitingForUserAction: EventEmitter<boolean>;
|
|
11641
|
+
calcAssistButtonClick: EventEmitter<void>;
|
|
11613
11642
|
showClass(): boolean;
|
|
11614
|
-
constructor(iconCacheService: IconCacheService, _transactionEventService: TransactionEventService, _transactionService: TransactionService);
|
|
11615
|
-
ngOnInit(): void
|
|
11643
|
+
constructor(iconCacheService: IconCacheService, _transactionEventService: TransactionEventService, _transactionService: TransactionService, _articleService: ArticleService, _changeDetector: ChangeDetectorRef);
|
|
11644
|
+
ngOnInit(): Promise<void>;
|
|
11616
11645
|
handleReopenExternalOrderClick(): void;
|
|
11617
11646
|
handleAddDocumentButtonClick(): void;
|
|
11618
11647
|
handleTransactionText(): void;
|
|
@@ -11621,9 +11650,12 @@ declare class TransactionLineToolbarComponent implements OnInit {
|
|
|
11621
11650
|
handleViewStockButtonClick(): void;
|
|
11622
11651
|
handleCopyLineButtonClick(): void;
|
|
11623
11652
|
handleSidePanelButtonClick(): void;
|
|
11653
|
+
handleCalcAssistButtonClick(): void;
|
|
11624
11654
|
private _isReopenableExternalCatalogLine;
|
|
11655
|
+
private _getConversionUnitsAvailable;
|
|
11656
|
+
private _detectChanges;
|
|
11625
11657
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineToolbarComponent, never>;
|
|
11626
|
-
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>;
|
|
11658
|
+
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>;
|
|
11627
11659
|
}
|
|
11628
11660
|
|
|
11629
11661
|
declare class TransactionLineToolbarModule {
|
|
@@ -13600,6 +13632,7 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
13600
13632
|
showReservationPopup: boolean;
|
|
13601
13633
|
showTransactionText: boolean;
|
|
13602
13634
|
showArticleText: boolean;
|
|
13635
|
+
showConversionAssistant: boolean;
|
|
13603
13636
|
showCopyOrderDialog: boolean;
|
|
13604
13637
|
showArticleStockPopup: boolean;
|
|
13605
13638
|
showPreferredPlanning: boolean;
|
|
@@ -13637,6 +13670,7 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
13637
13670
|
handleShowArticleTextOverview(line: TransactionLineInfo): void;
|
|
13638
13671
|
handleShowTransactionText(line: TransactionLineInfo): void;
|
|
13639
13672
|
handleShowArticleText(line: TransactionLineInfo): void;
|
|
13673
|
+
handleShowConversionAssistant(line: TransactionLineInfo): void;
|
|
13640
13674
|
saveTransactionLineText(data: {
|
|
13641
13675
|
request: TransactionAddTextLineRequest;
|
|
13642
13676
|
new: boolean;
|
|
@@ -13651,6 +13685,7 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
13651
13685
|
}): Promise<void>;
|
|
13652
13686
|
handleEditTransactionText(line: TransactionLineInfo): void;
|
|
13653
13687
|
handleEditArticleText(line: TransactionLineInfo): void;
|
|
13688
|
+
updateArticleLineAmount(amount: number): Promise<void>;
|
|
13654
13689
|
handleCopyTransactionLine(line: TransactionLineInfo): void;
|
|
13655
13690
|
handleCreateServiceRequest(lineNr: number): void;
|
|
13656
13691
|
handleViewStock(goodId: number): void;
|
|
@@ -13661,6 +13696,8 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
13661
13696
|
showTransactionTextDialog(): void;
|
|
13662
13697
|
showArticleTextDialog(): void;
|
|
13663
13698
|
showArticleTextOverviewDialog(): void;
|
|
13699
|
+
showConversionAssistantDialog(): void;
|
|
13700
|
+
closeConversionAssistantDialog(): void;
|
|
13664
13701
|
shouldShowTiles(): boolean;
|
|
13665
13702
|
fullyInvoiced(): boolean;
|
|
13666
13703
|
private _getOrderLineSetIfExists;
|
|
@@ -14520,6 +14557,11 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14520
14557
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionQuickAccessPlanningComponent, "co-transaction-quick-access-planning", never, {}, {}, never, never, false, never>;
|
|
14521
14558
|
}
|
|
14522
14559
|
|
|
14560
|
+
declare enum LspDialogType {
|
|
14561
|
+
Transaction = "TRANSACTION",
|
|
14562
|
+
WMS = "WMS"
|
|
14563
|
+
}
|
|
14564
|
+
|
|
14523
14565
|
interface DeliveryMethod {
|
|
14524
14566
|
code: string;
|
|
14525
14567
|
description: string;
|
|
@@ -14528,7 +14570,6 @@ interface DeliveryMethod {
|
|
|
14528
14570
|
};
|
|
14529
14571
|
}
|
|
14530
14572
|
declare class TransactionQuickAccessPlanningPopupComponent implements OnInit {
|
|
14531
|
-
private _transaction;
|
|
14532
14573
|
iconCacheService: IconCacheService;
|
|
14533
14574
|
transactionService: TransactionService;
|
|
14534
14575
|
readonly icons: typeof Icon;
|
|
@@ -14537,23 +14578,27 @@ declare class TransactionQuickAccessPlanningPopupComponent implements OnInit {
|
|
|
14537
14578
|
layoutCode: LayoutCode;
|
|
14538
14579
|
disablePdfPreview: boolean;
|
|
14539
14580
|
printerList: Printer[];
|
|
14540
|
-
|
|
14581
|
+
reportDocumentLspPrintRequest: PrintLspPackageInfoRequest;
|
|
14582
|
+
reportDocumentLspWmsPrintRequest: LspWmsDeliveryNotePrintRequest;
|
|
14541
14583
|
selectedDeliveryMethod: DeliveryMethod;
|
|
14542
14584
|
defaultSendMethodIcon: string;
|
|
14543
14585
|
showLoader: boolean;
|
|
14544
14586
|
showSendMethodDialog: boolean;
|
|
14545
14587
|
defaultSendMethod: string;
|
|
14546
|
-
set packageLSP(packageLSP: PackageLSP[]);
|
|
14547
|
-
get packageLSP(): PackageLSP[];
|
|
14548
14588
|
private _packageLSP;
|
|
14589
|
+
private _lspDialogType;
|
|
14590
|
+
set lspDialogType(type: LspDialogType);
|
|
14591
|
+
autoPrint: boolean;
|
|
14592
|
+
set packageLSP(packageLSP: PackageLSP[]);
|
|
14549
14593
|
deliveryMethods: DeliveryMethod[];
|
|
14550
14594
|
close: EventEmitter<void>;
|
|
14595
|
+
autoPrinted: EventEmitter<number>;
|
|
14551
14596
|
createdTrackAndTrace: EventEmitter<string>;
|
|
14597
|
+
get packageLSP(): PackageLSP[];
|
|
14552
14598
|
showClass(): boolean;
|
|
14553
|
-
constructor(
|
|
14599
|
+
constructor(iconCacheService: IconCacheService, transactionService: TransactionService);
|
|
14554
14600
|
ngOnInit(): void;
|
|
14555
14601
|
get transactionInfo(): TransactionInfoResponse;
|
|
14556
|
-
get selectedLines(): TransactionLineInfo[];
|
|
14557
14602
|
deliveryMethodChange(method: DeliveryMethod): void;
|
|
14558
14603
|
createTrackAndTrace(): Promise<void>;
|
|
14559
14604
|
openTrackAndTraceURL(packageLsp: PackageLSP): void;
|
|
@@ -14562,7 +14607,7 @@ declare class TransactionQuickAccessPlanningPopupComponent implements OnInit {
|
|
|
14562
14607
|
getPrintLayouts(): Promise<void>;
|
|
14563
14608
|
private _getPrinters;
|
|
14564
14609
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionQuickAccessPlanningPopupComponent, never>;
|
|
14565
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionQuickAccessPlanningPopupComponent, "co-transaction-quick-access-planning-popup", never, { "packageLSP": { "alias": "packageLSP"; "required": false; }; "deliveryMethods": { "alias": "deliveryMethods"; "required": false; }; }, { "close": "close"; "createdTrackAndTrace": "createdTrackAndTrace"; }, never, never, false, never>;
|
|
14610
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionQuickAccessPlanningPopupComponent, "co-transaction-quick-access-planning-popup", never, { "lspDialogType": { "alias": "lspDialogType"; "required": false; }; "autoPrint": { "alias": "autoPrint"; "required": false; }; "packageLSP": { "alias": "packageLSP"; "required": false; }; "deliveryMethods": { "alias": "deliveryMethods"; "required": false; }; }, { "close": "close"; "autoPrinted": "autoPrinted"; "createdTrackAndTrace": "createdTrackAndTrace"; }, never, never, false, never>;
|
|
14566
14611
|
}
|
|
14567
14612
|
|
|
14568
14613
|
declare class TransactionQuickAccessPlanningModule {
|
|
@@ -15910,6 +15955,7 @@ declare class DialogTransactionLineWarehouseCcComponent extends DialogBaseCompon
|
|
|
15910
15955
|
iconCacheService: IconCacheService;
|
|
15911
15956
|
transactionHeaderService: TransactionHeaderService;
|
|
15912
15957
|
transactionLineService: TransactionLineService;
|
|
15958
|
+
protected articleService: ArticleService;
|
|
15913
15959
|
readonly icons: typeof Icon;
|
|
15914
15960
|
readonly tab: typeof WarehouseCCTab;
|
|
15915
15961
|
readonly buttonType: typeof AppPopupButtonType;
|
|
@@ -15933,8 +15979,12 @@ declare class DialogTransactionLineWarehouseCcComponent extends DialogBaseCompon
|
|
|
15933
15979
|
directSellSupplier: SupplierLightObject;
|
|
15934
15980
|
directSellPurchaseOrderNumber: number;
|
|
15935
15981
|
stockForecastDeliveryDate: Date;
|
|
15982
|
+
conversionUnitsAvailable: boolean;
|
|
15983
|
+
conversionUnits: Unit[];
|
|
15984
|
+
chosenConversionUnit: Unit;
|
|
15985
|
+
conversionAmount: string;
|
|
15936
15986
|
readonly TransactionKind: typeof TransactionKind;
|
|
15937
|
-
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService);
|
|
15987
|
+
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, articleService: ArticleService);
|
|
15938
15988
|
ngOnInit(): Promise<void>;
|
|
15939
15989
|
handleQuantityChange(value: any): void;
|
|
15940
15990
|
handleCommissionCodeChange(value: any): void;
|
|
@@ -15944,16 +15994,18 @@ declare class DialogTransactionLineWarehouseCcComponent extends DialogBaseCompon
|
|
|
15944
15994
|
handleClose(type: AppPopupButtonType): void;
|
|
15945
15995
|
showTab(tab: WarehouseCCTab): void;
|
|
15946
15996
|
checkWarehouseForTabSwitch(tab: WarehouseCCTab): void;
|
|
15997
|
+
recalculateConversionAmountIfNeeded(): Promise<void>;
|
|
15947
15998
|
handleCloseDialog(event: MouseEvent, type: AppPopupButtonType): void;
|
|
15948
15999
|
private _activeTabValid;
|
|
15949
16000
|
private _scrollIntoView;
|
|
16001
|
+
protected readonly model: i0.ModelFunction;
|
|
15950
16002
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogTransactionLineWarehouseCcComponent, never>;
|
|
15951
16003
|
static ɵcmp: i0.ɵɵComponentDeclaration<DialogTransactionLineWarehouseCcComponent, "co-dialog-transaction-line-warehouse-cc", never, { "transactionKind": { "alias": "transactionKind"; "required": false; }; }, { "close": "close"; }, never, never, false, never>;
|
|
15952
16004
|
}
|
|
15953
16005
|
|
|
15954
16006
|
declare class DialogTransactionLineWarehouseCcModule {
|
|
15955
16007
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogTransactionLineWarehouseCcModule, never>;
|
|
15956
|
-
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]>;
|
|
16008
|
+
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]>;
|
|
15957
16009
|
static ɵinj: i0.ɵɵInjectorDeclaration<DialogTransactionLineWarehouseCcModule>;
|
|
15958
16010
|
}
|
|
15959
16011
|
|
|
@@ -16079,7 +16131,7 @@ declare class TransactionSalesPersonInputComponent implements OnInit {
|
|
|
16079
16131
|
readonly icons: typeof Icon;
|
|
16080
16132
|
readonly buttonType: typeof AppPopupButtonType;
|
|
16081
16133
|
parentForOverlay: ElementRef;
|
|
16082
|
-
collection:
|
|
16134
|
+
collection: any[];
|
|
16083
16135
|
filteredCollection: SalesPerson[];
|
|
16084
16136
|
salesPersonClicked: EventEmitter<SalesPerson>;
|
|
16085
16137
|
close: EventEmitter<MouseEvent>;
|
|
@@ -16156,9 +16208,37 @@ declare class TransactionLineActivitiesModule {
|
|
|
16156
16208
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineActivitiesModule>;
|
|
16157
16209
|
}
|
|
16158
16210
|
|
|
16211
|
+
declare class TransactionLineConversionAssistantComponent implements OnInit {
|
|
16212
|
+
iconCacheService: IconCacheService;
|
|
16213
|
+
private _articleService;
|
|
16214
|
+
private _transactionService;
|
|
16215
|
+
readonly icons: typeof Icon;
|
|
16216
|
+
transactionLine: TransactionLineInfo;
|
|
16217
|
+
closeClick: EventEmitter<MouseEvent>;
|
|
16218
|
+
cancelClick: EventEmitter<MouseEvent>;
|
|
16219
|
+
saveClick: EventEmitter<number>;
|
|
16220
|
+
showClass(): boolean;
|
|
16221
|
+
conversionUnits: Unit[];
|
|
16222
|
+
chosenConversionUnit: Unit;
|
|
16223
|
+
conversionAmount: string;
|
|
16224
|
+
articleAmount: number;
|
|
16225
|
+
constructor(iconCacheService: IconCacheService, _articleService: ArticleService, _transactionService: TransactionService);
|
|
16226
|
+
ngOnInit(): void;
|
|
16227
|
+
private _getConversionUnits;
|
|
16228
|
+
recalculateConversionAmountIfNeeded(): Promise<void>;
|
|
16229
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineConversionAssistantComponent, never>;
|
|
16230
|
+
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>;
|
|
16231
|
+
}
|
|
16232
|
+
|
|
16233
|
+
declare class TransactionLineConversionAssistantModule {
|
|
16234
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineConversionAssistantModule, never>;
|
|
16235
|
+
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]>;
|
|
16236
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineConversionAssistantModule>;
|
|
16237
|
+
}
|
|
16238
|
+
|
|
16159
16239
|
declare class TransactionInternalModule {
|
|
16160
16240
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInternalModule, never>;
|
|
16161
|
-
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]>;
|
|
16241
|
+
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]>;
|
|
16162
16242
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionInternalModule>;
|
|
16163
16243
|
}
|
|
16164
16244
|
|
|
@@ -16929,5 +17009,5 @@ declare class SharedConnectorService {
|
|
|
16929
17009
|
static ɵprov: i0.ɵɵInjectableDeclaration<SharedConnectorService>;
|
|
16930
17010
|
}
|
|
16931
17011
|
|
|
16932
|
-
export { AddProductComponent, AddProductModule, BatchProcessDialogComponent, BatchProcessDialogModule, CharacteristicAnswerComponent, CharacteristicAnswerModule, CheckoutComponent, CheckoutModule, CheckoutOverviewDeliveryEditComponent, CheckoutOverviewRelationEditComponent, DatePeriod, DeliveryPlanningCalendarModes, DeliveryPlanningComponent, DeliveryPlanningModes, DeliveryPlanningModule, DeliveryPlanningService, DeliveryPlanningViewModes, DialogBranchComponent, DialogBranchModule, DialogTransactionLineWarehouseCcComponent, DialogTransactionLineWarehouseCcModule, DialogTransactionLineWarehouseLocationComponent, DialogTransactionLineWarehouseLocationModule, FastDateRangePickerComponent, FastDateRangePickerModule, FilterRequestService, LineSelectionService, LoaderComponent, LoaderModule, PosOrderData, PurchaseConfirmationService, QuickSendButtonComponent, QuickSendButtonModule, SearchViewMode, SearchbarViewMode, SharedConnectorService, ShippingMethodDialogComponent, ShippingMethodDialogModule, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, StepperComponent, StepperModule, StepperStepComponent, StepperStepModule, TRANSACTION_BUTTON_BAR_MAPPING_CONFIG, TRANSACTION_CARD_MAPPING_CONFIG, TRANSACTION_DIALOG_MAPPING_CONFIG, TRANSACTION_FILTER_MAPPING_CONFIG, TRANSACTION_LINE_MAPPING_CONFIG, TRANSACTION_QUICK_ACCESS_MAPPING_CONFIG, TRANSACTION_SEARCH_MAPPING_CONFIG, TRANSACTION_SIDE_PANEL_MAPPING_CONFIG, TransactionBusinessObjectCacheManagerService, TransactionCashRegisterDialogComponent, TransactionCashRegisterDialogModule, TransactionCashRegisterOrderReceiptDialogComponent, TransactionCashRegisterOrderReceiptDialogModule, TransactionCfgName, TransactionComponent, TransactionConfirmTotalsComponent, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionConnectorAdapterService, TransactionConnectorService, TransactionCreateDateLabelComponent, TransactionCreateDateLabelModule, TransactionCreateWizardComponent, TransactionCreateWizardModule, TransactionDatePickDialogComponent, TransactionDatePickDialogModule, TransactionDialogService, TransactionEventService, TransactionFilterComponent, TransactionFilterContentService, TransactionFilterModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionInvoiceCheckOrder, TransactionInvoiceCheckOrderTileComponent, TransactionInvoiceCheckOrderTileModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineSidePanelArticleDetailsComponent, TransactionLineSidePanelArticleDetailsModule, TransactionLineSidePanelReplenishmentArticleDetailsComponent, TransactionLineSidePanelReplenishmentArticleDetailsModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionMappingService, TransactionMarginComponent, TransactionMarginModule, TransactionModule, TransactionNotificationLineSelectionService, TransactionNumberLabelComponent, TransactionNumberLabelModule, TransactionPaymentConnectorService, TransactionPaymentService, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessPlanningComponent, TransactionQuickAccessPlanningModule, TransactionQuickAccessPlanningPopupComponent, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionRelationConnectorService, TransactionRelationService, TransactionScreenConfigurationService, TransactionSearchComponent, TransactionSearchModule, TransactionSearchResultComponent, TransactionSearchResultModule, TransactionSearchService, TransactionSelectMultipleCacheService, TransactionSelectMultipleParameterizedCacheService, TransactionSelectSingleCacheService, TransactionSelectSingleParameterizedCacheService, TransactionService, TransactionSettings, TransactionSettingsOptions, TransactionSettingsService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTagComponent, TransactionTagsComponent, TransactionTagsModule, TransactionTotalsComponent, TransactionTotalsModule, Version, VoucherCodePendingReasonDialogComponent, VoucherCodePendingReasonDialogModule, WarehouseCCTab };
|
|
17012
|
+
export { AddProductComponent, AddProductModule, BatchProcessDialogComponent, BatchProcessDialogModule, CharacteristicAnswerComponent, CharacteristicAnswerModule, CheckoutComponent, CheckoutModule, CheckoutOverviewDeliveryEditComponent, CheckoutOverviewRelationEditComponent, DatePeriod, DeliveryPlanningCalendarModes, DeliveryPlanningComponent, DeliveryPlanningModes, DeliveryPlanningModule, DeliveryPlanningService, DeliveryPlanningViewModes, DialogBranchComponent, DialogBranchModule, DialogTransactionLineWarehouseCcComponent, DialogTransactionLineWarehouseCcModule, DialogTransactionLineWarehouseLocationComponent, DialogTransactionLineWarehouseLocationModule, FastDateRangePickerComponent, FastDateRangePickerModule, FilterRequestService, LineSelectionService, LoaderComponent, LoaderModule, LspDialogType, PosOrderData, PurchaseConfirmationService, QuickSendButtonComponent, QuickSendButtonModule, SearchViewMode, SearchbarViewMode, SharedConnectorService, ShippingMethodDialogComponent, ShippingMethodDialogModule, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, StepperComponent, StepperModule, StepperStepComponent, StepperStepModule, TRANSACTION_BUTTON_BAR_MAPPING_CONFIG, TRANSACTION_CARD_MAPPING_CONFIG, TRANSACTION_DIALOG_MAPPING_CONFIG, TRANSACTION_FILTER_MAPPING_CONFIG, TRANSACTION_LINE_MAPPING_CONFIG, TRANSACTION_QUICK_ACCESS_MAPPING_CONFIG, TRANSACTION_SEARCH_MAPPING_CONFIG, TRANSACTION_SIDE_PANEL_MAPPING_CONFIG, TransactionBusinessObjectCacheManagerService, TransactionCashRegisterDialogComponent, TransactionCashRegisterDialogModule, TransactionCashRegisterOrderReceiptDialogComponent, TransactionCashRegisterOrderReceiptDialogModule, TransactionCfgName, TransactionComponent, TransactionConfirmTotalsComponent, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionConnectorAdapterService, TransactionConnectorService, TransactionCreateDateLabelComponent, TransactionCreateDateLabelModule, TransactionCreateWizardComponent, TransactionCreateWizardModule, TransactionDatePickDialogComponent, TransactionDatePickDialogModule, TransactionDialogService, TransactionEventService, TransactionFilterComponent, TransactionFilterContentService, TransactionFilterModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionInvoiceCheckOrder, TransactionInvoiceCheckOrderTileComponent, TransactionInvoiceCheckOrderTileModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineSidePanelArticleDetailsComponent, TransactionLineSidePanelArticleDetailsModule, TransactionLineSidePanelReplenishmentArticleDetailsComponent, TransactionLineSidePanelReplenishmentArticleDetailsModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionMappingService, TransactionMarginComponent, TransactionMarginModule, TransactionModule, TransactionNotificationLineSelectionService, TransactionNumberLabelComponent, TransactionNumberLabelModule, TransactionPaymentConnectorService, TransactionPaymentService, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessPlanningComponent, TransactionQuickAccessPlanningModule, TransactionQuickAccessPlanningPopupComponent, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionRelationConnectorService, TransactionRelationService, TransactionScreenConfigurationService, TransactionSearchComponent, TransactionSearchModule, TransactionSearchResultComponent, TransactionSearchResultModule, TransactionSearchService, TransactionSelectMultipleCacheService, TransactionSelectMultipleParameterizedCacheService, TransactionSelectSingleCacheService, TransactionSelectSingleParameterizedCacheService, TransactionService, TransactionSettings, TransactionSettingsOptions, TransactionSettingsService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTagComponent, TransactionTagsComponent, TransactionTagsModule, TransactionTotalsComponent, TransactionTotalsModule, Version, VoucherCodePendingReasonDialogComponent, VoucherCodePendingReasonDialogModule, WarehouseCCTab };
|
|
16933
17013
|
export type { AddArticleInterface, DeliveryMethod, InvoiceCheckOrderInterface, InvoiceCheckOrderLineInterface, TransactionButtonBarMappingConfig, TransactionCardMappingConfig, TransactionDialogMappingConfig, TransactionFilterMappingConfig, TransactionLineMappingConfig, TransactionQuickAccessMappingConfig, TransactionSearchMappingConfig, TransactionSidePanelMappingConfig, steps };
|
|
@@ -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;
|
|
@@ -14,6 +14,27 @@
|
|
|
14
14
|
flex-direction: column;
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
|
+
.transaction-line-warehouse-top-cc-section {
|
|
18
|
+
display: flex;
|
|
19
|
+
flex-direction: row;
|
|
20
|
+
column-gap: 5px;
|
|
21
|
+
margin: $tp-dialog-transaction-line-warehouse-cc-section-margin;
|
|
22
|
+
.bordered {
|
|
23
|
+
margin-left: 20px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.unit-amount {
|
|
27
|
+
height: $tp-dialog-transaction-line-warehouse-cc-quantity-height;
|
|
28
|
+
max-width: 90px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.unit-list {
|
|
32
|
+
height: $tp-dialog-transaction-line-warehouse-cc-quantity-height;
|
|
33
|
+
.co-input-text {
|
|
34
|
+
height: $tp-dialog-transaction-line-warehouse-cc-quantity-height;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
17
38
|
.transaction-line-warehouse-cc-section {
|
|
18
39
|
display: flex;
|
|
19
40
|
flex-direction: column;
|
|
@@ -42,6 +63,23 @@
|
|
|
42
63
|
.quantity-number-picker {
|
|
43
64
|
width: $tp-dialog-transaction-line-warehouse-cc-quantity-width;
|
|
44
65
|
height: $tp-dialog-transaction-line-warehouse-cc-quantity-height;
|
|
66
|
+
.icon-wrapper{
|
|
67
|
+
max-width: $tp-dialog-transaction-line-warehouse-cc-quantity-height;
|
|
68
|
+
}
|
|
69
|
+
.co-input-text {
|
|
70
|
+
width: $tp-dialog-transaction-line-warehouse-cc-quantity-width;
|
|
71
|
+
height: $tp-dialog-transaction-line-warehouse-cc-quantity-height;
|
|
72
|
+
.right-icon {
|
|
73
|
+
min-width: $cc-co-list-of-values-right-icon-spacer-width;
|
|
74
|
+
}
|
|
75
|
+
.input-text-right-icon svg {
|
|
76
|
+
width: $cc-co-list-of-values-right-icon-width;
|
|
77
|
+
height: $cc-co-list-of-values-right-icon-width;
|
|
78
|
+
padding: $cc-co-list-of-values-right-icon-padding;
|
|
79
|
+
background: $cc-co-list-of-values-right-icon-background;
|
|
80
|
+
border-radius: $cc-co-list-of-values-right-icon-radius;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
45
83
|
}
|
|
46
84
|
.transaction-line-warehouse-cc-section-label-wrapper {
|
|
47
85
|
display: flex;
|
|
@@ -4,7 +4,7 @@ $tp-dialog-transaction-line-warehouse-cc-font-color: $tp-color-font !default;
|
|
|
4
4
|
$tp-dialog-transaction-line-warehouse-cc-min-width: 500px !default;
|
|
5
5
|
$tp-dialog-transaction-line-warehouse-cc-commission-code-height: 100px !default;
|
|
6
6
|
$tp-dialog-transaction-line-warehouse-cc-quantity-width: 150px !default;
|
|
7
|
-
$tp-dialog-transaction-line-warehouse-cc-quantity-height:
|
|
7
|
+
$tp-dialog-transaction-line-warehouse-cc-quantity-height: 36px !default;
|
|
8
8
|
$tp-dialog-transaction-line-warehouse-cc-tab-content-height: 460px !default;
|
|
9
9
|
$tp-dialog-transaction-line-warehouse-cc-section-margin: 0 0 5px 0 !default;
|
|
10
10
|
$tp-dialog-transaction-line-warehouse-cc-section-max-height: auto !default;
|