@colijnit/transaction 300.1.17 → 300.1.19
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 +547 -495
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +56 -48
- package/lib/component/transaction-line/transaction-line/style/_layout.scss +24 -1
- package/lib/component/transaction-line/transaction-line/style/_material-definition.scss +7 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-invoice-check-order-tile/style/_layout.scss +6 -1
- package/package.json +2 -2
- package/lib/component/transaction-line-planning-tasks/style/_layout.scss +0 -10
- package/lib/component/transaction-line-planning-tasks/style/_material-definition.scss +0 -0
- package/lib/component/transaction-line-planning-tasks/style/_theme.scss +0 -4
- package/lib/component/transaction-line-planning-tasks/style/material.scss +0 -4
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ComponentFactoryResolver, ApplicationRef, Injector, ComponentRef, StaticProvider, InjectionToken, EventEmitter, OnDestroy, OnInit, AfterViewInit, ChangeDetectorRef, ElementRef, PipeTransform, Type, OnChanges, SimpleChanges, AfterViewChecked, QueryList, ViewContainerRef, Renderer2
|
|
2
|
+
import { ComponentFactoryResolver, ApplicationRef, Injector, ComponentRef, StaticProvider, InjectionToken, EventEmitter, OnDestroy, OnInit, AfterViewInit, ChangeDetectorRef, ElementRef, PipeTransform, Type, OnChanges, SimpleChanges, AfterViewChecked, TemplateRef, QueryList, ViewContainerRef, Renderer2 } from '@angular/core';
|
|
3
3
|
import { DiscountType } from '@colijnit/transactionapi/build/enum/discount-type.enum';
|
|
4
4
|
import { ArticleFullObject } from '@colijnit/transactionapi/build/model/article-full-object';
|
|
5
5
|
import { CashRegister } from '@colijnit/transactionapi/build/model/cash-register';
|
|
@@ -332,7 +332,6 @@ import * as i13 from '@angular/cdk/drag-drop';
|
|
|
332
332
|
import { CdkDrag, CdkDropList, CdkDragEnter, CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
333
333
|
import { TransactionLineType } from '@colijnit/transactionapi/build/enum/transaction-line-type.enum';
|
|
334
334
|
import { TransactionLineMarginInfo } from '@colijnit/transactionapi/build/model/transaction-line-margin-info.bo';
|
|
335
|
-
import { FormResponse as FormResponse$1 } from '@colijnit/transactionapi/build/model/form-response.bo';
|
|
336
335
|
import { PaymentLineType } from '@colijnit/transactionapi/build/enum/payment-line-type';
|
|
337
336
|
import * as i4 from '@angular/cdk/scrolling';
|
|
338
337
|
import { RelationContactLink } from '@colijnit/relationapi/build/model/relation-contact-link.bo';
|
|
@@ -942,7 +941,7 @@ declare class TransactionEventService {
|
|
|
942
941
|
readonly lockResetRequested: Subject<void>;
|
|
943
942
|
readonly searchServiceTransactionTypeChanged: Subject<void>;
|
|
944
943
|
readonly headerReadOnlyChange: BehaviorSubject<boolean>;
|
|
945
|
-
readonly lineUserFormResponseRequest:
|
|
944
|
+
readonly lineUserFormResponseRequest: Subject<{
|
|
946
945
|
formId: number;
|
|
947
946
|
lineUUID: string;
|
|
948
947
|
openUserForm: boolean;
|
|
@@ -1404,6 +1403,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1404
1403
|
getPackageInformation(transactionUUID: string, lineUUID: string): Promise<PackageLSP[]>;
|
|
1405
1404
|
getLogisticsPartners(): Promise<DeliveryMethod$1[]>;
|
|
1406
1405
|
loadDocumentsOfTransaction(key: string): Promise<CoDocument[]>;
|
|
1406
|
+
loadDocumentsOfTransactionLine(key: string): Promise<CoDocument[]>;
|
|
1407
1407
|
getDocumentsForCurrentUserByTransId(transId: number): Promise<CoDocument[]>;
|
|
1408
1408
|
loadDocumentContent(docId: number): Promise<string>;
|
|
1409
1409
|
mergeDocumentOnTransaction(key: string, document: CoDocument): Promise<CoDocument>;
|
|
@@ -1464,6 +1464,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1464
1464
|
getVoucherInfo(voucherCode: string, toCurrencyCode?: string): Promise<Voucher>;
|
|
1465
1465
|
getFirstConfirmedDeliveryDateForTransactionLine(transId: number, lineNr: number): Promise<Date>;
|
|
1466
1466
|
getFormById(formId: number): Promise<Form>;
|
|
1467
|
+
getActiveReturnForm(): Promise<Form>;
|
|
1467
1468
|
getAllFormResponsesForTableAndKey(table: TableName, key: string): Promise<FormResponse[]>;
|
|
1468
1469
|
getFormResponse(formResponseId: number): Promise<FormResponse>;
|
|
1469
1470
|
upsertTransactionLineFormResponse(transUUID: string, lineUUID: string, formResponse: FormResponse): Promise<TransactionInfoResponse>;
|
|
@@ -1906,6 +1907,7 @@ declare class TransactionConnectorService {
|
|
|
1906
1907
|
getPlanTransportWeek(startDate: Date, planningId: number): Promise<PlanningTransportWeek[]>;
|
|
1907
1908
|
updatePlanTransportWeek(planTransportWeek: PlanningTransportWeek): Promise<boolean>;
|
|
1908
1909
|
loadDocumentsOfTransaction(key: string): Promise<CoDocument[]>;
|
|
1910
|
+
loadDocumentsOfTransactionLine(key: string, overrideOld?: boolean): Promise<CoDocument[]>;
|
|
1909
1911
|
getDocumentsForCurrentUserByTransId(transId: number): Promise<CoDocument[]>;
|
|
1910
1912
|
loadDocumentContent(docId: number, thumbnail?: boolean): Promise<string>;
|
|
1911
1913
|
mergeDocumentOnTransaction(key: string, document: CoDocument): Promise<CoDocument>;
|
|
@@ -1952,6 +1954,7 @@ declare class TransactionConnectorService {
|
|
|
1952
1954
|
getVoucherInfo(voucherCode: string, toCurrencyCode?: string): Promise<Voucher>;
|
|
1953
1955
|
getFirstConfirmedDeliveryDateForTransactionLine(transId: number, lineNr: number): Promise<Date>;
|
|
1954
1956
|
getFormById(formId: number): Promise<Form>;
|
|
1957
|
+
getActiveReturnForm(): Promise<Form>;
|
|
1955
1958
|
getAllFormResponsesForTableAndKey(table: TableName, key: string): Promise<FormResponse[]>;
|
|
1956
1959
|
upsertTransactionLineFormResponse(transUUID: string, lineUUID: string, formResponse: FormResponse): Promise<TransactionInfoResponse>;
|
|
1957
1960
|
getFormResponse(responseId: number): Promise<FormResponse>;
|
|
@@ -2165,6 +2168,7 @@ declare enum Icon {
|
|
|
2165
2168
|
PalletBoxesRotate = "pallet_boxes_rotate",
|
|
2166
2169
|
PalletBoxesSharpRegular = "pallet_boxes_sharp_regular",
|
|
2167
2170
|
PalletBoxesSolid = "pallet_boxes_solid",
|
|
2171
|
+
PaperclipVerticalLight = "paperclip_vertical_light",
|
|
2168
2172
|
Pdf = "pdf",
|
|
2169
2173
|
PencilRegularFull = "pencil_regular_full",
|
|
2170
2174
|
PencilSolidFull = "pencil_solid_full",
|
|
@@ -2793,6 +2797,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2793
2797
|
getTransactionMarginInfo(transactionUUID: string): Promise<TransactionMarginInfo>;
|
|
2794
2798
|
printSalesOrdersOverview(request: TransactionSearchViewRequest): Promise<PdfTransactionSearchOverviewResponse>;
|
|
2795
2799
|
loadDocumentsOfTransaction(key: string): Promise<CoDocument[]>;
|
|
2800
|
+
loadDocumentsOfTransactionLine(key: string): Promise<CoDocument[]>;
|
|
2796
2801
|
getDocumentsForCurrentUserByTransId(transId: number): Promise<CoDocument[]>;
|
|
2797
2802
|
loadDocumentContent(docId: number, thumbnail?: boolean): Promise<string>;
|
|
2798
2803
|
mergeDocumentOnTransaction(key: string, document: CoDocument): Promise<CoDocument>;
|
|
@@ -3930,6 +3935,7 @@ declare class ConfirmationDialogModule {
|
|
|
3930
3935
|
|
|
3931
3936
|
declare class TransactionLineService {
|
|
3932
3937
|
transactionLineSet: BehaviorSubject<boolean>;
|
|
3938
|
+
visibilityChange: BehaviorSubject<boolean>;
|
|
3933
3939
|
set transactionLine(value: TransactionLineInfo);
|
|
3934
3940
|
get transactionLine(): TransactionLineInfo;
|
|
3935
3941
|
set selected(value: boolean);
|
|
@@ -3965,8 +3971,10 @@ declare class TransactionLineService {
|
|
|
3965
3971
|
isText: boolean;
|
|
3966
3972
|
isArticle: boolean;
|
|
3967
3973
|
showingMargins: boolean;
|
|
3968
|
-
lineVisible: boolean;
|
|
3974
|
+
set lineVisible(value: boolean);
|
|
3975
|
+
get lineVisible(): boolean;
|
|
3969
3976
|
private _transactionLine;
|
|
3977
|
+
private _lineVisible;
|
|
3970
3978
|
constructor();
|
|
3971
3979
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineService, never>;
|
|
3972
3980
|
static ɵprov: i0.ɵɵInjectableDeclaration<TransactionLineService>;
|
|
@@ -5033,10 +5041,6 @@ declare class TransactionOverviewLineComponent extends TransactionLineBaseCompon
|
|
|
5033
5041
|
protected changeDetector: ChangeDetectorRef;
|
|
5034
5042
|
readonly category: typeof TransactionTypeCategory;
|
|
5035
5043
|
readonly icons: typeof Icon;
|
|
5036
|
-
formKey: string;
|
|
5037
|
-
formResponse: FormResponse$1[];
|
|
5038
|
-
form: Form;
|
|
5039
|
-
formTable: TableName;
|
|
5040
5044
|
transactionLineActionButtons: TransactionLineActionButtonsComponent;
|
|
5041
5045
|
lineIndex: number;
|
|
5042
5046
|
descriptionDblClick: EventEmitter<void>;
|
|
@@ -5055,7 +5059,7 @@ declare class TransactionOverviewLineComponent extends TransactionLineBaseCompon
|
|
|
5055
5059
|
handleCheckBoxValueChanged(value: boolean): void;
|
|
5056
5060
|
handleServiceExistingOrderNavigation(ref: TransactionRefTransaction): void;
|
|
5057
5061
|
onDescriptionDblClick(): void;
|
|
5058
|
-
openForm():
|
|
5062
|
+
openForm(mouseEvent: MouseEvent): void;
|
|
5059
5063
|
protected readonly isNaN: typeof isNaN;
|
|
5060
5064
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionOverviewLineComponent, never>;
|
|
5061
5065
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionOverviewLineComponent, "co-transaction-overview-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; }, { "descriptionDblClick": "descriptionDblClick"; }, never, never, false, never>;
|
|
@@ -5390,21 +5394,16 @@ declare class TransactionLinePriceModule {
|
|
|
5390
5394
|
}
|
|
5391
5395
|
|
|
5392
5396
|
declare class TransactionBaseLineComponent implements OnInit, OnDestroy {
|
|
5397
|
+
iconCacheService: IconCacheService;
|
|
5393
5398
|
private _transactionService;
|
|
5394
5399
|
private _transactionEventService;
|
|
5395
5400
|
private _screenConfigService;
|
|
5396
5401
|
private _changeDetector;
|
|
5402
|
+
private _transactionHeaderService;
|
|
5403
|
+
private _transactionLineService;
|
|
5397
5404
|
readonly cfgNames: typeof TransactionCfgName;
|
|
5398
5405
|
lineIndex: number;
|
|
5399
|
-
set transaction(value: TransactionInfoResponse);
|
|
5400
|
-
get transaction(): TransactionInfoResponse;
|
|
5401
|
-
set transactionInfo(value: TransactionInfo);
|
|
5402
5406
|
draggable: boolean;
|
|
5403
|
-
dragStart: EventEmitter<void>;
|
|
5404
|
-
dragEnd: EventEmitter<void>;
|
|
5405
|
-
get transactionInfo(): TransactionInfo;
|
|
5406
|
-
set transactionLine(value: TransactionLineInfo);
|
|
5407
|
-
get transactionLine(): TransactionLineInfo;
|
|
5408
5407
|
set selected(value: boolean);
|
|
5409
5408
|
get selected(): boolean;
|
|
5410
5409
|
preview: boolean;
|
|
@@ -5420,24 +5419,35 @@ declare class TransactionBaseLineComponent implements OnInit, OnDestroy {
|
|
|
5420
5419
|
showArticleNr: boolean;
|
|
5421
5420
|
customerPortal: boolean;
|
|
5422
5421
|
showPriceAmount: boolean;
|
|
5422
|
+
handleDocuments: boolean;
|
|
5423
5423
|
checkboxValueChanged: EventEmitter<boolean>;
|
|
5424
5424
|
waitingForUserAction: EventEmitter<boolean>;
|
|
5425
|
+
dragStart: EventEmitter<void>;
|
|
5426
|
+
dragEnd: EventEmitter<void>;
|
|
5425
5427
|
showClass(): boolean;
|
|
5428
|
+
get transactionInfo(): TransactionInfo;
|
|
5429
|
+
get orderLineSets(): OrderLineSetInfo[];
|
|
5430
|
+
get transactionLine(): TransactionLineInfo;
|
|
5426
5431
|
showActionsButton: boolean;
|
|
5432
|
+
documentsCollection: CoDocument[];
|
|
5433
|
+
key: string;
|
|
5434
|
+
documentCount: number;
|
|
5435
|
+
protected readonly icons: typeof Icon;
|
|
5427
5436
|
actionButtonsConfigNames: ActionButtonsCfgNames;
|
|
5428
5437
|
private _checkboxValue;
|
|
5429
5438
|
private _subs;
|
|
5430
|
-
private _transaction;
|
|
5431
|
-
private _transactionInfo;
|
|
5432
|
-
private _transactionLine;
|
|
5433
5439
|
private _selected;
|
|
5434
|
-
constructor(_transactionService: TransactionService, _transactionEventService: TransactionEventService, _screenConfigService: TransactionScreenConfigurationService, _changeDetector: ChangeDetectorRef);
|
|
5440
|
+
constructor(iconCacheService: IconCacheService, _transactionService: TransactionService, _transactionEventService: TransactionEventService, _screenConfigService: TransactionScreenConfigurationService, _changeDetector: ChangeDetectorRef, _transactionHeaderService: TransactionHeaderService, _transactionLineService: TransactionLineService);
|
|
5435
5441
|
ngOnInit(): void;
|
|
5436
5442
|
ngOnDestroy(): void;
|
|
5443
|
+
loadDocuments(): Promise<void>;
|
|
5437
5444
|
deleteTransactionLineClick(event: MouseEvent): Promise<void>;
|
|
5438
5445
|
handleOpenArticleText(): void;
|
|
5446
|
+
handleAddDocumentButtonClick(): void;
|
|
5447
|
+
protected transactionLineSet(): void;
|
|
5448
|
+
private _tryLoadDocuments;
|
|
5439
5449
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionBaseLineComponent, never>;
|
|
5440
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionBaseLineComponent, "co-transaction-base-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; "
|
|
5450
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionBaseLineComponent, "co-transaction-base-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "preview": { "alias": "preview"; "required": false; }; "isFirst": { "alias": "isFirst"; "required": false; }; "checkboxValue": { "alias": "checkboxValue"; "required": false; }; "showColorIndicator": { "alias": "showColorIndicator"; "required": false; }; "colorIndicatorColor": { "alias": "colorIndicatorColor"; "required": false; }; "checkboxReadonly": { "alias": "checkboxReadonly"; "required": false; }; "checkbox": { "alias": "checkbox"; "required": false; }; "actionButtons": { "alias": "actionButtons"; "required": false; }; "showPurchaseDescAndPrice": { "alias": "showPurchaseDescAndPrice"; "required": false; }; "showArticleNr": { "alias": "showArticleNr"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "showPriceAmount": { "alias": "showPriceAmount"; "required": false; }; "handleDocuments": { "alias": "handleDocuments"; "required": false; }; }, { "checkboxValueChanged": "checkboxValueChanged"; "waitingForUserAction": "waitingForUserAction"; "dragStart": "dragStart"; "dragEnd": "dragEnd"; }, never, ["*"], false, never>;
|
|
5441
5451
|
}
|
|
5442
5452
|
|
|
5443
5453
|
declare class TransactionBaseLineModule {
|
|
@@ -7321,6 +7331,7 @@ declare class DialogCatalogComponent implements OnInit, OnDestroy {
|
|
|
7321
7331
|
transaction: TransactionInfoResponse;
|
|
7322
7332
|
isReturn: boolean;
|
|
7323
7333
|
showRelatedProductsPopup: boolean;
|
|
7334
|
+
searchPresetsCatalogTemplate: TemplateRef<any>;
|
|
7324
7335
|
closeClick: EventEmitter<MouseEvent>;
|
|
7325
7336
|
articleClicked: EventEmitter<ArticleExtended>;
|
|
7326
7337
|
iFrameFeedback: EventEmitter<{
|
|
@@ -7389,7 +7400,7 @@ declare class DialogCatalogComponent implements OnInit, OnDestroy {
|
|
|
7389
7400
|
private buildExternalCatalogRequest;
|
|
7390
7401
|
private expandExternalCatalogRequestIfNeeded;
|
|
7391
7402
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogCatalogComponent, never>;
|
|
7392
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DialogCatalogComponent, "co-dialog-catalog", never, { "handleAddArticleInternally": { "alias": "handleAddArticleInternally"; "required": false; }; "options": { "alias": "options"; "required": false; }; "parameters": { "alias": "parameters"; "required": false; }; "showNavigation": { "alias": "showNavigation"; "required": false; }; "returnArticleOnTileClick": { "alias": "returnArticleOnTileClick"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "isReturn": { "alias": "isReturn"; "required": false; }; "showRelatedProductsPopup": { "alias": "showRelatedProductsPopup"; "required": false; }; }, { "closeClick": "closeClick"; "articleClicked": "articleClicked"; "iFrameFeedback": "iFrameFeedback"; "addArticleClicked": "addArticleClicked"; "addCatFarmArticleClicked": "addCatFarmArticleClicked"; "addExternalArticleClicked": "addExternalArticleClicked"; }, never, never, false, never>;
|
|
7403
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogCatalogComponent, "co-dialog-catalog", never, { "handleAddArticleInternally": { "alias": "handleAddArticleInternally"; "required": false; }; "options": { "alias": "options"; "required": false; }; "parameters": { "alias": "parameters"; "required": false; }; "showNavigation": { "alias": "showNavigation"; "required": false; }; "returnArticleOnTileClick": { "alias": "returnArticleOnTileClick"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "isReturn": { "alias": "isReturn"; "required": false; }; "showRelatedProductsPopup": { "alias": "showRelatedProductsPopup"; "required": false; }; "searchPresetsCatalogTemplate": { "alias": "searchPresetsCatalogTemplate"; "required": false; }; }, { "closeClick": "closeClick"; "articleClicked": "articleClicked"; "iFrameFeedback": "iFrameFeedback"; "addArticleClicked": "addArticleClicked"; "addCatFarmArticleClicked": "addCatFarmArticleClicked"; "addExternalArticleClicked": "addExternalArticleClicked"; }, never, never, false, never>;
|
|
7393
7404
|
}
|
|
7394
7405
|
|
|
7395
7406
|
declare class DialogCatalogModule {
|
|
@@ -9819,13 +9830,14 @@ declare class TransactionLineSidePanelDefaultModule {
|
|
|
9819
9830
|
declare class TransactionReceivingGoodsHistoryComponent {
|
|
9820
9831
|
readonly SimpleGridColumnTemplateType: typeof SimpleGridColumnTemplateType;
|
|
9821
9832
|
showDeleteButton: boolean;
|
|
9833
|
+
disableDeleteButton: boolean;
|
|
9822
9834
|
set goodsReceiptHistory(value: LogisticalStateDetail[]);
|
|
9823
9835
|
get goodsReceiptHistory(): LogisticalStateDetail[];
|
|
9824
|
-
private _goodsReceiptHistory;
|
|
9825
9836
|
deleteRow: EventEmitter<LogisticalStateDetail>;
|
|
9826
9837
|
showClass(): boolean;
|
|
9838
|
+
private _goodsReceiptHistory;
|
|
9827
9839
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionReceivingGoodsHistoryComponent, never>;
|
|
9828
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionReceivingGoodsHistoryComponent, "co-transaction-receiving-goods-history", never, { "showDeleteButton": { "alias": "showDeleteButton"; "required": false; }; "goodsReceiptHistory": { "alias": "goodsReceiptHistory"; "required": false; }; }, { "deleteRow": "deleteRow"; }, never, never, false, never>;
|
|
9840
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionReceivingGoodsHistoryComponent, "co-transaction-receiving-goods-history", never, { "showDeleteButton": { "alias": "showDeleteButton"; "required": false; }; "disableDeleteButton": { "alias": "disableDeleteButton"; "required": false; }; "goodsReceiptHistory": { "alias": "goodsReceiptHistory"; "required": false; }; }, { "deleteRow": "deleteRow"; }, never, never, false, never>;
|
|
9829
9841
|
}
|
|
9830
9842
|
|
|
9831
9843
|
declare enum StatusType {
|
|
@@ -9844,6 +9856,7 @@ declare class TransactionHistoryGridComponent {
|
|
|
9844
9856
|
set collection(collection: any);
|
|
9845
9857
|
get collection(): any;
|
|
9846
9858
|
showDeleteButton: boolean;
|
|
9859
|
+
disableDeleteButton: boolean;
|
|
9847
9860
|
deleteSelectedRow: EventEmitter<any>;
|
|
9848
9861
|
showClass(): boolean;
|
|
9849
9862
|
extraColumns: SimpleGridColumnDirective[];
|
|
@@ -9854,7 +9867,7 @@ declare class TransactionHistoryGridComponent {
|
|
|
9854
9867
|
handleSelectRow(row: any): void;
|
|
9855
9868
|
handleDeleteClick(): void;
|
|
9856
9869
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHistoryGridComponent, never>;
|
|
9857
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHistoryGridComponent, "co-transaction-history-grid", never, { "collection": { "alias": "collection"; "required": false; }; "showDeleteButton": { "alias": "showDeleteButton"; "required": false; }; }, { "deleteSelectedRow": "deleteSelectedRow"; }, ["content"], never, false, never>;
|
|
9870
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHistoryGridComponent, "co-transaction-history-grid", never, { "collection": { "alias": "collection"; "required": false; }; "showDeleteButton": { "alias": "showDeleteButton"; "required": false; }; "disableDeleteButton": { "alias": "disableDeleteButton"; "required": false; }; }, { "deleteSelectedRow": "deleteSelectedRow"; }, ["content"], never, false, never>;
|
|
9858
9871
|
}
|
|
9859
9872
|
|
|
9860
9873
|
declare class TransactionHistoryGridStatusComponent implements AfterViewInit {
|
|
@@ -10092,7 +10105,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
10092
10105
|
showCategories: boolean;
|
|
10093
10106
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10094
10107
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10095
|
-
currentTitle(): "
|
|
10108
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10096
10109
|
ngOnDestroy(): void;
|
|
10097
10110
|
handleClickWrapper(event: MouseEvent): void;
|
|
10098
10111
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -10118,7 +10131,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
10118
10131
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
10119
10132
|
ngOnDestroy(): void;
|
|
10120
10133
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10121
|
-
currentTitle(): "
|
|
10134
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10122
10135
|
handleClickWrapper(event: MouseEvent): void;
|
|
10123
10136
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
10124
10137
|
private handleDocumentClick;
|
|
@@ -10170,7 +10183,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
10170
10183
|
showCategories: boolean;
|
|
10171
10184
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10172
10185
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10173
|
-
currentTitle(): "
|
|
10186
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
10174
10187
|
ngOnDestroy(): void;
|
|
10175
10188
|
handleClickWrapper(event: MouseEvent): void;
|
|
10176
10189
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -10291,6 +10304,7 @@ declare class TransactionLinePurchaseReceiveGoodsComponent extends TransactionLi
|
|
|
10291
10304
|
quantityToReceive: number;
|
|
10292
10305
|
calculatedStickerAmount: number;
|
|
10293
10306
|
showLocation: boolean;
|
|
10307
|
+
deleting: boolean;
|
|
10294
10308
|
private _subs;
|
|
10295
10309
|
private _defaultReportId;
|
|
10296
10310
|
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _formMaster: FormMasterService);
|
|
@@ -14075,7 +14089,7 @@ declare class StepperStepModule {
|
|
|
14075
14089
|
static ɵinj: i0.ɵɵInjectorDeclaration<StepperStepModule>;
|
|
14076
14090
|
}
|
|
14077
14091
|
|
|
14078
|
-
declare class TransactionManualCreateDialogComponent {
|
|
14092
|
+
declare class TransactionManualCreateDialogComponent implements OnInit {
|
|
14079
14093
|
iconCacheService: IconCacheService;
|
|
14080
14094
|
service: TransactionService;
|
|
14081
14095
|
readonly icons: typeof Icon;
|
|
@@ -14083,9 +14097,11 @@ declare class TransactionManualCreateDialogComponent {
|
|
|
14083
14097
|
saveEvent: EventEmitter<void>;
|
|
14084
14098
|
showClass(): boolean;
|
|
14085
14099
|
constructor(iconCacheService: IconCacheService, service: TransactionService);
|
|
14100
|
+
ngOnInit(): void;
|
|
14086
14101
|
handleCloseClick(): void;
|
|
14087
14102
|
handleCommitClick(): void;
|
|
14088
14103
|
handleCancelClick(): void;
|
|
14104
|
+
private _resetManualData;
|
|
14089
14105
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionManualCreateDialogComponent, never>;
|
|
14090
14106
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionManualCreateDialogComponent, "co-transaction-manual-create-dialog", never, {}, { "closeEvent": "closeEvent"; "saveEvent": "saveEvent"; }, never, never, false, never>;
|
|
14091
14107
|
}
|
|
@@ -14168,6 +14184,7 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
14168
14184
|
private _transactionPlanning;
|
|
14169
14185
|
customerPortal: boolean;
|
|
14170
14186
|
resetActiveRubric: boolean;
|
|
14187
|
+
searchPresetsCatalogTemplate: TemplateRef<any>;
|
|
14171
14188
|
serviceRequested: EventEmitter<{
|
|
14172
14189
|
transactionNr: number;
|
|
14173
14190
|
transactionId: number;
|
|
@@ -14276,7 +14293,7 @@ declare class TransactionInternalComponent implements OnInit, OnDestroy {
|
|
|
14276
14293
|
private _commitTransactionSalesPerson;
|
|
14277
14294
|
private _fetchPlanOrderIfNeeded;
|
|
14278
14295
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInternalComponent, never>;
|
|
14279
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInternalComponent, "co-transaction-internal", never, { "confirmationAnalysisId": { "alias": "confirmationAnalysisId"; "required": false; }; "posOrderData": { "alias": "posOrderData"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showViewModeButtons": { "alias": "showViewModeButtons"; "required": false; }; "transactionPlanning": { "alias": "transactionPlanning"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "resetActiveRubric": { "alias": "resetActiveRubric"; "required": false; }; "showQuickAccess": { "alias": "showQuickAccess"; "required": false; }; "showButtonBar": { "alias": "showButtonBar"; "required": false; }; }, { "serviceRequested": "serviceRequested"; }, never, never, false, never>;
|
|
14296
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInternalComponent, "co-transaction-internal", never, { "confirmationAnalysisId": { "alias": "confirmationAnalysisId"; "required": false; }; "posOrderData": { "alias": "posOrderData"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showViewModeButtons": { "alias": "showViewModeButtons"; "required": false; }; "transactionPlanning": { "alias": "transactionPlanning"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "resetActiveRubric": { "alias": "resetActiveRubric"; "required": false; }; "searchPresetsCatalogTemplate": { "alias": "searchPresetsCatalogTemplate"; "required": false; }; "showQuickAccess": { "alias": "showQuickAccess"; "required": false; }; "showButtonBar": { "alias": "showButtonBar"; "required": false; }; }, { "serviceRequested": "serviceRequested"; }, never, never, false, never>;
|
|
14280
14297
|
}
|
|
14281
14298
|
|
|
14282
14299
|
declare class TransactionSalesReservationPopupComponent implements OnInit {
|
|
@@ -15812,6 +15829,7 @@ declare class AddProductComponent implements OnInit {
|
|
|
15812
15829
|
private _changeDetector;
|
|
15813
15830
|
readonly icons: typeof Icon;
|
|
15814
15831
|
handleAddArticleInternally: boolean;
|
|
15832
|
+
searchPresetsCatalogTemplate: TemplateRef<any>;
|
|
15815
15833
|
addArticle: EventEmitter<AddArticleInterface>;
|
|
15816
15834
|
inputSearchText: InputScannerComponent;
|
|
15817
15835
|
showClass(): boolean;
|
|
@@ -15863,7 +15881,7 @@ declare class AddProductComponent implements OnInit {
|
|
|
15863
15881
|
}): Promise<void>;
|
|
15864
15882
|
private _prepareCatalogRequest;
|
|
15865
15883
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddProductComponent, never>;
|
|
15866
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddProductComponent, "co-add-product", never, { "handleAddArticleInternally": { "alias": "handleAddArticleInternally"; "required": false; }; }, { "addArticle": "addArticle"; }, never, never, false, never>;
|
|
15884
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddProductComponent, "co-add-product", never, { "handleAddArticleInternally": { "alias": "handleAddArticleInternally"; "required": false; }; "searchPresetsCatalogTemplate": { "alias": "searchPresetsCatalogTemplate"; "required": false; }; }, { "addArticle": "addArticle"; }, never, never, false, never>;
|
|
15867
15885
|
}
|
|
15868
15886
|
|
|
15869
15887
|
declare class AddProductModule {
|
|
@@ -16918,6 +16936,7 @@ declare class TransactionComponent implements OnChanges {
|
|
|
16918
16936
|
transactionPlanning: boolean;
|
|
16919
16937
|
customerPortal: boolean;
|
|
16920
16938
|
resetActiveRubric: boolean;
|
|
16939
|
+
searchPresetsCatalogTemplate: TemplateRef<any>;
|
|
16921
16940
|
serviceRequested: EventEmitter<{
|
|
16922
16941
|
transactionNr: number;
|
|
16923
16942
|
transactionId: number;
|
|
@@ -16937,7 +16956,7 @@ declare class TransactionComponent implements OnChanges {
|
|
|
16937
16956
|
private _getTransaction;
|
|
16938
16957
|
private _prepareHeader;
|
|
16939
16958
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionComponent, never>;
|
|
16940
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionComponent, "co-transaction", never, { "confirmationAnalysisId": { "alias": "confirmationAnalysisId"; "required": false; }; "posOrderData": { "alias": "posOrderData"; "required": false; }; "transactionKind": { "alias": "transactionKind"; "required": false; }; "transactionNr": { "alias": "transactionNr"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showViewModeButtons": { "alias": "showViewModeButtons"; "required": false; }; "showQuickAccess": { "alias": "showQuickAccess"; "required": false; }; "showButtonBar": { "alias": "showButtonBar"; "required": false; }; "saveIconData": { "alias": "saveIconData"; "required": false; }; "cancelIconData": { "alias": "cancelIconData"; "required": false; }; "showSaveCancelLabels": { "alias": "showSaveCancelLabels"; "required": false; }; "saveCancelMovable": { "alias": "saveCancelMovable"; "required": false; }; "transactionPlanning": { "alias": "transactionPlanning"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "resetActiveRubric": { "alias": "resetActiveRubric"; "required": false; }; }, { "serviceRequested": "serviceRequested"; }, never, never, false, never>;
|
|
16959
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionComponent, "co-transaction", never, { "confirmationAnalysisId": { "alias": "confirmationAnalysisId"; "required": false; }; "posOrderData": { "alias": "posOrderData"; "required": false; }; "transactionKind": { "alias": "transactionKind"; "required": false; }; "transactionNr": { "alias": "transactionNr"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showViewModeButtons": { "alias": "showViewModeButtons"; "required": false; }; "showQuickAccess": { "alias": "showQuickAccess"; "required": false; }; "showButtonBar": { "alias": "showButtonBar"; "required": false; }; "saveIconData": { "alias": "saveIconData"; "required": false; }; "cancelIconData": { "alias": "cancelIconData"; "required": false; }; "showSaveCancelLabels": { "alias": "showSaveCancelLabels"; "required": false; }; "saveCancelMovable": { "alias": "saveCancelMovable"; "required": false; }; "transactionPlanning": { "alias": "transactionPlanning"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "resetActiveRubric": { "alias": "resetActiveRubric"; "required": false; }; "searchPresetsCatalogTemplate": { "alias": "searchPresetsCatalogTemplate"; "required": false; }; }, { "serviceRequested": "serviceRequested"; }, never, never, false, never>;
|
|
16941
16960
|
}
|
|
16942
16961
|
|
|
16943
16962
|
declare class TransactionCashRegisterOrderReceiptDialogComponent extends TransactionHeaderBaseComponent implements OnInit {
|
|
@@ -17640,14 +17659,16 @@ declare class TransactionInvoiceCheckOrderTileComponent {
|
|
|
17640
17659
|
}>;
|
|
17641
17660
|
selectAllLinesEvent: EventEmitter<void>;
|
|
17642
17661
|
openTransactionEvent: EventEmitter<number>;
|
|
17662
|
+
selectTransactionEvent: EventEmitter<InvoiceCheckOrderInterface>;
|
|
17643
17663
|
selected: boolean;
|
|
17644
17664
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef);
|
|
17645
17665
|
showClass(): boolean;
|
|
17646
17666
|
handleLineSelected(selected: boolean, line: InvoiceCheckOrderLineInterface): void;
|
|
17647
17667
|
handleSaveRow(data: InvoiceCheckOrderLineInterface | {}): void;
|
|
17648
17668
|
handleOpenTransaction(transNo: number): void;
|
|
17669
|
+
handleOrderSelected(selected: boolean, data: InvoiceCheckOrderInterface): void;
|
|
17649
17670
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInvoiceCheckOrderTileComponent, never>;
|
|
17650
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInvoiceCheckOrderTileComponent, "co-transaction-invoice-check-order-tile", never, { "invoiceCheckOrder": { "alias": "invoiceCheckOrder"; "required": false; }; }, { "lineSelectedEvent": "lineSelectedEvent"; "saveRowEvent": "saveRowEvent"; "selectAllLinesEvent": "selectAllLinesEvent"; "openTransactionEvent": "openTransactionEvent"; }, never, never, false, never>;
|
|
17671
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInvoiceCheckOrderTileComponent, "co-transaction-invoice-check-order-tile", never, { "invoiceCheckOrder": { "alias": "invoiceCheckOrder"; "required": false; }; }, { "lineSelectedEvent": "lineSelectedEvent"; "saveRowEvent": "saveRowEvent"; "selectAllLinesEvent": "selectAllLinesEvent"; "openTransactionEvent": "openTransactionEvent"; "selectTransactionEvent": "selectTransactionEvent"; }, never, never, false, never>;
|
|
17651
17672
|
}
|
|
17652
17673
|
|
|
17653
17674
|
declare class TransactionInvoiceCheckOrderTileModule {
|
|
@@ -17669,18 +17690,5 @@ declare class TransactionInvoiceCheckOrder {
|
|
|
17669
17690
|
customerName: string;
|
|
17670
17691
|
}
|
|
17671
17692
|
|
|
17672
|
-
|
|
17673
|
-
private _optionsService;
|
|
17674
|
-
connector: Sharedapi;
|
|
17675
|
-
private _boFactory;
|
|
17676
|
-
constructor(_optionsService: TransactionSettingsService);
|
|
17677
|
-
connect(): Promise<void>;
|
|
17678
|
-
selectDocsByTableKey(table: string, key: string): Promise<CoDocument[]>;
|
|
17679
|
-
getDocumentContent(id: number, thumbnail?: boolean): Promise<string>;
|
|
17680
|
-
storeSignedDoc(documentId: number, documentBody: string): Promise<void>;
|
|
17681
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SharedConnectorService, never>;
|
|
17682
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<SharedConnectorService>;
|
|
17683
|
-
}
|
|
17684
|
-
|
|
17685
|
-
export { AddProductComponent, AddProductModule, ArticleConnectorService, ArticleService, BatchProcessDialogComponent, BatchProcessDialogModule, CharacteristicAnswerComponent, CharacteristicAnswerModule, CheckoutComponent, CheckoutModule, CheckoutOverviewDeliveryEditComponent, CheckoutOverviewRelationEditComponent, DatePeriod, DeliveryPlanningCalendarModes, DeliveryPlanningComponent, DeliveryPlanningModes, DeliveryPlanningModule, DeliveryPlanningService, DeliveryPlanningTileDropdownActions, 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 };
|
|
17693
|
+
export { AddProductComponent, AddProductModule, ArticleConnectorService, ArticleService, BatchProcessDialogComponent, BatchProcessDialogModule, CharacteristicAnswerComponent, CharacteristicAnswerModule, CheckoutComponent, CheckoutModule, CheckoutOverviewDeliveryEditComponent, CheckoutOverviewRelationEditComponent, DatePeriod, DeliveryPlanningCalendarModes, DeliveryPlanningComponent, DeliveryPlanningModes, DeliveryPlanningModule, DeliveryPlanningService, DeliveryPlanningTileDropdownActions, DeliveryPlanningViewModes, DialogBranchComponent, DialogBranchModule, DialogTransactionLineWarehouseCcComponent, DialogTransactionLineWarehouseCcModule, DialogTransactionLineWarehouseLocationComponent, DialogTransactionLineWarehouseLocationModule, FastDateRangePickerComponent, FastDateRangePickerModule, FilterRequestService, LineSelectionService, LoaderComponent, LoaderModule, LspDialogType, PosOrderData, PurchaseConfirmationService, QuickSendButtonComponent, QuickSendButtonModule, SearchViewMode, SearchbarViewMode, 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 };
|
|
17686
17694
|
export type { AddArticleInterface, DeliveryMethod, InvoiceCheckOrderInterface, InvoiceCheckOrderLineInterface, TransactionButtonBarMappingConfig, TransactionCardMappingConfig, TransactionDialogMappingConfig, TransactionFilterMappingConfig, TransactionLineMappingConfig, TransactionQuickAccessMappingConfig, TransactionSearchMappingConfig, TransactionSidePanelMappingConfig, steps };
|
|
@@ -79,7 +79,8 @@
|
|
|
79
79
|
align-items: baseline;
|
|
80
80
|
flex-shrink: 0;
|
|
81
81
|
position: relative;
|
|
82
|
-
|
|
82
|
+
margin: $tp-transaction-line-buttons-margin;
|
|
83
|
+
gap: $tp-transaction-line-buttons-gap;
|
|
83
84
|
.transaction-field-label {
|
|
84
85
|
text-overflow: clip;
|
|
85
86
|
overflow: visible;
|
|
@@ -88,6 +89,28 @@
|
|
|
88
89
|
display: flex;
|
|
89
90
|
flex-direction: column;
|
|
90
91
|
}
|
|
92
|
+
.transaction-line-documents {
|
|
93
|
+
cursor: pointer;
|
|
94
|
+
.co-icon {
|
|
95
|
+
width: $tp-transaction-line-buttons-document-icon-size;
|
|
96
|
+
height: $tp-transaction-line-buttons-document-icon-size;
|
|
97
|
+
}
|
|
98
|
+
.transaction-line-documents-count {
|
|
99
|
+
position: absolute;
|
|
100
|
+
top: 0;
|
|
101
|
+
right: -3px;
|
|
102
|
+
background: $tp-transaction-line-buttons-document-count-background;
|
|
103
|
+
width: $tp-transaction-line-buttons-document-count-size;
|
|
104
|
+
height: $tp-transaction-line-buttons-document-count-size;
|
|
105
|
+
border-radius: 50%;
|
|
106
|
+
display: flex;
|
|
107
|
+
align-items: center;
|
|
108
|
+
justify-content: center;
|
|
109
|
+
font-size: $tp-transaction-line-buttons-document-count-font-size;
|
|
110
|
+
color: $tp-transaction-line-buttons-document-count-font-color;
|
|
111
|
+
line-height: normal;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
91
114
|
}
|
|
92
115
|
.transaction-field-wrapper {
|
|
93
116
|
flex: 1;
|
|
@@ -32,6 +32,13 @@ $tp-transaction-line-buttons-overview-background-color: #030D3C !default;
|
|
|
32
32
|
$tp-transaction-line-buttons-overview-text-color: $tp-color-light !default;
|
|
33
33
|
$tp-transaction-line-buttons-add-text-background-color: $tp-color-action !default;
|
|
34
34
|
$tp-transaction-line-buttons-add-text-text-color: $tp-color-light !default;
|
|
35
|
+
$tp-transaction-line-buttons-margin: 2px 0 0 0 !default;
|
|
36
|
+
$tp-transaction-line-buttons-gap: 2px !default;
|
|
37
|
+
$tp-transaction-line-buttons-document-icon-size: 16px !default;
|
|
38
|
+
$tp-transaction-line-buttons-document-count-size: 10px !default;
|
|
39
|
+
$tp-transaction-line-buttons-document-count-background: #5fdcb3 !default;
|
|
40
|
+
$tp-transaction-line-buttons-document-count-font-size: 7px !default;
|
|
41
|
+
$tp-transaction-line-buttons-document-count-font-color: #ffffff !default;
|
|
35
42
|
$tp-transaction-line-price-font-weight: bold !default;
|
|
36
43
|
$tp-transaction-line-discount-background-color: $tp-default-background-accent !default;
|
|
37
44
|
$tp-transaction-line-discount-color: $tp-color-active-light !default;
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
@include export-module('cc-transaction-invoice-check-order-tile-layout') {
|
|
2
2
|
.co-transaction-invoice-check-order-tile {
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
.co-input-checkbox {
|
|
5
|
+
.checkbox {
|
|
6
|
+
border: 1px solid rgba(#222222, 0.4)!important;
|
|
7
|
+
border-radius: 4px!important;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
5
10
|
.column {
|
|
6
11
|
display: flex;
|
|
7
12
|
flex-direction: row;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "300.1.
|
|
3
|
+
"version": "300.1.19",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@colijnit/catalog": ">=300.1.0",
|
|
14
14
|
"@colijnit/corecomponents_v12": ">=300.1.4",
|
|
15
15
|
"@colijnit/ioneconnector": ">=300.1.0",
|
|
16
|
-
"@colijnit/mainapi": ">=300.1.
|
|
16
|
+
"@colijnit/mainapi": ">=300.1.10",
|
|
17
17
|
"@colijnit/product": ">=300.1.0",
|
|
18
18
|
"@colijnit/relation": ">=300.1.0",
|
|
19
19
|
"@colijnit/relationapi": ">=300.1.1",
|
|
File without changes
|