@colijnit/transaction 261.20.24 → 261.20.27
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 +1224 -830
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +65 -10
- package/lib/component/checkout/checkout-overview-relation-edit/style/material.scss +0 -2
- package/lib/component/co-transaction-article-stock/style/material.scss +0 -1
- package/lib/component/confirmation-dialog/style/material.scss +0 -1
- package/lib/component/returns/return-wizard/style/_layout.scss +9 -0
- package/lib/component/returns/return-wizard/style/_material-definition.scss +0 -0
- package/lib/component/returns/return-wizard/style/_theme.scss +4 -0
- package/lib/component/returns/return-wizard/style/material.scss +4 -0
- package/lib/component/returns/return-wizard/wizard-return-line-display-tile/style/_layout.scss +26 -0
- package/lib/component/returns/return-wizard/wizard-return-line-display-tile/style/_material-definition.scss +1 -0
- package/lib/component/returns/return-wizard/wizard-return-line-display-tile/style/_theme.scss +4 -0
- package/lib/component/returns/return-wizard/wizard-return-line-display-tile/style/material.scss +3 -0
- package/lib/component/transaction-header/transaction-header/style/material.scss +0 -1
- package/lib/component/transaction-header/transaction-header-customer-portal/style/material.scss +0 -1
- package/lib/component/transaction-header/transaction-header-relation/style/material.scss +0 -2
- package/lib/component/transaction-line/transaction-customer-portal-return-line/style/_layout.scss +44 -0
- package/lib/component/transaction-line/transaction-customer-portal-return-line/style/_material-definition.scss +0 -0
- package/lib/component/transaction-line/transaction-customer-portal-return-line/style/_theme.scss +6 -0
- package/lib/component/transaction-line/transaction-customer-portal-return-line/style/material.scss +3 -0
- 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-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/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/style/_layout.scss +10 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-line-tile/style/_layout.scss +13 -8
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -290,6 +290,7 @@ import { PdfWorkOrderRequest } from '@colijnit/transactionapi/build/model/pdf-wo
|
|
|
290
290
|
import { PdfWorkOrderResponse } from '@colijnit/transactionapi/build/model/pdf-work-order-response.bo';
|
|
291
291
|
import { PdfHistoricWorkOrderRequest } from '@colijnit/transactionapi/build/model/pdf-historic-work-order-request';
|
|
292
292
|
import { LspWmsDeliveryNotePrintRequest } from '@colijnit/transactionapi/build/model/lsp-wms-delivery-note-print-request';
|
|
293
|
+
import { CreateSalesReturnRequest } from '@colijnit/transactionapi/build/model/create-sales-return-request';
|
|
293
294
|
import { BusinessObjectIDType } from '@colijnit/ioneconnector/build/type/business-object-id-type';
|
|
294
295
|
import { RelationKind as RelationKind$1 } from '@colijnit/articleapi/build/enum/relation-kind.enum';
|
|
295
296
|
import { Relation } from '@colijnit/relationapi/build/model/relation.bo';
|
|
@@ -673,6 +674,7 @@ declare enum TransactionTypeCategory {
|
|
|
673
674
|
PurchaseOrderMarginInfo = "purchaseOrderMarginInfo",
|
|
674
675
|
SalesOrderMarginInfo = "salesOrderMarginInfo",
|
|
675
676
|
SalesCustomerPortal = "SalesCustomerPortal",
|
|
677
|
+
SalesReturn = "SalesReturn",
|
|
676
678
|
SalesOrderPurchase = "salesOrderPurchase",
|
|
677
679
|
SalesOrderAllocation = "salesOrderAllocation",
|
|
678
680
|
SalesOrderPicking = "salesOrderPicking",
|
|
@@ -931,6 +933,10 @@ declare class TransactionEventService {
|
|
|
931
933
|
readonly transportTransactionRemoveRequestUpdated: BehaviorSubject<RemoveTransactionFromContainerRequest>;
|
|
932
934
|
readonly removalModeContainerInfo: BehaviorSubject<ContainerInfo>;
|
|
933
935
|
readonly addContactMoment: BehaviorSubject<boolean>;
|
|
936
|
+
readonly saveFormResponse: BehaviorSubject<{
|
|
937
|
+
lineUUID: string;
|
|
938
|
+
formResponseId: number;
|
|
939
|
+
}>;
|
|
934
940
|
readonly transportTransactionSelectionChanged: Subject<TransactionSearchResult>;
|
|
935
941
|
readonly transportTransactionLineSelectionChanged: Subject<{
|
|
936
942
|
transId: number;
|
|
@@ -1079,6 +1085,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1079
1085
|
rollbackBeacon(): Promise<void>;
|
|
1080
1086
|
createTransaction(kind: TransactionKind, branchNr: string): Promise<TransactionInfoResponse>;
|
|
1081
1087
|
createSalesOrder(request: CreateSalesOrderRequest): Promise<TransactionInfoResponse>;
|
|
1088
|
+
createSalesReturn(request: CreateSalesReturnRequest): Promise<TransactionInfoResponse>;
|
|
1082
1089
|
createCashRegisterOrder(request: CreateCashRegisterOrderRequest): Promise<TransactionInfoResponse>;
|
|
1083
1090
|
createPurchaseOrder(request: CreatePurchaseOrderRequest): Promise<TransactionInfoResponse>;
|
|
1084
1091
|
createServiceOrder(request: CreateServiceOrderRequest): Promise<TransactionInfoResponse>;
|
|
@@ -1532,6 +1539,7 @@ declare class TransactionConnectorService {
|
|
|
1532
1539
|
getMarketingCodes(): Promise<Marketing[]>;
|
|
1533
1540
|
createTransaction(kind: TransactionKind, branchNr: string): Promise<TransactionInfoResponse>;
|
|
1534
1541
|
createSalesOrder(request: CreateSalesOrderRequest): Promise<TransactionInfoResponse>;
|
|
1542
|
+
createSalesReturn(request: CreateSalesReturnRequest): Promise<TransactionInfoResponse>;
|
|
1535
1543
|
createCashRegisterOrder(request: CreateCashRegisterOrderRequest): Promise<TransactionInfoResponse>;
|
|
1536
1544
|
createPurchaseOrder(request: CreatePurchaseOrderRequest): Promise<TransactionInfoResponse>;
|
|
1537
1545
|
createServiceOrder(request: CreateServiceOrderRequest): Promise<TransactionInfoResponse>;
|
|
@@ -2473,6 +2481,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2473
2481
|
getRelationPrivacySettings(): Promise<RelationPrivacySetting[]>;
|
|
2474
2482
|
getArticleBoundTextLinesOfArticleLine(articleLineUuid: string): Promise<TransactionLineInfo[]>;
|
|
2475
2483
|
createSalesOrder(request: CreateSalesOrderRequest): Promise<boolean>;
|
|
2484
|
+
createSalesReturn(request: CreateSalesReturnRequest): Promise<boolean>;
|
|
2476
2485
|
createCashRegisterOrder(request: CreateCashRegisterOrderRequest, saveTransaction?: boolean): Promise<boolean>;
|
|
2477
2486
|
createPurchaseOrder(request: CreatePurchaseOrderRequest): Promise<boolean>;
|
|
2478
2487
|
createServiceOrder(request: CreateServiceOrderRequest): Promise<boolean>;
|
|
@@ -4991,6 +5000,8 @@ declare class TransactionLineImageAndDescriptionComponent extends TransactionLin
|
|
|
4991
5000
|
articleTextExpandRef: ElementRef<HTMLDivElement>;
|
|
4992
5001
|
popUpView: boolean;
|
|
4993
5002
|
showPurchaseDesc: boolean;
|
|
5003
|
+
showArticleNr: boolean;
|
|
5004
|
+
showPriceAmount: boolean;
|
|
4994
5005
|
customerPortal: boolean;
|
|
4995
5006
|
showClass(): boolean;
|
|
4996
5007
|
openArticleTextClicked: EventEmitter<void>;
|
|
@@ -5014,7 +5025,7 @@ declare class TransactionLineImageAndDescriptionComponent extends TransactionLin
|
|
|
5014
5025
|
private _loadLineImage;
|
|
5015
5026
|
private _checkIfExpandable;
|
|
5016
5027
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineImageAndDescriptionComponent, never>;
|
|
5017
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineImageAndDescriptionComponent, "co-transaction-line-image-and-description", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; "popUpView": { "alias": "popUpView"; "required": false; }; "showPurchaseDesc": { "alias": "showPurchaseDesc"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; }, { "openArticleTextClicked": "openArticleTextClicked"; "handleDeleteLine": "handleDeleteLine"; }, never, never, false, never>;
|
|
5028
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineImageAndDescriptionComponent, "co-transaction-line-image-and-description", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; "popUpView": { "alias": "popUpView"; "required": false; }; "showPurchaseDesc": { "alias": "showPurchaseDesc"; "required": false; }; "showArticleNr": { "alias": "showArticleNr"; "required": false; }; "showPriceAmount": { "alias": "showPriceAmount"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; }, { "openArticleTextClicked": "openArticleTextClicked"; "handleDeleteLine": "handleDeleteLine"; }, never, never, false, never>;
|
|
5018
5029
|
}
|
|
5019
5030
|
|
|
5020
5031
|
declare abstract class TransactionInputLineFieldBaseComponent extends TransactionLineBaseComponent {
|
|
@@ -5038,6 +5049,7 @@ declare class TransactionLineDescriptionComponent extends TransactionInputLineFi
|
|
|
5038
5049
|
configNames: ImageAndDescriptionCfgNames;
|
|
5039
5050
|
customHeight: boolean;
|
|
5040
5051
|
customerPortal: boolean;
|
|
5052
|
+
showPriceAmount: boolean;
|
|
5041
5053
|
inputLabel: boolean;
|
|
5042
5054
|
input: InputTextComponent;
|
|
5043
5055
|
description: string;
|
|
@@ -5050,7 +5062,7 @@ declare class TransactionLineDescriptionComponent extends TransactionInputLineFi
|
|
|
5050
5062
|
protected updatePurchaseDescription(description: string): Promise<boolean>;
|
|
5051
5063
|
protected transactionLineSet(): void;
|
|
5052
5064
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineDescriptionComponent, never>;
|
|
5053
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineDescriptionComponent, "co-transaction-line-description", never, { "showPurchaseDesc": { "alias": "showPurchaseDesc"; "required": false; }; "configNames": { "alias": "configNames"; "required": false; }; "customHeight": { "alias": "customHeight"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; }, {}, never, never, false, never>;
|
|
5065
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineDescriptionComponent, "co-transaction-line-description", never, { "showPurchaseDesc": { "alias": "showPurchaseDesc"; "required": false; }; "configNames": { "alias": "configNames"; "required": false; }; "customHeight": { "alias": "customHeight"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "showPriceAmount": { "alias": "showPriceAmount"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; }, {}, never, never, false, never>;
|
|
5054
5066
|
}
|
|
5055
5067
|
|
|
5056
5068
|
declare class TransactionLineLabelComponent {
|
|
@@ -5252,7 +5264,9 @@ declare class TransactionBaseLineComponent implements OnInit, OnDestroy {
|
|
|
5252
5264
|
checkbox: boolean;
|
|
5253
5265
|
actionButtons: boolean;
|
|
5254
5266
|
showPurchaseDescAndPrice: boolean;
|
|
5267
|
+
showArticleNr: boolean;
|
|
5255
5268
|
customerPortal: boolean;
|
|
5269
|
+
showPriceAmount: boolean;
|
|
5256
5270
|
checkboxValueChanged: EventEmitter<boolean>;
|
|
5257
5271
|
waitingForUserAction: EventEmitter<boolean>;
|
|
5258
5272
|
showClass(): boolean;
|
|
@@ -5270,7 +5284,7 @@ declare class TransactionBaseLineComponent implements OnInit, OnDestroy {
|
|
|
5270
5284
|
deleteTransactionLineClick(event: MouseEvent): Promise<void>;
|
|
5271
5285
|
handleOpenArticleText(): void;
|
|
5272
5286
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionBaseLineComponent, never>;
|
|
5273
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionBaseLineComponent, "co-transaction-base-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "transactionInfo": { "alias": "transactionInfo"; "required": false; }; "transactionLine": { "alias": "transactionLine"; "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; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; }, { "checkboxValueChanged": "checkboxValueChanged"; "waitingForUserAction": "waitingForUserAction"; }, never, ["*"], false, never>;
|
|
5287
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionBaseLineComponent, "co-transaction-base-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; "transactionInfo": { "alias": "transactionInfo"; "required": false; }; "transactionLine": { "alias": "transactionLine"; "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; }; }, { "checkboxValueChanged": "checkboxValueChanged"; "waitingForUserAction": "waitingForUserAction"; }, never, ["*"], false, never>;
|
|
5274
5288
|
}
|
|
5275
5289
|
|
|
5276
5290
|
declare class TransactionBaseLineModule {
|
|
@@ -6741,6 +6755,37 @@ declare class TransactionCustomerPortalLineModule {
|
|
|
6741
6755
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionCustomerPortalLineModule>;
|
|
6742
6756
|
}
|
|
6743
6757
|
|
|
6758
|
+
declare class TransactionCustomerPortalReturnLineComponent extends TransactionLineBaseComponent {
|
|
6759
|
+
orderLineSetService: OrderLineSetService;
|
|
6760
|
+
transactionHeaderService: TransactionHeaderService;
|
|
6761
|
+
transactionLineService: TransactionLineService;
|
|
6762
|
+
transactionEventService: TransactionEventService;
|
|
6763
|
+
iconCacheService: IconCacheService;
|
|
6764
|
+
screenConfigService: TransactionScreenConfigurationService;
|
|
6765
|
+
protected imageService: TransactionImageService;
|
|
6766
|
+
protected dictionaryService: DictionaryService;
|
|
6767
|
+
protected transactionService: TransactionService;
|
|
6768
|
+
protected changeDetector: ChangeDetectorRef;
|
|
6769
|
+
readonly category: typeof TransactionTypeCategory;
|
|
6770
|
+
transactionLineActionButtons: TransactionLineActionButtonsComponent;
|
|
6771
|
+
descriptionDblClick: EventEmitter<void>;
|
|
6772
|
+
showClass(): boolean;
|
|
6773
|
+
stock: StockStatus;
|
|
6774
|
+
noLabel: boolean;
|
|
6775
|
+
statusBarConfigNames: StatusBarCfgNames;
|
|
6776
|
+
discountConfigNames: LineDiscountCfgNames;
|
|
6777
|
+
constructor(orderLineSetService: OrderLineSetService, transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef);
|
|
6778
|
+
lineSelected(selected: boolean): void;
|
|
6779
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCustomerPortalReturnLineComponent, never>;
|
|
6780
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionCustomerPortalReturnLineComponent, "co-transaction-customer-portal-return-line", never, {}, { "descriptionDblClick": "descriptionDblClick"; }, never, never, false, never>;
|
|
6781
|
+
}
|
|
6782
|
+
|
|
6783
|
+
declare class TransactionCustomerPortalReturnLineModule {
|
|
6784
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCustomerPortalReturnLineModule, never>;
|
|
6785
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionCustomerPortalReturnLineModule, [typeof TransactionCustomerPortalReturnLineComponent], [typeof i2.CommonModule, typeof CoreModule, typeof i3.ButtonModule, typeof i3.InputNumberPickerModule, typeof TransactionArticleTextModule, typeof TransactionArticleTextOverviewModule, typeof PipeModule, typeof TransactionLineActionButtonsModule, typeof i3.IconModule, typeof EditableLabelModule, typeof TransactionLinePriceModule, typeof TransactionLineDescriptionModule, typeof TransactionBaseLineModule, typeof i13.DragDropModule, typeof TransactionLineCommissionButtonModule, typeof TransactionLineWarehouseButtonModule, typeof TransactionLineDeliveryButtonModule, typeof TransactionLineDeliveryDateButtonModule, typeof DialogTransactionLineVatModule, typeof DialogTransactionLineDiscountModule, typeof TransactionLineStatusbarModule, typeof TransactionLineAmountModule, typeof TransactionLineVatButtonModule, typeof TransactionLineDiscountButtonModule, typeof TransactionLineDeliveryDateModule, typeof TransactionMarginInfoLineModule, typeof TransactionPlanningLineModule, typeof i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof TransactionLineLabelModule, typeof TransactionLineDirectSellButtonModule], [typeof TransactionCustomerPortalReturnLineComponent]>;
|
|
6786
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionCustomerPortalReturnLineModule>;
|
|
6787
|
+
}
|
|
6788
|
+
|
|
6744
6789
|
declare abstract class TransactionOrderDeliveryLineBaseComponent extends TransactionLineBaseComponent implements OnInit, OnDestroy {
|
|
6745
6790
|
private _subscriptions;
|
|
6746
6791
|
private _initialized;
|
|
@@ -9113,11 +9158,13 @@ declare class TransactionSearchComponent implements OnDestroy {
|
|
|
9113
9158
|
searchPlaceholder: string;
|
|
9114
9159
|
draggableTransactions: boolean;
|
|
9115
9160
|
extendedTransactionSearch: boolean;
|
|
9161
|
+
returnWizardLayout: boolean;
|
|
9116
9162
|
showSearchInput: boolean;
|
|
9117
9163
|
showFilterButton: boolean;
|
|
9118
9164
|
showAddTransactionButton: boolean;
|
|
9119
9165
|
showCollapseButton: boolean;
|
|
9120
9166
|
set overrideSearchType(kind: TransactionKind);
|
|
9167
|
+
set returnSearch(rs: boolean);
|
|
9121
9168
|
transactionClick: EventEmitter<TransactionSearchView>;
|
|
9122
9169
|
addTransactionClick: EventEmitter<void>;
|
|
9123
9170
|
showClass(): boolean;
|
|
@@ -9128,7 +9175,7 @@ declare class TransactionSearchComponent implements OnDestroy {
|
|
|
9128
9175
|
private _scrollToTop;
|
|
9129
9176
|
onAddClick(): void;
|
|
9130
9177
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionSearchComponent, never>;
|
|
9131
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchComponent, "co-transaction-search", never, { "draggableTransactions": { "alias": "draggableTransactions"; "required": false; }; "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; "showSearchInput": { "alias": "showSearchInput"; "required": false; }; "showFilterButton": { "alias": "showFilterButton"; "required": false; }; "showAddTransactionButton": { "alias": "showAddTransactionButton"; "required": false; }; "showCollapseButton": { "alias": "showCollapseButton"; "required": false; }; "overrideSearchType": { "alias": "overrideSearchType"; "required": false; }; }, { "transactionClick": "transactionClick"; "addTransactionClick": "addTransactionClick"; }, never, ["*"], false, never>;
|
|
9178
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchComponent, "co-transaction-search", never, { "draggableTransactions": { "alias": "draggableTransactions"; "required": false; }; "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; "returnWizardLayout": { "alias": "returnWizardLayout"; "required": false; }; "showSearchInput": { "alias": "showSearchInput"; "required": false; }; "showFilterButton": { "alias": "showFilterButton"; "required": false; }; "showAddTransactionButton": { "alias": "showAddTransactionButton"; "required": false; }; "showCollapseButton": { "alias": "showCollapseButton"; "required": false; }; "overrideSearchType": { "alias": "overrideSearchType"; "required": false; }; "returnSearch": { "alias": "returnSearch"; "required": false; }; }, { "transactionClick": "transactionClick"; "addTransactionClick": "addTransactionClick"; }, never, ["*"], false, never>;
|
|
9132
9179
|
}
|
|
9133
9180
|
|
|
9134
9181
|
declare enum BatchDeliveryCategory {
|
|
@@ -9200,6 +9247,7 @@ declare class TransactionSearchResultComponent implements OnInit, OnChanges, OnD
|
|
|
9200
9247
|
showCheckbox: boolean;
|
|
9201
9248
|
batchCategory: BatchDeliveryCategory;
|
|
9202
9249
|
extendedTransactionSearch: boolean;
|
|
9250
|
+
returnWizardLayout: boolean;
|
|
9203
9251
|
set activeContentViewMode(value: ContentViewMode);
|
|
9204
9252
|
get activeContentViewMode(): ContentViewMode;
|
|
9205
9253
|
set fullscreen(value: boolean);
|
|
@@ -9250,7 +9298,7 @@ declare class TransactionSearchResultComponent implements OnInit, OnChanges, OnD
|
|
|
9250
9298
|
private _showBatchProcessesStatus;
|
|
9251
9299
|
private _clearSelected;
|
|
9252
9300
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionSearchResultComponent, never>;
|
|
9253
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchResultComponent, "co-transaction-search-result", never, { "draggableTransactions": { "alias": "draggableTransactions"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "batchCategory": { "alias": "batchCategory"; "required": false; }; "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; "activeContentViewMode": { "alias": "activeContentViewMode"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; }, { "transactionClick": "transactionClick"; "containerChosen": "containerChosen"; }, never, never, false, never>;
|
|
9301
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchResultComponent, "co-transaction-search-result", never, { "draggableTransactions": { "alias": "draggableTransactions"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "batchCategory": { "alias": "batchCategory"; "required": false; }; "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; "returnWizardLayout": { "alias": "returnWizardLayout"; "required": false; }; "activeContentViewMode": { "alias": "activeContentViewMode"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; }, { "transactionClick": "transactionClick"; "containerChosen": "containerChosen"; }, never, never, false, never>;
|
|
9254
9302
|
}
|
|
9255
9303
|
|
|
9256
9304
|
declare class AvatarComponent implements OnInit {
|
|
@@ -9700,6 +9748,7 @@ declare class TransactionSearchSalesLineSelectTileComponent extends TransactionS
|
|
|
9700
9748
|
changeDetector: ChangeDetectorRef;
|
|
9701
9749
|
showClass(): boolean;
|
|
9702
9750
|
extendedTransactionSearch: boolean;
|
|
9751
|
+
returnWizardLayout: boolean;
|
|
9703
9752
|
lineClicked: EventEmitter<TransactionLineSearchIndex>;
|
|
9704
9753
|
transactionClick: EventEmitter<TransactionSearchView>;
|
|
9705
9754
|
lines: TransactionLineSearchIndex[];
|
|
@@ -9709,24 +9758,30 @@ declare class TransactionSearchSalesLineSelectTileComponent extends TransactionS
|
|
|
9709
9758
|
tileClicked(line: TransactionLineSearchIndex): void;
|
|
9710
9759
|
onTransactionClick(transaction: TransactionSearchView): void;
|
|
9711
9760
|
getPriorityLabel(priority?: PriorityType): string;
|
|
9761
|
+
showOrderLabel(): string;
|
|
9712
9762
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionSearchSalesLineSelectTileComponent, never>;
|
|
9713
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchSalesLineSelectTileComponent, "co-transaction-search-sales-line-select-tile", never, { "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; }, { "lineClicked": "lineClicked"; "transactionClick": "transactionClick"; }, never, never, false, never>;
|
|
9763
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchSalesLineSelectTileComponent, "co-transaction-search-sales-line-select-tile", never, { "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; "returnWizardLayout": { "alias": "returnWizardLayout"; "required": false; }; }, { "lineClicked": "lineClicked"; "transactionClick": "transactionClick"; }, never, never, false, never>;
|
|
9714
9764
|
}
|
|
9715
9765
|
|
|
9716
9766
|
declare class TransactionLineTileComponent {
|
|
9717
9767
|
transactionService: TransactionService;
|
|
9768
|
+
private _changeDetector;
|
|
9718
9769
|
private imageService;
|
|
9719
9770
|
line: TransactionLineSearchIndex;
|
|
9771
|
+
set showPriceAmount(value: boolean);
|
|
9772
|
+
get showPriceAmount(): boolean;
|
|
9720
9773
|
showClass(): boolean;
|
|
9721
|
-
|
|
9774
|
+
private _showPriceAmount;
|
|
9775
|
+
constructor(transactionService: TransactionService, _changeDetector: ChangeDetectorRef, imageService: TransactionImageService);
|
|
9722
9776
|
handleVisibilityChange(visible: boolean): void;
|
|
9777
|
+
private _detectChanges;
|
|
9723
9778
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineTileComponent, never>;
|
|
9724
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineTileComponent, "co-transaction-line-tile", never, { "line": { "alias": "line"; "required": false; }; }, {}, never, never, false, never>;
|
|
9779
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineTileComponent, "co-transaction-line-tile", never, { "line": { "alias": "line"; "required": false; }; "showPriceAmount": { "alias": "showPriceAmount"; "required": false; }; }, {}, never, never, false, never>;
|
|
9725
9780
|
}
|
|
9726
9781
|
|
|
9727
9782
|
declare class TransactionLineTileModule {
|
|
9728
9783
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineTileModule, never>;
|
|
9729
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineTileModule, [typeof TransactionLineTileComponent], [typeof CoreModule, typeof i3.ObserveVisibilityModule], [typeof TransactionLineTileComponent]>;
|
|
9784
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineTileModule, [typeof TransactionLineTileComponent], [typeof CoreModule, typeof i3.ObserveVisibilityModule, typeof i3.CoCurrencyPipeModule, typeof TransactionLineDescriptionModule], [typeof TransactionLineTileComponent]>;
|
|
9730
9785
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineTileModule>;
|
|
9731
9786
|
}
|
|
9732
9787
|
|
|
@@ -11666,7 +11721,7 @@ declare class TransactionLineToolbarModule {
|
|
|
11666
11721
|
|
|
11667
11722
|
declare class TransactionLineModule {
|
|
11668
11723
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineModule, never>;
|
|
11669
|
-
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]>;
|
|
11724
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineModule, [typeof TransactionLineComponent], [typeof i2.CommonModule, typeof TransactionTextLineModule, typeof TransactionOverviewLineModule, typeof TransactionPurchaseLineModule, typeof TransactionGoodsAllocationLineModule, typeof TransactionCustomerPortalLineModule, typeof TransactionCustomerPortalReturnLineModule, 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]>;
|
|
11670
11725
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineModule>;
|
|
11671
11726
|
}
|
|
11672
11727
|
|
|
@@ -4,5 +4,3 @@
|
|
|
4
4
|
@import "./theme";
|
|
5
5
|
$cc-co-carousel-3d-navigate-button-width: 40px;
|
|
6
6
|
@import "../../../relation/relation-address/style/material";
|
|
7
|
-
@import "@colijnit/corecomponents_v12/lib/components/carousel-3d/style/material";
|
|
8
|
-
@import "@colijnit/corecomponents_v12/lib/components/input-checkbox/style/material";
|
|
File without changes
|
package/lib/component/returns/return-wizard/wizard-return-line-display-tile/style/_layout.scss
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@include export-module('co-wizard-return-line-display-tile-layout') {
|
|
2
|
+
.co-wizard-return-line-display-tile {
|
|
3
|
+
.return-line-tile-contents {
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: row;
|
|
6
|
+
column-gap: 30px;
|
|
7
|
+
.return-line-image-display{
|
|
8
|
+
display: flex;
|
|
9
|
+
height: 100px;
|
|
10
|
+
width: 100px;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
align-items: center;
|
|
13
|
+
}
|
|
14
|
+
.return-line-texts {
|
|
15
|
+
display: flex;
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
row-gap: 10px;
|
|
18
|
+
}
|
|
19
|
+
.return-line-picker-button {
|
|
20
|
+
display: flex;
|
|
21
|
+
flex-direction: row;
|
|
22
|
+
column-gap: 10px;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -11,5 +11,3 @@ $cc-co-carousel-3d-navigate-button-width: 40px;
|
|
|
11
11
|
@import "../../../relation/relation-general/style/material";
|
|
12
12
|
@import "../../../relation/relation-contact-details/style/material";
|
|
13
13
|
@import "../../../relation/relation-preferences/style/material";
|
|
14
|
-
@import "@colijnit/corecomponents_v12/lib/components/carousel-3d/style/material";
|
|
15
|
-
@import "@colijnit/corecomponents_v12/lib/components/input-checkbox/style/material";
|
package/lib/component/transaction-line/transaction-customer-portal-return-line/style/_layout.scss
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-transaction-customer-portal-return-line-layout') {
|
|
4
|
+
.co-transaction-customer-portal-return-line {
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
gap: 30px;
|
|
8
|
+
box-shadow: 0 4px 4px 0 #00000040;
|
|
9
|
+
border: 1px solid #F4F4F9;
|
|
10
|
+
padding: 30px 20px 15px 20px;
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
.co-transaction-base-line {
|
|
13
|
+
.order-lines-container {
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
gap: 10px;
|
|
16
|
+
justify-content: flex-start;
|
|
17
|
+
.portal-partial-delivery {
|
|
18
|
+
font-size: 10px;
|
|
19
|
+
.partial-delivery {
|
|
20
|
+
display: flex;
|
|
21
|
+
gap: 5px;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
.transaction-line-section {
|
|
27
|
+
display: flex;
|
|
28
|
+
gap: 10px;
|
|
29
|
+
margin-right: 15px;
|
|
30
|
+
.vat-button {
|
|
31
|
+
margin-right: 15px;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
.transaction-line-delivery-date {
|
|
35
|
+
display: flex;
|
|
36
|
+
align-items: center;
|
|
37
|
+
column-gap: $tp-default-column-gap;
|
|
38
|
+
.co-input-date {
|
|
39
|
+
height: auto;
|
|
40
|
+
padding: 0;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
File without changes
|
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
@include export-module('co-transaction-line-interbranch-receive-goods-layout') {
|
|
2
|
-
.co-transaction-line-interbranch-receive-goods {
|
|
3
|
-
.columns-wrapper {
|
|
4
|
-
display: flex;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.co-input-number-picker {
|
|
8
|
-
width: 140px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.details-column {
|
|
12
|
-
width: 45%;
|
|
13
|
-
display: flex;
|
|
14
|
-
flex-direction: column;
|
|
15
|
-
|
|
16
|
-
.transaction-line-totals-amount {
|
|
17
|
-
margin: 5px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
//.amount-number-picker {
|
|
21
|
-
// height: 40px;
|
|
22
|
-
// margin: 5px;
|
|
23
|
-
//}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.header-wrapper {
|
|
27
|
-
display: flex;
|
|
28
|
-
align-items: center;
|
|
29
|
-
justify-content: space-between;
|
|
30
|
-
margin: $tp-co-transaction-line-receive-goods-title-margin;
|
|
31
|
-
|
|
32
|
-
.details-header {
|
|
33
|
-
font-size: $tp-co-transaction-line-receive-goods-title-font-size;
|
|
34
|
-
font-weight: bold;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.divider-wrapper {
|
|
39
|
-
display: flex;
|
|
40
|
-
width: 10%;
|
|
41
|
-
justify-content: center;
|
|
42
|
-
visibility: hidden;
|
|
43
|
-
|
|
44
|
-
.divider {
|
|
45
|
-
border-left: 1px solid;
|
|
46
|
-
border-color: $tp-color-border;
|
|
47
|
-
margin: 5px; // $tp-co-transaction-request-details-input-margin;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.details-input {
|
|
52
|
-
margin: 5px; // $tp-co-transaction-request-details-input-margin;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.location-wrapper {
|
|
56
|
-
position: relative;
|
|
57
|
-
|
|
58
|
-
.co-transaction-button {
|
|
59
|
-
width: auto;
|
|
60
|
-
margin: 5px;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
.disabled {
|
|
64
|
-
cursor: default;
|
|
65
|
-
opacity: 0.6;
|
|
66
|
-
}
|
|
67
|
-
.clickable {
|
|
68
|
-
cursor: pointer;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.warehouse-buttons {
|
|
72
|
-
width: 100%;
|
|
73
|
-
.co-transaction-button {
|
|
74
|
-
width: 100%;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
}
|
|
1
|
+
@include export-module('co-transaction-line-interbranch-receive-goods-layout') {
|
|
2
|
+
.co-transaction-line-interbranch-receive-goods {
|
|
3
|
+
.columns-wrapper {
|
|
4
|
+
display: flex;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.co-input-number-picker {
|
|
8
|
+
width: 140px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.details-column {
|
|
12
|
+
width: 45%;
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
|
|
16
|
+
.transaction-line-totals-amount {
|
|
17
|
+
margin: 5px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
//.amount-number-picker {
|
|
21
|
+
// height: 40px;
|
|
22
|
+
// margin: 5px;
|
|
23
|
+
//}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.header-wrapper {
|
|
27
|
+
display: flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
justify-content: space-between;
|
|
30
|
+
margin: $tp-co-transaction-line-receive-goods-title-margin;
|
|
31
|
+
|
|
32
|
+
.details-header {
|
|
33
|
+
font-size: $tp-co-transaction-line-receive-goods-title-font-size;
|
|
34
|
+
font-weight: bold;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.divider-wrapper {
|
|
39
|
+
display: flex;
|
|
40
|
+
width: 10%;
|
|
41
|
+
justify-content: center;
|
|
42
|
+
visibility: hidden;
|
|
43
|
+
|
|
44
|
+
.divider {
|
|
45
|
+
border-left: 1px solid;
|
|
46
|
+
border-color: $tp-color-border;
|
|
47
|
+
margin: 5px; // $tp-co-transaction-request-details-input-margin;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.details-input {
|
|
52
|
+
margin: 5px; // $tp-co-transaction-request-details-input-margin;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.location-wrapper {
|
|
56
|
+
position: relative;
|
|
57
|
+
|
|
58
|
+
.co-transaction-button {
|
|
59
|
+
width: auto;
|
|
60
|
+
margin: 5px;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
.disabled {
|
|
64
|
+
cursor: default;
|
|
65
|
+
opacity: 0.6;
|
|
66
|
+
}
|
|
67
|
+
.clickable {
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.warehouse-buttons {
|
|
72
|
+
width: 100%;
|
|
73
|
+
.co-transaction-button {
|
|
74
|
+
width: 100%;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
$tp-co-transaction-line-receive-goods-title-font-size: 12px !default;
|
|
2
|
-
$tp-co-transaction-line-receive-goods-title-margin: 0 0 10px 5px !default;
|
|
1
|
+
$tp-co-transaction-line-receive-goods-title-font-size: 12px !default;
|
|
2
|
+
$tp-co-transaction-line-receive-goods-title-margin: 0 0 10px 5px !default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@include export-module('co-transaction-line-interbranch-receive-goods-theme') {
|
|
2
|
-
.co-transaction-line-interbranch-receive-goods {
|
|
3
|
-
}
|
|
4
|
-
}
|
|
1
|
+
@include export-module('co-transaction-line-interbranch-receive-goods-theme') {
|
|
2
|
+
.co-transaction-line-interbranch-receive-goods {
|
|
3
|
+
}
|
|
4
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@import "../../../style/mixin";
|
|
2
|
-
@import "./_material-definition";
|
|
3
|
-
@import "./_layout";
|
|
4
|
-
@import "./_theme";
|
|
1
|
+
@import "../../../style/mixin";
|
|
2
|
+
@import "./_material-definition";
|
|
3
|
+
@import "./_layout";
|
|
4
|
+
@import "./_theme";
|