@colijnit/transaction 261.20.21 → 261.20.22
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 +810 -55
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +107 -14
- 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/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -294,7 +294,7 @@ import { RelationSmallObject as RelationSmallObject$1 } from '@colijnit/relation
|
|
|
294
294
|
import { DocDeliveryBatch } from '@colijnit/transactionapi/build/model/doc-delivery-batch.bo';
|
|
295
295
|
import * as i3 from '@colijnit/corecomponents_v12';
|
|
296
296
|
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';
|
|
297
|
+
import * as i5$1 from '@colijnit/relation';
|
|
298
298
|
import { RelationService } from '@colijnit/relation';
|
|
299
299
|
import * as i6 from '@colijnit/sharedcomponents';
|
|
300
300
|
import { SharedService, StatusbarData, CalendarView, SendMethod, AgendaEventPerDay, FormBuilderUserFormComponent, ComponentActivityListComponent } from '@colijnit/sharedcomponents';
|
|
@@ -326,7 +326,7 @@ import { PaymentLineType } from '@colijnit/transactionapi/build/enum/payment-lin
|
|
|
326
326
|
import * as i4 from '@angular/cdk/scrolling';
|
|
327
327
|
import { SupplierStockForecast } from '@colijnit/transactionapi/build/model/supplier-stock-forecast';
|
|
328
328
|
import { PurchaseReservationSalesLine } from '@colijnit/transactionapi/build/model/purchase-reservation-sales-line.bo';
|
|
329
|
-
import * as
|
|
329
|
+
import * as i5 from '@colijnit/catalog';
|
|
330
330
|
import { CatalogService, CatalogEventService, ExternalSourceViewmodel } from '@colijnit/catalog';
|
|
331
331
|
import { SendMethodType } from '@colijnit/mainapi/build/enum/send-method-type.enum';
|
|
332
332
|
import { ReportingDocumentPdfBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-pdf-base-request';
|
|
@@ -2093,6 +2093,7 @@ declare enum Icon {
|
|
|
2093
2093
|
Purchase = "purchase",
|
|
2094
2094
|
RegularBoxesPackingCircleCheck = "regular_boxes_packing_circle_check",
|
|
2095
2095
|
RegularBoxOpenCircleCheck = "regular_box_open_circle_check",
|
|
2096
|
+
RegularBoxOpenFullCircleCheck = "regular_box_open_full_circle_check",
|
|
2096
2097
|
RegularCalendarDayLock = "regular_calendar_day_lock",
|
|
2097
2098
|
RegularCartFlatbedBoxesCircleCheck = "regular_cart_flatbed_boxes_circle_check",
|
|
2098
2099
|
RegularCartShoppingCheck = "regular_cart_shopping_check",
|
|
@@ -6508,7 +6509,7 @@ declare class DialogTransactionLineWarehouseLocationModule {
|
|
|
6508
6509
|
|
|
6509
6510
|
declare class TransactionLineWarehouseLocationButtonModule {
|
|
6510
6511
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineWarehouseLocationButtonModule, never>;
|
|
6511
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineWarehouseLocationButtonModule, [typeof TransactionLineWarehouseLocationButtonComponent], [typeof i2.CommonModule, typeof i3.IconModule, typeof DialogTransactionLineWarehouseLocationModule, typeof
|
|
6512
|
+
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
6513
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineWarehouseLocationButtonModule>;
|
|
6513
6514
|
}
|
|
6514
6515
|
|
|
@@ -7070,6 +7071,72 @@ declare class TransactionReceiveGoodsLineModule {
|
|
|
7070
7071
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionReceiveGoodsLineModule>;
|
|
7071
7072
|
}
|
|
7072
7073
|
|
|
7074
|
+
declare abstract class TransactionInterbranchReceiveGoodsLineBaseComponent extends TransactionLineBaseComponent implements OnInit, OnDestroy {
|
|
7075
|
+
readonly icons: typeof Icon;
|
|
7076
|
+
readonly transactionTypeCategory: typeof TransactionTypeCategory;
|
|
7077
|
+
warehouseLocationButtonDisabled: boolean;
|
|
7078
|
+
showCheckboxForLine: boolean;
|
|
7079
|
+
returnStockMode: boolean;
|
|
7080
|
+
calculatedStickerAmount: number;
|
|
7081
|
+
private _subscriptions;
|
|
7082
|
+
ngOnInit(): Promise<void>;
|
|
7083
|
+
ngOnDestroy(): void;
|
|
7084
|
+
changeLineAmount(amount: number): void;
|
|
7085
|
+
calcStickerAmount(): void;
|
|
7086
|
+
protected transactionLineSet(): void;
|
|
7087
|
+
private _handleTransactionLineSet;
|
|
7088
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInterbranchReceiveGoodsLineBaseComponent, never>;
|
|
7089
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TransactionInterbranchReceiveGoodsLineBaseComponent, never, never, {}, {}, never, never, true, never>;
|
|
7090
|
+
}
|
|
7091
|
+
|
|
7092
|
+
declare class TransactionInterbranchReceiveGoodsLineComponent extends TransactionInterbranchReceiveGoodsLineBaseComponent implements OnInit {
|
|
7093
|
+
readonly cfgNames: typeof TransactionCfgName;
|
|
7094
|
+
showClass(): boolean;
|
|
7095
|
+
statusBarConfigNames: StatusBarCfgNames;
|
|
7096
|
+
changeNrPackagesNotAllowed(): boolean;
|
|
7097
|
+
changeAmountPerUnitNotAllowed(): boolean;
|
|
7098
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInterbranchReceiveGoodsLineComponent, never>;
|
|
7099
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInterbranchReceiveGoodsLineComponent, "co-transaction-interbranch-receive-goods-line", never, {}, {}, never, never, false, never>;
|
|
7100
|
+
}
|
|
7101
|
+
|
|
7102
|
+
declare class TransactionLineInterbranchWarehouseLocationButtonComponent extends TransactionLineBaseComponent {
|
|
7103
|
+
transactionHeaderService: TransactionHeaderService;
|
|
7104
|
+
transactionLineService: TransactionLineService;
|
|
7105
|
+
transactionEventService: TransactionEventService;
|
|
7106
|
+
service: TransactionService;
|
|
7107
|
+
iconCacheService: IconCacheService;
|
|
7108
|
+
transactionScreenConfigurationService: TransactionScreenConfigurationService;
|
|
7109
|
+
protected dictionaryService: DictionaryService;
|
|
7110
|
+
protected imageService: TransactionImageService;
|
|
7111
|
+
protected changeDetector: ChangeDetectorRef;
|
|
7112
|
+
private _dialogService;
|
|
7113
|
+
private _articleService;
|
|
7114
|
+
readonly icons: typeof Icon;
|
|
7115
|
+
showDialogLocation: boolean;
|
|
7116
|
+
inputLabel: boolean;
|
|
7117
|
+
showClass(): boolean;
|
|
7118
|
+
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _dialogService: TransactionDialogService, _articleService: ArticleService);
|
|
7119
|
+
openWarehouseLocationDialog(event: MouseEvent): Promise<void>;
|
|
7120
|
+
protected transactionLineSet(): void;
|
|
7121
|
+
private _checkLocationValidity;
|
|
7122
|
+
private _setDefaultLocationIfExistInWarehouse;
|
|
7123
|
+
private _locationExistInWarehouse;
|
|
7124
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineInterbranchWarehouseLocationButtonComponent, never>;
|
|
7125
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineInterbranchWarehouseLocationButtonComponent, "co-transaction-line-interbranch-warehouse-location-button", never, { "inputLabel": { "alias": "inputLabel"; "required": false; }; }, {}, never, never, false, never>;
|
|
7126
|
+
}
|
|
7127
|
+
|
|
7128
|
+
declare class TransactionLineInterbranchWarehouseLocationButtonModule {
|
|
7129
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineInterbranchWarehouseLocationButtonModule, never>;
|
|
7130
|
+
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]>;
|
|
7131
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineInterbranchWarehouseLocationButtonModule>;
|
|
7132
|
+
}
|
|
7133
|
+
|
|
7134
|
+
declare class TransactionInterbranchReceiveGoodsLineModule {
|
|
7135
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInterbranchReceiveGoodsLineModule, never>;
|
|
7136
|
+
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]>;
|
|
7137
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionInterbranchReceiveGoodsLineModule>;
|
|
7138
|
+
}
|
|
7139
|
+
|
|
7073
7140
|
declare abstract class TransactionPurchaseOrderLineBaseComponent extends TransactionLineBaseComponent implements OnInit, OnDestroy {
|
|
7074
7141
|
transactionHeaderService: TransactionHeaderService;
|
|
7075
7142
|
transactionLineService: TransactionLineService;
|
|
@@ -7795,7 +7862,7 @@ declare class TransactionSalesPickingButtonBarButtonComponent extends Transactio
|
|
|
7795
7862
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSalesPickingButtonBarButtonComponent, "co-transaction-sales-picking-button-bar-button", never, {}, { "buttonClicked": "buttonClicked"; }, never, never, false, never>;
|
|
7796
7863
|
}
|
|
7797
7864
|
|
|
7798
|
-
declare class TransactionSalesOverviewButtonBarButtonComponent extends TransactionButtonBarButtonBaseComponent
|
|
7865
|
+
declare class TransactionSalesOverviewButtonBarButtonComponent extends TransactionButtonBarButtonBaseComponent {
|
|
7799
7866
|
iconCacheService: IconCacheService;
|
|
7800
7867
|
protected changeDetector: ChangeDetectorRef;
|
|
7801
7868
|
private _transactionEventService;
|
|
@@ -7814,7 +7881,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
7814
7881
|
showCategories: boolean;
|
|
7815
7882
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
7816
7883
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
7817
|
-
currentTitle(): "
|
|
7884
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
7818
7885
|
ngOnDestroy(): void;
|
|
7819
7886
|
handleClickWrapper(event: MouseEvent): void;
|
|
7820
7887
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -7823,7 +7890,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
7823
7890
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSalesOverviewButtonBarButtonComponent, "co-transaction-sales-overview-button-bar-button", never, {}, {}, never, never, false, never>;
|
|
7824
7891
|
}
|
|
7825
7892
|
|
|
7826
|
-
declare class TransactionPurchaseOverviewButtonBarButtonComponent extends TransactionButtonBarButtonBaseComponent
|
|
7893
|
+
declare class TransactionPurchaseOverviewButtonBarButtonComponent extends TransactionButtonBarButtonBaseComponent {
|
|
7827
7894
|
iconCacheService: IconCacheService;
|
|
7828
7895
|
transactionHeaderService: TransactionHeaderService;
|
|
7829
7896
|
transactionEventService: TransactionEventService;
|
|
@@ -7840,7 +7907,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
7840
7907
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
7841
7908
|
ngOnDestroy(): void;
|
|
7842
7909
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
7843
|
-
currentTitle(): "
|
|
7910
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
7844
7911
|
handleClickWrapper(event: MouseEvent): void;
|
|
7845
7912
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
7846
7913
|
private handleDocumentClick;
|
|
@@ -7892,7 +7959,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
7892
7959
|
showCategories: boolean;
|
|
7893
7960
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
7894
7961
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
7895
|
-
currentTitle(): "
|
|
7962
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
7896
7963
|
ngOnDestroy(): void;
|
|
7897
7964
|
handleClickWrapper(event: MouseEvent): void;
|
|
7898
7965
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -11567,7 +11634,7 @@ declare class TransactionLineToolbarModule {
|
|
|
11567
11634
|
|
|
11568
11635
|
declare class TransactionLineModule {
|
|
11569
11636
|
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]>;
|
|
11637
|
+
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
11638
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineModule>;
|
|
11572
11639
|
}
|
|
11573
11640
|
|
|
@@ -12023,7 +12090,7 @@ declare class RelationContactDetailsComponent extends RelationBaseComponent {
|
|
|
12023
12090
|
|
|
12024
12091
|
declare class RelationContactDetailsModule {
|
|
12025
12092
|
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]>;
|
|
12093
|
+
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
12094
|
static ɵinj: i0.ɵɵInjectorDeclaration<RelationContactDetailsModule>;
|
|
12028
12095
|
}
|
|
12029
12096
|
|
|
@@ -13092,7 +13159,7 @@ declare class DialogCatalogComponent implements OnInit, OnDestroy {
|
|
|
13092
13159
|
|
|
13093
13160
|
declare class DialogCatalogModule {
|
|
13094
13161
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogCatalogModule, never>;
|
|
13095
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DialogCatalogModule, [typeof DialogCatalogComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof
|
|
13162
|
+
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
13163
|
static ɵinj: i0.ɵɵInjectorDeclaration<DialogCatalogModule>;
|
|
13097
13164
|
}
|
|
13098
13165
|
|
|
@@ -13286,9 +13353,36 @@ declare class TransactionHeaderRelationDateModule {
|
|
|
13286
13353
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderRelationDateModule>;
|
|
13287
13354
|
}
|
|
13288
13355
|
|
|
13356
|
+
declare class TransactionHeaderTargetWarehouseComponent extends TransactionFilterPopupHeaderBaseComponent<Warehouse> implements OnInit {
|
|
13357
|
+
transactionHeaderService: TransactionHeaderService;
|
|
13358
|
+
transactionEventService: TransactionEventService;
|
|
13359
|
+
service: TransactionService;
|
|
13360
|
+
iconCacheService: IconCacheService;
|
|
13361
|
+
transactionScreenConfigurationService: TransactionScreenConfigurationService;
|
|
13362
|
+
protected dictionaryService: DictionaryService;
|
|
13363
|
+
protected imageService: TransactionImageService;
|
|
13364
|
+
protected changeDetector: ChangeDetectorRef;
|
|
13365
|
+
fields: Object;
|
|
13366
|
+
warehouseModel: Warehouse;
|
|
13367
|
+
protected codeField: string;
|
|
13368
|
+
protected checkField: string;
|
|
13369
|
+
protected propsForLabel: CheckboxListPropertyInterface[];
|
|
13370
|
+
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef);
|
|
13371
|
+
ngOnInit(): void;
|
|
13372
|
+
private _setWarehouseModel;
|
|
13373
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderTargetWarehouseComponent, never>;
|
|
13374
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderTargetWarehouseComponent, "co-transaction-header-target-warehouse", never, {}, {}, never, never, false, never>;
|
|
13375
|
+
}
|
|
13376
|
+
|
|
13377
|
+
declare class TransactionHeaderTargetWarehouseModule {
|
|
13378
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderTargetWarehouseModule, never>;
|
|
13379
|
+
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]>;
|
|
13380
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderTargetWarehouseModule>;
|
|
13381
|
+
}
|
|
13382
|
+
|
|
13289
13383
|
declare class TransactionHeaderPopupModule {
|
|
13290
13384
|
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]>;
|
|
13385
|
+
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
13386
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderPopupModule>;
|
|
13293
13387
|
}
|
|
13294
13388
|
|
|
@@ -13932,8 +14026,7 @@ declare class TransactionQuickAccessInterbranchReceivedGoodsComponent extends Tr
|
|
|
13932
14026
|
protected emailDocument(emailInvoiceRequest: ReportingDocumentEmailSignDocBaseRequest): void;
|
|
13933
14027
|
protected transactionInfoSet(): void;
|
|
13934
14028
|
protected combinedDocument(request: PrintPurchaseOrderForTransactionOrderWithoutLinesRequest, localPrint: boolean): void;
|
|
13935
|
-
private
|
|
13936
|
-
private getIsSingleLineWarehouse;
|
|
14029
|
+
private setLocations;
|
|
13937
14030
|
private getLocations;
|
|
13938
14031
|
private checkAndSetNoColliStickers;
|
|
13939
14032
|
private _receiveGoods;
|
package/lib/component/transaction-line/transaction-interbranch-receive-goods-line/style/_layout.scss
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
@include export-module('cc-transaction-interbranch-receive-goods-line-layout') {
|
|
2
|
+
.co-transaction-interbranch-receive-goods-line {
|
|
3
|
+
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.co-input-number-picker .icon-wrapper {
|
|
7
|
+
display: flex;
|
|
8
|
+
height: 100%;
|
|
9
|
+
width: 100%;
|
|
10
|
+
border-radius: 0;
|
|
11
|
+
flex-shrink: 0;
|
|
12
|
+
align-items: center;
|
|
13
|
+
max-width: 25px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
}
|
|
File without changes
|