@colijnit/transaction 261.20.20 → 261.20.21
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 +614 -548
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +60 -39
- package/lib/component/transaction-button/style/_layout.scss +2 -4
- 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/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { ChangeHeaderCashOnDeliveryAmountRequest } from '@colijnit/transactionap
|
|
|
8
8
|
import { CodeDescription } from '@colijnit/transactionapi/build/model/code-description';
|
|
9
9
|
import { Country } from '@colijnit/transactionapi/build/model/country.bo';
|
|
10
10
|
import { CustomerGroup } from '@colijnit/transactionapi/build/model/customer-group.bo';
|
|
11
|
-
import { DeliveryMethod } from '@colijnit/transactionapi/build/model/delivery-method.bo';
|
|
11
|
+
import { DeliveryMethod as DeliveryMethod$1 } from '@colijnit/transactionapi/build/model/delivery-method.bo';
|
|
12
12
|
import { DeliveryOption } from '@colijnit/transactionapi/build/model/delivery-option.bo';
|
|
13
13
|
import { Marketing } from '@colijnit/transactionapi/build/model/marketing.bo';
|
|
14
14
|
import { OnHoldCode } from '@colijnit/transactionapi/build/model/on-hold-code.bo';
|
|
@@ -893,6 +893,7 @@ declare class TransactionEventService {
|
|
|
893
893
|
readonly activeCategoryChanged: Subject<TransactionTypeCategory>;
|
|
894
894
|
readonly purchaseOrderLineSelectedAltered: Subject<void>;
|
|
895
895
|
readonly purchaseOrderConfirmationDateSet: BehaviorSubject<Date>;
|
|
896
|
+
readonly purchaseOrderConfirmationReferenceSet: BehaviorSubject<string>;
|
|
896
897
|
readonly orderConfirmationDropped: BehaviorSubject<OrderConfirmationDropped>;
|
|
897
898
|
readonly orderConfirmationReset: Subject<void>;
|
|
898
899
|
readonly requestShowReceiptDialog: Subject<void>;
|
|
@@ -1046,7 +1047,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1046
1047
|
getTransVatCodes(type: string, date: Date): Promise<Vat[]>;
|
|
1047
1048
|
searchTransactions(request: TransactionSearchViewRequest): Promise<TransactionSearchResult>;
|
|
1048
1049
|
getSequenceValue(sequenceName: SequenceName): Promise<number>;
|
|
1049
|
-
getDeliveryMethods(): Promise<DeliveryMethod[]>;
|
|
1050
|
+
getDeliveryMethods(): Promise<DeliveryMethod$1[]>;
|
|
1050
1051
|
getDeliveryOptions(): Promise<DeliveryOption[]>;
|
|
1051
1052
|
getPostalCodeRetrieval(postcalCode: string, houseNo: string): Promise<GetPostalCodeRetrievalOutputParams>;
|
|
1052
1053
|
getCommissionCodes(languageCode: string): Promise<CoDomainValue[]>;
|
|
@@ -1348,7 +1349,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1348
1349
|
printSalesOrdersOverview(request: TransactionSearchViewRequest): Promise<PdfTransactionSearchOverviewResponse>;
|
|
1349
1350
|
sendPackageInformationToLSP(request: TransactionLspInformationRequest): Promise<TransactionInfoResponse>;
|
|
1350
1351
|
getPackageInformation(transactionUUID: string, lineUUID: string): Promise<PackageLSP[]>;
|
|
1351
|
-
getLogisticsPartners(): Promise<DeliveryMethod[]>;
|
|
1352
|
+
getLogisticsPartners(): Promise<DeliveryMethod$1[]>;
|
|
1352
1353
|
loadDocumentsOfTransaction(key: string): Promise<CoDocument[]>;
|
|
1353
1354
|
loadDocumentContent(docId: number): Promise<string>;
|
|
1354
1355
|
mergeDocumentOnTransaction(key: string, document: CoDocument): Promise<CoDocument>;
|
|
@@ -1553,7 +1554,7 @@ declare class TransactionConnectorService {
|
|
|
1553
1554
|
getTransVatCodes(type: string, date: Date): Promise<Vat[]>;
|
|
1554
1555
|
searchTransactions(request: TransactionSearchViewRequest): Promise<TransactionSearchResult>;
|
|
1555
1556
|
getSequenceValue(sequenceName: SequenceName): Promise<number>;
|
|
1556
|
-
getDeliveryMethods(): Promise<DeliveryMethod[]>;
|
|
1557
|
+
getDeliveryMethods(): Promise<DeliveryMethod$1[]>;
|
|
1557
1558
|
getDeliveryOptions(): Promise<DeliveryOption[]>;
|
|
1558
1559
|
addRelationToTransaction(uuid: string, relationId: number): Promise<TransactionInfoResponse>;
|
|
1559
1560
|
getPostalCodeRetrieval(postcalCode: string, houseNo: string): Promise<GetPostalCodeRetrievalOutputParams>;
|
|
@@ -1824,7 +1825,7 @@ declare class TransactionConnectorService {
|
|
|
1824
1825
|
printSalesOrdersOverview(request: TransactionSearchViewRequest): Promise<PdfTransactionSearchOverviewResponse>;
|
|
1825
1826
|
sendPackageInformationToLSP(request: TransactionLspInformationRequest): Promise<TransactionInfoResponse>;
|
|
1826
1827
|
getPackageInformation(transactionUUID: string, lineUUID: string): Promise<PackageLSP[]>;
|
|
1827
|
-
getLogisticsPartners(): Promise<DeliveryMethod[]>;
|
|
1828
|
+
getLogisticsPartners(): Promise<DeliveryMethod$1[]>;
|
|
1828
1829
|
getPlanningSources(): Promise<Planning[]>;
|
|
1829
1830
|
getPlanOrders(filterObject: PlanningFilterObject, planningId: number): Promise<PlanOrder[]>;
|
|
1830
1831
|
getPlanTransportWeek(startDate: Date, planningId: number): Promise<PlanningTransportWeek[]>;
|
|
@@ -2486,7 +2487,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2486
2487
|
getArticles(request: ArticleExtendedRequest): Promise<ArticleLight[]>;
|
|
2487
2488
|
getArticleListWithBarcodeArticleNrEanCode(search: string): Promise<ArticleLight[]>;
|
|
2488
2489
|
getMainArticles(): Promise<MainArticle[]>;
|
|
2489
|
-
getDeliveryMethods(): Promise<DeliveryMethod[]>;
|
|
2490
|
+
getDeliveryMethods(): Promise<DeliveryMethod$1[]>;
|
|
2490
2491
|
getDeliveryOptions(): Promise<DeliveryOption[]>;
|
|
2491
2492
|
getSalesPersons(date?: Date): Promise<SalesPerson[]>;
|
|
2492
2493
|
getRetailStadiums(): Promise<RetailStadium[]>;
|
|
@@ -3105,10 +3106,10 @@ declare class CheckoutOverviewDeliveryEditComponent implements OnInit, OnDestroy
|
|
|
3105
3106
|
deliveryOptionList: DeliveryOption[];
|
|
3106
3107
|
deliveryOptions: DeliveryOption[];
|
|
3107
3108
|
deliveryOptionFields: TextValueContainer;
|
|
3108
|
-
deliveryMethods: DeliveryMethod[];
|
|
3109
|
+
deliveryMethods: DeliveryMethod$1[];
|
|
3109
3110
|
deliveryMethodFields: TextValueContainer;
|
|
3110
3111
|
deliveryTypeIdx: number;
|
|
3111
|
-
currentDeliveryMethod: DeliveryMethod;
|
|
3112
|
+
currentDeliveryMethod: DeliveryMethod$1;
|
|
3112
3113
|
changeLocationPopup: boolean;
|
|
3113
3114
|
transactionDefinitive: boolean;
|
|
3114
3115
|
newAddress: Address;
|
|
@@ -3135,7 +3136,7 @@ declare class CheckoutOverviewDeliveryEditComponent implements OnInit, OnDestroy
|
|
|
3135
3136
|
ngOnInit(): Promise<void>;
|
|
3136
3137
|
ngOnDestroy(): void;
|
|
3137
3138
|
submit(): boolean;
|
|
3138
|
-
selectDeliveryOptionsByDeliveryMethod(deliveryMethod: DeliveryMethod): DeliveryOption[];
|
|
3139
|
+
selectDeliveryOptionsByDeliveryMethod(deliveryMethod: DeliveryMethod$1): DeliveryOption[];
|
|
3139
3140
|
private calculateDeliveryCosts;
|
|
3140
3141
|
private calculateAssemblyCosts;
|
|
3141
3142
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckoutOverviewDeliveryEditComponent, never>;
|
|
@@ -4372,6 +4373,7 @@ declare class PurchaseConfirmationService implements OnDestroy {
|
|
|
4372
4373
|
private _transactionEventService;
|
|
4373
4374
|
confirmationNeeded: BehaviorSubject<boolean>;
|
|
4374
4375
|
confirmationFinished: Subject<void>;
|
|
4376
|
+
analysisLoaded: Subject<AnalyzedOrderConfirmation>;
|
|
4375
4377
|
set transactionLines(value: TransactionLineInfo[]);
|
|
4376
4378
|
get transactionLines(): TransactionLineInfo[];
|
|
4377
4379
|
set confirmationAnalysisId(value: number);
|
|
@@ -5424,6 +5426,7 @@ declare class TransactionButtonComponent implements ScreenConfigAdapterComponent
|
|
|
5424
5426
|
statusColor: boolean;
|
|
5425
5427
|
readonly: boolean;
|
|
5426
5428
|
hidden: boolean;
|
|
5429
|
+
forceReadonly: boolean;
|
|
5427
5430
|
iconData: SafeHtml | undefined;
|
|
5428
5431
|
rightIconData: SafeHtml | undefined;
|
|
5429
5432
|
showCheckMarkLoader: boolean;
|
|
@@ -5435,7 +5438,6 @@ declare class TransactionButtonComponent implements ScreenConfigAdapterComponent
|
|
|
5435
5438
|
handleClick(event: MouseEvent): boolean;
|
|
5436
5439
|
objectConfigName: string;
|
|
5437
5440
|
required: boolean;
|
|
5438
|
-
forceReadonly: boolean;
|
|
5439
5441
|
maxLength: number;
|
|
5440
5442
|
decimals: number;
|
|
5441
5443
|
redErrorBackground: boolean;
|
|
@@ -5443,7 +5445,7 @@ declare class TransactionButtonComponent implements ScreenConfigAdapterComponent
|
|
|
5443
5445
|
titleNumber(title: string): number;
|
|
5444
5446
|
handleIconClicked(): void;
|
|
5445
5447
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionButtonComponent, never>;
|
|
5446
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionButtonComponent, "co-transaction-button", never, { "label": { "alias": "label"; "required": false; }; "title": { "alias": "title"; "required": false; }; "statusColor": { "alias": "statusColor"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "iconData": { "alias": "iconData"; "required": false; }; "rightIconData": { "alias": "rightIconData"; "required": false; }; "showCheckMarkLoader": { "alias": "showCheckMarkLoader"; "required": false; }; "checkMarkOverlayVisible": { "alias": "checkMarkOverlayVisible"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; "insideLabel": { "alias": "insideLabel"; "required": false; }; }, { "iconClicked": "iconClicked"; }, never, ["*"], false, never>;
|
|
5448
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionButtonComponent, "co-transaction-button", never, { "label": { "alias": "label"; "required": false; }; "title": { "alias": "title"; "required": false; }; "statusColor": { "alias": "statusColor"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "forceReadonly": { "alias": "forceReadonly"; "required": false; }; "iconData": { "alias": "iconData"; "required": false; }; "rightIconData": { "alias": "rightIconData"; "required": false; }; "showCheckMarkLoader": { "alias": "showCheckMarkLoader"; "required": false; }; "checkMarkOverlayVisible": { "alias": "checkMarkOverlayVisible"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; "insideLabel": { "alias": "insideLabel"; "required": false; }; }, { "iconClicked": "iconClicked"; }, never, ["*"], false, never>;
|
|
5447
5449
|
}
|
|
5448
5450
|
|
|
5449
5451
|
declare class TransactionButtonModule {
|
|
@@ -5581,7 +5583,7 @@ declare class DialogTransactionLineDeliveryMethodComponent extends DialogTransac
|
|
|
5581
5583
|
static ɵcmp: i0.ɵɵComponentDeclaration<DialogTransactionLineDeliveryMethodComponent, "co-dialog-transaction-line-delivery-method", never, {}, {}, never, never, false, never>;
|
|
5582
5584
|
}
|
|
5583
5585
|
|
|
5584
|
-
declare class TransactionLineDeliveryMethodComponent extends TransactionFilterPopupLineBaseComponent<DeliveryMethod> implements OnInit {
|
|
5586
|
+
declare class TransactionLineDeliveryMethodComponent extends TransactionFilterPopupLineBaseComponent<DeliveryMethod$1> implements OnInit {
|
|
5585
5587
|
protected codeField: string;
|
|
5586
5588
|
protected checkField: string;
|
|
5587
5589
|
protected propsForLabel: CheckboxListPropertyInterface[];
|
|
@@ -6610,14 +6612,14 @@ declare class DeliveryPlanningService {
|
|
|
6610
6612
|
get dragging(): boolean;
|
|
6611
6613
|
get planTransportWeek(): PlanningTransportWeek[];
|
|
6612
6614
|
get planTransportWeekArr(): PlanningTransportWeekDay[][];
|
|
6613
|
-
get deliveryMethods(): DeliveryMethod[];
|
|
6615
|
+
get deliveryMethods(): DeliveryMethod$1[];
|
|
6614
6616
|
get deliveryOptions(): DeliveryOption[];
|
|
6615
6617
|
get districts(): District[];
|
|
6616
6618
|
get employees(): RelationListObject$1[];
|
|
6617
6619
|
get skills(): Skill[];
|
|
6618
6620
|
get userGroups(): UserGroup[];
|
|
6619
6621
|
set dragging(value: boolean);
|
|
6620
|
-
set deliveryMethods(methods: DeliveryMethod[]);
|
|
6622
|
+
set deliveryMethods(methods: DeliveryMethod$1[]);
|
|
6621
6623
|
set deliveryOptions(options: DeliveryOption[]);
|
|
6622
6624
|
set districts(districts: District[]);
|
|
6623
6625
|
set employees(employees: RelationListObject$1[]);
|
|
@@ -7085,6 +7087,8 @@ declare abstract class TransactionPurchaseOrderLineBaseComponent extends Transac
|
|
|
7085
7087
|
statusBarConfigNames: StatusBarCfgNames;
|
|
7086
7088
|
showColorIndicator: boolean;
|
|
7087
7089
|
colorIndicatorColor: string;
|
|
7090
|
+
private originalSupplConfirmationDate;
|
|
7091
|
+
private originalConfirmedPrice;
|
|
7088
7092
|
protected subs: Subscription[];
|
|
7089
7093
|
protected globalConfirmationDate: Date;
|
|
7090
7094
|
private _purchasePortalLinesResponse;
|
|
@@ -7095,8 +7099,8 @@ declare abstract class TransactionPurchaseOrderLineBaseComponent extends Transac
|
|
|
7095
7099
|
handleDragLeave(event: Event): void;
|
|
7096
7100
|
handleDrop(event: DragEvent): void;
|
|
7097
7101
|
lineSelected(selected: boolean): void;
|
|
7102
|
+
triggerCalcChange(): void;
|
|
7098
7103
|
protected transactionLineSet(): void;
|
|
7099
|
-
protected visibilitySet(): void;
|
|
7100
7104
|
private _getPurchasePortalLine;
|
|
7101
7105
|
private _handleConfirmationOverwrite;
|
|
7102
7106
|
private _prepareConfirmationData;
|
|
@@ -7108,8 +7112,9 @@ declare abstract class TransactionPurchaseOrderLineBaseComponent extends Transac
|
|
|
7108
7112
|
declare class TransactionPurchaseOrderLineComponent extends TransactionPurchaseOrderLineBaseComponent {
|
|
7109
7113
|
lineIndex: number;
|
|
7110
7114
|
showClass(): boolean;
|
|
7115
|
+
handleDeliveryDateChanged(): void;
|
|
7116
|
+
handlePriceOrAmountChanged(): void;
|
|
7111
7117
|
lineSelected(selected: boolean): void;
|
|
7112
|
-
triggerCalcChange(): void;
|
|
7113
7118
|
getDeliveryDate(): Date;
|
|
7114
7119
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPurchaseOrderLineComponent, never>;
|
|
7115
7120
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionPurchaseOrderLineComponent, "co-transaction-purchase-order-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -7203,6 +7208,7 @@ declare class TransactionLineSupplierDeliveryDateButtonComponent extends Transac
|
|
|
7203
7208
|
readonly icons: typeof Icon;
|
|
7204
7209
|
parentComponent: ElementRef;
|
|
7205
7210
|
inputLabel: boolean;
|
|
7211
|
+
supplierDeliveryDateChange: EventEmitter<void>;
|
|
7206
7212
|
showClass(): boolean;
|
|
7207
7213
|
showCalender: boolean;
|
|
7208
7214
|
private _calendarPopupComponentRef;
|
|
@@ -7212,7 +7218,7 @@ declare class TransactionLineSupplierDeliveryDateButtonComponent extends Transac
|
|
|
7212
7218
|
private _handleDateChanged;
|
|
7213
7219
|
private _hidePopup;
|
|
7214
7220
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineSupplierDeliveryDateButtonComponent, never>;
|
|
7215
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineSupplierDeliveryDateButtonComponent, "co-transaction-line-supplier-delivery-date-button", never, { "inputLabel": { "alias": "inputLabel"; "required": false; }; }, {}, never, never, false, never>;
|
|
7221
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLineSupplierDeliveryDateButtonComponent, "co-transaction-line-supplier-delivery-date-button", never, { "inputLabel": { "alias": "inputLabel"; "required": false; }; }, { "supplierDeliveryDateChange": "supplierDeliveryDateChange"; }, never, never, false, never>;
|
|
7216
7222
|
}
|
|
7217
7223
|
|
|
7218
7224
|
declare class TransactionLineSupplierDeliveryDateButtonModule {
|
|
@@ -8087,6 +8093,8 @@ declare class TransactionLinePurchaseConfirmationComponent extends TransactionLi
|
|
|
8087
8093
|
showPurchaseConfirmationAI: boolean;
|
|
8088
8094
|
confirmingOrder: boolean;
|
|
8089
8095
|
deliveryBatchRequired: boolean;
|
|
8096
|
+
private _globalConfirmationDate;
|
|
8097
|
+
private _globalReference;
|
|
8090
8098
|
private _subs;
|
|
8091
8099
|
constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, purchaseConfirmationService: PurchaseConfirmationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _formMasterService: FormMasterService);
|
|
8092
8100
|
ngOnInit(): void;
|
|
@@ -8874,11 +8882,11 @@ declare class DeliveryPlanningOverviewTileSettingsPopupComponent implements OnDe
|
|
|
8874
8882
|
closeEvent: EventEmitter<void>;
|
|
8875
8883
|
onCancelAction: EventEmitter<void>;
|
|
8876
8884
|
selectedDistricts: District[];
|
|
8877
|
-
selectedDeliveryMethods: DeliveryMethod[];
|
|
8885
|
+
selectedDeliveryMethods: DeliveryMethod$1[];
|
|
8878
8886
|
selectedSkills: Skill[];
|
|
8879
8887
|
get currentDate(): Date;
|
|
8880
8888
|
get districts(): District[];
|
|
8881
|
-
get deliveryMethods(): DeliveryMethod[];
|
|
8889
|
+
get deliveryMethods(): DeliveryMethod$1[];
|
|
8882
8890
|
get employees(): RelationListObject$1[];
|
|
8883
8891
|
get skills(): Skill[];
|
|
8884
8892
|
get userGroups(): UserGroup[];
|
|
@@ -8889,7 +8897,7 @@ declare class DeliveryPlanningOverviewTileSettingsPopupComponent implements OnDe
|
|
|
8889
8897
|
private hydrateSelectionsFromTransportDay;
|
|
8890
8898
|
handleEmployeeChange(event: RelationListObject$1[]): void;
|
|
8891
8899
|
onSkillsModelChange(next: Skill[]): void;
|
|
8892
|
-
onDeliveryMethodsModelChange(next: DeliveryMethod[]): void;
|
|
8900
|
+
onDeliveryMethodsModelChange(next: DeliveryMethod$1[]): void;
|
|
8893
8901
|
onDistrictsModelChange(next: District[]): void;
|
|
8894
8902
|
closePopup(): void;
|
|
8895
8903
|
handleCommitClick(): void;
|
|
@@ -9981,7 +9989,14 @@ declare abstract class TransactionFilterContentBaseComponent implements OnInit,
|
|
|
9981
9989
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TransactionFilterContentBaseComponent, never, never, {}, { "totalActiveFiltersChange": "totalActiveFiltersChange"; }, never, never, true, never>;
|
|
9982
9990
|
}
|
|
9983
9991
|
|
|
9992
|
+
declare class TransactionFilterContentService {
|
|
9993
|
+
showTransactionTypes: boolean;
|
|
9994
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionFilterContentService, never>;
|
|
9995
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TransactionFilterContentService>;
|
|
9996
|
+
}
|
|
9997
|
+
|
|
9984
9998
|
declare class TransactionSalesOrderFilterContentOrderComponent extends TransactionFilterContentBaseComponent {
|
|
9999
|
+
transactionFilterContentService: TransactionFilterContentService;
|
|
9985
10000
|
readonly modes: typeof FilterItemMode;
|
|
9986
10001
|
showClass(): boolean;
|
|
9987
10002
|
salesPersons: FilterItemViewmodel[];
|
|
@@ -10060,6 +10075,7 @@ declare class TransactionSalesOrderFilterContentOrderComponent extends Transacti
|
|
|
10060
10075
|
value: any;
|
|
10061
10076
|
};
|
|
10062
10077
|
handleCollectionChange(): void;
|
|
10078
|
+
constructor(searchService: TransactionSearchService, filterRequestService: FilterRequestService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, relationService: TransactionRelationService, transationConnectorService: TransactionConnectorService, transactionFilterContentService: TransactionFilterContentService);
|
|
10063
10079
|
loadCustomers: (nameFilter: string) => Promise<FilterItemViewmodel[]>;
|
|
10064
10080
|
protected loadCollections(): void;
|
|
10065
10081
|
handleTransactionKindChange(codeList: string[]): void;
|
|
@@ -11737,10 +11753,10 @@ declare class TransactionHeaderPriceListComponent extends TransactionFilterPopup
|
|
|
11737
11753
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderPriceListComponent, "co-transaction-header-price-list", never, {}, {}, never, never, false, never>;
|
|
11738
11754
|
}
|
|
11739
11755
|
|
|
11740
|
-
declare class TransactionHeaderDeliveryMethodComponent extends TransactionFilterPopupHeaderBaseComponent<DeliveryMethod> implements OnInit {
|
|
11756
|
+
declare class TransactionHeaderDeliveryMethodComponent extends TransactionFilterPopupHeaderBaseComponent<DeliveryMethod$1> implements OnInit {
|
|
11741
11757
|
showAsCarousel: boolean;
|
|
11742
11758
|
filterOnWizard: boolean;
|
|
11743
|
-
deliveryMethodChange: EventEmitter<DeliveryMethod>;
|
|
11759
|
+
deliveryMethodChange: EventEmitter<DeliveryMethod$1>;
|
|
11744
11760
|
selectedIdx: number;
|
|
11745
11761
|
protected codeField: string;
|
|
11746
11762
|
protected checkField: string;
|
|
@@ -11748,7 +11764,7 @@ declare class TransactionHeaderDeliveryMethodComponent extends TransactionFilter
|
|
|
11748
11764
|
ngOnInit(): void;
|
|
11749
11765
|
commit(method: string): Promise<boolean>;
|
|
11750
11766
|
setIndexDeliveryType(idx: number): Promise<void>;
|
|
11751
|
-
setDeliveryType(method: DeliveryMethod): Promise<void>;
|
|
11767
|
+
setDeliveryType(method: DeliveryMethod$1): Promise<void>;
|
|
11752
11768
|
protected transactionInfoSet(): void;
|
|
11753
11769
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderDeliveryMethodComponent, never>;
|
|
11754
11770
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderDeliveryMethodComponent, "co-transaction-header-delivery-method", never, { "showAsCarousel": { "alias": "showAsCarousel"; "required": false; }; "filterOnWizard": { "alias": "filterOnWizard"; "required": false; }; }, { "deliveryMethodChange": "deliveryMethodChange"; }, never, never, false, never>;
|
|
@@ -11757,8 +11773,8 @@ declare class TransactionHeaderDeliveryMethodComponent extends TransactionFilter
|
|
|
11757
11773
|
declare class DeliveryTypeTileComponent {
|
|
11758
11774
|
set selected(value: boolean);
|
|
11759
11775
|
get selected(): boolean;
|
|
11760
|
-
method: DeliveryMethod;
|
|
11761
|
-
selectedChange: EventEmitter<DeliveryMethod>;
|
|
11776
|
+
method: DeliveryMethod$1;
|
|
11777
|
+
selectedChange: EventEmitter<DeliveryMethod$1>;
|
|
11762
11778
|
showClass(): boolean;
|
|
11763
11779
|
private _selected;
|
|
11764
11780
|
static ɵfac: i0.ɵɵFactoryDeclaration<DeliveryTypeTileComponent, never>;
|
|
@@ -12149,7 +12165,7 @@ declare class DeliveryOptionViewModel {
|
|
|
12149
12165
|
}
|
|
12150
12166
|
declare class TransactionHeaderDeliveryOptionsComponent extends TransactionHeaderBaseComponent implements OnInit, OnChanges, OnDestroy {
|
|
12151
12167
|
showClass(): boolean;
|
|
12152
|
-
deliveryMethod?: DeliveryMethod;
|
|
12168
|
+
deliveryMethod?: DeliveryMethod$1;
|
|
12153
12169
|
deliveryOptionsViewModels: DeliveryOptionViewModel[];
|
|
12154
12170
|
private _subs;
|
|
12155
12171
|
private _deliveryOptionsLoaded;
|
|
@@ -12737,8 +12753,8 @@ declare class TransactionHeaderDeliveryMethodButtonComponent extends Transaction
|
|
|
12737
12753
|
showClass(): boolean;
|
|
12738
12754
|
inputLabel: boolean;
|
|
12739
12755
|
showDialog: boolean;
|
|
12740
|
-
deliveryMethod: DeliveryMethod;
|
|
12741
|
-
deliveryMethods: DeliveryMethod[];
|
|
12756
|
+
deliveryMethod: DeliveryMethod$1;
|
|
12757
|
+
deliveryMethods: DeliveryMethod$1[];
|
|
12742
12758
|
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, _overlayService: OverlayService, _elementRef: ElementRef);
|
|
12743
12759
|
showTheDeliveryMethodDialog(event: MouseEvent): Promise<void>;
|
|
12744
12760
|
transactionInfoSet(): void;
|
|
@@ -13238,8 +13254,8 @@ declare class TransactionHeaderDistrictComponent extends TransactionHeaderBaseCo
|
|
|
13238
13254
|
showClass(): boolean;
|
|
13239
13255
|
inputLabel: boolean;
|
|
13240
13256
|
showDialog: boolean;
|
|
13241
|
-
deliveryMethod: DeliveryMethod;
|
|
13242
|
-
deliveryMethods: DeliveryMethod[];
|
|
13257
|
+
deliveryMethod: DeliveryMethod$1;
|
|
13258
|
+
deliveryMethods: DeliveryMethod$1[];
|
|
13243
13259
|
planOrder: PlanOrder;
|
|
13244
13260
|
districts: District[];
|
|
13245
13261
|
districtDescription: string;
|
|
@@ -13767,7 +13783,6 @@ declare class TransactionQuickAccessOrderConfirmationComponent extends Transacti
|
|
|
13767
13783
|
protected transactionService: TransactionService;
|
|
13768
13784
|
protected changeDetector: ChangeDetectorRef;
|
|
13769
13785
|
private _purchaseConfirmationService;
|
|
13770
|
-
private _formMaster;
|
|
13771
13786
|
private _dialogService;
|
|
13772
13787
|
readonly cfgNames: typeof TransactionCfgName;
|
|
13773
13788
|
purchaseOrderConfirmation: GetPurchaseOrderConfirmation;
|
|
@@ -13777,22 +13792,21 @@ declare class TransactionQuickAccessOrderConfirmationComponent extends Transacti
|
|
|
13777
13792
|
iconVisible: boolean;
|
|
13778
13793
|
showReconfirmationButton: boolean;
|
|
13779
13794
|
forceShowConfirmationInputs: boolean;
|
|
13780
|
-
showDateError: boolean;
|
|
13781
|
-
showReferenceError: boolean;
|
|
13782
|
-
showLinesError: boolean;
|
|
13783
13795
|
private _subs;
|
|
13784
|
-
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, _purchaseConfirmationService: PurchaseConfirmationService,
|
|
13796
|
+
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, _purchaseConfirmationService: PurchaseConfirmationService, _dialogService: TransactionDialogService);
|
|
13785
13797
|
ngOnInit(): void;
|
|
13786
13798
|
ngOnDestroy(): void;
|
|
13787
13799
|
onDateChange(event: string): void;
|
|
13788
13800
|
onReferenceChange(event: string): void;
|
|
13789
|
-
isConfirmationDisabled(): boolean;
|
|
13790
13801
|
handleSelectAllLines(value: boolean): void;
|
|
13791
13802
|
handleCommitEvent(event: MouseEvent): Promise<void>;
|
|
13792
13803
|
handleNewConfirmationButtonClick(): Promise<void>;
|
|
13793
13804
|
protected transactionSet(): void;
|
|
13805
|
+
private _setDateAndReferenceFromAiAnalisysIfAvailable;
|
|
13806
|
+
private _getReferenceToSet;
|
|
13794
13807
|
private _getSelectedLines;
|
|
13795
13808
|
private _setRequestLines;
|
|
13809
|
+
private _checkAreThereLinesWithEmptyDateAndNoHeader;
|
|
13796
13810
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionQuickAccessOrderConfirmationComponent, never>;
|
|
13797
13811
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionQuickAccessOrderConfirmationComponent, "co-transaction-quick-access-order-confirmation", never, {}, {}, never, never, false, never>;
|
|
13798
13812
|
}
|
|
@@ -14394,7 +14408,7 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14394
14408
|
readonly buttonType: typeof AppPopupButtonType;
|
|
14395
14409
|
showLspPopup: boolean;
|
|
14396
14410
|
packageLSP: PackageLSP[];
|
|
14397
|
-
deliveryMethods: DeliveryMethod[];
|
|
14411
|
+
deliveryMethods: DeliveryMethod$1[];
|
|
14398
14412
|
get lspMode(): boolean;
|
|
14399
14413
|
set lspMode(lspMode: boolean);
|
|
14400
14414
|
showClass(): boolean;
|
|
@@ -14413,6 +14427,13 @@ declare class TransactionQuickAccessPlanningComponent extends TransactionHeaderB
|
|
|
14413
14427
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionQuickAccessPlanningComponent, "co-transaction-quick-access-planning", never, {}, {}, never, never, false, never>;
|
|
14414
14428
|
}
|
|
14415
14429
|
|
|
14430
|
+
interface DeliveryMethod {
|
|
14431
|
+
code: string;
|
|
14432
|
+
description: string;
|
|
14433
|
+
image: {
|
|
14434
|
+
documentBody: string;
|
|
14435
|
+
};
|
|
14436
|
+
}
|
|
14416
14437
|
declare class TransactionQuickAccessPlanningPopupComponent implements OnInit {
|
|
14417
14438
|
private _transaction;
|
|
14418
14439
|
iconCacheService: IconCacheService;
|
|
@@ -16815,5 +16836,5 @@ declare class SharedConnectorService {
|
|
|
16815
16836
|
static ɵprov: i0.ɵɵInjectableDeclaration<SharedConnectorService>;
|
|
16816
16837
|
}
|
|
16817
16838
|
|
|
16818
|
-
export { AddProductComponent, AddProductModule, BatchProcessDialogComponent, BatchProcessDialogModule, CharacteristicAnswerComponent, CharacteristicAnswerModule, CheckoutComponent, CheckoutModule, CheckoutOverviewDeliveryEditComponent, CheckoutOverviewRelationEditComponent, DatePeriod, DeliveryPlanningCalendarModes, DeliveryPlanningComponent, DeliveryPlanningModes, DeliveryPlanningModule, DeliveryPlanningService, DeliveryPlanningViewModes, DialogBranchComponent, DialogBranchModule, DialogTransactionLineWarehouseCcComponent, DialogTransactionLineWarehouseCcModule, DialogTransactionLineWarehouseLocationComponent, DialogTransactionLineWarehouseLocationModule, FastDateRangePickerComponent, FastDateRangePickerModule, FilterRequestService, LineSelectionService, LoaderComponent, LoaderModule, PosOrderData, PurchaseConfirmationService, QuickSendButtonComponent, QuickSendButtonModule, SearchViewMode, SearchbarViewMode, SharedConnectorService, ShippingMethodDialogComponent, ShippingMethodDialogModule, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, StepperComponent, StepperModule, StepperStepComponent, StepperStepModule, TRANSACTION_BUTTON_BAR_MAPPING_CONFIG, TRANSACTION_CARD_MAPPING_CONFIG, TRANSACTION_DIALOG_MAPPING_CONFIG, TRANSACTION_FILTER_MAPPING_CONFIG, TRANSACTION_LINE_MAPPING_CONFIG, TRANSACTION_QUICK_ACCESS_MAPPING_CONFIG, TRANSACTION_SEARCH_MAPPING_CONFIG, TRANSACTION_SIDE_PANEL_MAPPING_CONFIG, TransactionBusinessObjectCacheManagerService, TransactionCashRegisterDialogComponent, TransactionCashRegisterDialogModule, TransactionCashRegisterOrderReceiptDialogComponent, TransactionCashRegisterOrderReceiptDialogModule, TransactionCfgName, TransactionComponent, TransactionConfirmTotalsComponent, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionConnectorAdapterService, TransactionConnectorService, TransactionCreateDateLabelComponent, TransactionCreateDateLabelModule, TransactionCreateWizardComponent, TransactionCreateWizardModule, TransactionDatePickDialogComponent, TransactionDatePickDialogModule, TransactionDialogService, TransactionEventService, TransactionFilterComponent, 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 };
|
|
16819
|
-
export type { AddArticleInterface, InvoiceCheckOrderInterface, InvoiceCheckOrderLineInterface, TransactionButtonBarMappingConfig, TransactionCardMappingConfig, TransactionDialogMappingConfig, TransactionFilterMappingConfig, TransactionLineMappingConfig, TransactionQuickAccessMappingConfig, TransactionSearchMappingConfig, TransactionSidePanelMappingConfig, steps };
|
|
16839
|
+
export { AddProductComponent, AddProductModule, BatchProcessDialogComponent, BatchProcessDialogModule, CharacteristicAnswerComponent, CharacteristicAnswerModule, CheckoutComponent, CheckoutModule, CheckoutOverviewDeliveryEditComponent, CheckoutOverviewRelationEditComponent, DatePeriod, DeliveryPlanningCalendarModes, DeliveryPlanningComponent, DeliveryPlanningModes, DeliveryPlanningModule, DeliveryPlanningService, DeliveryPlanningViewModes, DialogBranchComponent, DialogBranchModule, DialogTransactionLineWarehouseCcComponent, DialogTransactionLineWarehouseCcModule, DialogTransactionLineWarehouseLocationComponent, DialogTransactionLineWarehouseLocationModule, FastDateRangePickerComponent, FastDateRangePickerModule, FilterRequestService, LineSelectionService, LoaderComponent, LoaderModule, PosOrderData, PurchaseConfirmationService, QuickSendButtonComponent, QuickSendButtonModule, SearchViewMode, SearchbarViewMode, SharedConnectorService, ShippingMethodDialogComponent, ShippingMethodDialogModule, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, StepperComponent, StepperModule, StepperStepComponent, StepperStepModule, TRANSACTION_BUTTON_BAR_MAPPING_CONFIG, TRANSACTION_CARD_MAPPING_CONFIG, TRANSACTION_DIALOG_MAPPING_CONFIG, TRANSACTION_FILTER_MAPPING_CONFIG, TRANSACTION_LINE_MAPPING_CONFIG, TRANSACTION_QUICK_ACCESS_MAPPING_CONFIG, TRANSACTION_SEARCH_MAPPING_CONFIG, TRANSACTION_SIDE_PANEL_MAPPING_CONFIG, TransactionBusinessObjectCacheManagerService, TransactionCashRegisterDialogComponent, TransactionCashRegisterDialogModule, TransactionCashRegisterOrderReceiptDialogComponent, TransactionCashRegisterOrderReceiptDialogModule, TransactionCfgName, TransactionComponent, TransactionConfirmTotalsComponent, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionConnectorAdapterService, TransactionConnectorService, TransactionCreateDateLabelComponent, TransactionCreateDateLabelModule, TransactionCreateWizardComponent, TransactionCreateWizardModule, TransactionDatePickDialogComponent, TransactionDatePickDialogModule, TransactionDialogService, TransactionEventService, TransactionFilterComponent, TransactionFilterContentService, TransactionFilterModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionInvoiceCheckOrder, TransactionInvoiceCheckOrderTileComponent, TransactionInvoiceCheckOrderTileModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineSidePanelArticleDetailsComponent, TransactionLineSidePanelArticleDetailsModule, TransactionLineSidePanelReplenishmentArticleDetailsComponent, TransactionLineSidePanelReplenishmentArticleDetailsModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionMappingService, TransactionMarginComponent, TransactionMarginModule, TransactionModule, TransactionNotificationLineSelectionService, TransactionNumberLabelComponent, TransactionNumberLabelModule, TransactionPaymentConnectorService, TransactionPaymentService, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessPlanningComponent, TransactionQuickAccessPlanningModule, TransactionQuickAccessPlanningPopupComponent, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionRelationConnectorService, TransactionRelationService, TransactionScreenConfigurationService, TransactionSearchComponent, TransactionSearchModule, TransactionSearchResultComponent, TransactionSearchResultModule, TransactionSearchService, TransactionSelectMultipleCacheService, TransactionSelectMultipleParameterizedCacheService, TransactionSelectSingleCacheService, TransactionSelectSingleParameterizedCacheService, TransactionService, TransactionSettings, TransactionSettingsOptions, TransactionSettingsService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTagComponent, TransactionTagsComponent, TransactionTagsModule, TransactionTotalsComponent, TransactionTotalsModule, Version, VoucherCodePendingReasonDialogComponent, VoucherCodePendingReasonDialogModule, WarehouseCCTab };
|
|
16840
|
+
export type { AddArticleInterface, DeliveryMethod, InvoiceCheckOrderInterface, InvoiceCheckOrderLineInterface, TransactionButtonBarMappingConfig, TransactionCardMappingConfig, TransactionDialogMappingConfig, TransactionFilterMappingConfig, TransactionLineMappingConfig, TransactionQuickAccessMappingConfig, TransactionSearchMappingConfig, TransactionSidePanelMappingConfig, steps };
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
display: flex;
|
|
6
6
|
align-items: center;
|
|
7
7
|
height: $tp-transaction-button-height;
|
|
8
|
+
cursor: pointer;
|
|
8
9
|
.transaction-button-icon-wrapper {
|
|
9
10
|
display: flex;
|
|
10
11
|
height: 100%;
|
|
@@ -56,9 +57,6 @@
|
|
|
56
57
|
border-radius: $tp-transaction-button-radius;
|
|
57
58
|
background-color: $tp-transaction-button-background-color;
|
|
58
59
|
}
|
|
59
|
-
&:not(.read-only) {
|
|
60
|
-
cursor: pointer;
|
|
61
|
-
}
|
|
62
60
|
&:not(.custom-width) {
|
|
63
61
|
width: $tp-transaction-default-button-width;
|
|
64
62
|
&.big {
|
|
@@ -79,7 +77,7 @@
|
|
|
79
77
|
color: $tp-color-negative-value;
|
|
80
78
|
}
|
|
81
79
|
}
|
|
82
|
-
&.read-only {
|
|
80
|
+
&.read-only, &.force-read-only {
|
|
83
81
|
cursor: default;
|
|
84
82
|
pointer-events: none;
|
|
85
83
|
}
|
|
@@ -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";
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
@use "sass:math";
|
|
2
|
-
@import "../../../../style/mixin";
|
|
3
|
-
|
|
4
|
-
@include export-module('co-transaction-quick-access-interbranch-order-purchase-layout') {
|
|
5
|
-
.co-transaction-quick-access-interbranch-order-purchase {
|
|
6
|
-
.select-all-wrapper {
|
|
7
|
-
display: flex;
|
|
8
|
-
align-items: center;
|
|
9
|
-
}
|
|
10
|
-
.button {
|
|
11
|
-
padding: 0.25em;
|
|
12
|
-
background-color: white;
|
|
13
|
-
border: 1px solid $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
14
|
-
cursor: pointer;
|
|
15
|
-
co-icon {
|
|
16
|
-
fill: $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
17
|
-
}
|
|
18
|
-
&.selected {
|
|
19
|
-
background-color: $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
20
|
-
co-icon {
|
|
21
|
-
fill: white;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
}
|
|
1
|
+
@use "sass:math";
|
|
2
|
+
@import "../../../../style/mixin";
|
|
3
|
+
|
|
4
|
+
@include export-module('co-transaction-quick-access-interbranch-order-purchase-layout') {
|
|
5
|
+
.co-transaction-quick-access-interbranch-order-purchase {
|
|
6
|
+
.select-all-wrapper {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
}
|
|
10
|
+
.button {
|
|
11
|
+
padding: 0.25em;
|
|
12
|
+
background-color: white;
|
|
13
|
+
border: 1px solid $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
co-icon {
|
|
16
|
+
fill: $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
17
|
+
}
|
|
18
|
+
&.selected {
|
|
19
|
+
background-color: $tp-transaction-quick-access-planning-lsp-mode-button;
|
|
20
|
+
co-icon {
|
|
21
|
+
fill: white;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
$tp-transaction-quick-access-planning-lsp-mode-button: #1A73E8;
|
|
1
|
+
$tp-transaction-quick-access-planning-lsp-mode-button: #1A73E8;
|