@colijnit/transaction 300.1.1 → 300.1.3
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 +3420 -3236
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +50 -30
- package/lib/component/delivery-planning-main/component/delivery-planning-overview/component/delivery-planning-overview-tile/component/delivery-planning-overview-tile-line/style/_layout.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-result/style/_layout.scss +5 -0
- 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
|
@@ -307,7 +307,7 @@ import { BaseModuleScreenConfigService, BaseModuleService, FormMasterService, Sc
|
|
|
307
307
|
import * as i5 from '@colijnit/relation';
|
|
308
308
|
import { RelationService } from '@colijnit/relation';
|
|
309
309
|
import * as i6 from '@colijnit/sharedcomponents';
|
|
310
|
-
import { SharedService, AgendaEventPerDay, StatusbarData, CalendarView, SendMethod, FormBuilderUserFormComponent, ComponentActivityListComponent, ActivityTimelineComponent } from '@colijnit/sharedcomponents';
|
|
310
|
+
import { SharedService, AgendaEventPerDay, StatusbarData, CalendarView, SendMethod, WeekStart, FormBuilderUserFormComponent, ComponentActivityListComponent, ActivityTimelineComponent } from '@colijnit/sharedcomponents';
|
|
311
311
|
import { ExternalCatalogAddArticleRequest } from '@colijnit/transactionapi/build/model/external-catalog-add-article-request';
|
|
312
312
|
import { TransactionDeliveryCostLineInfo } from '@colijnit/transactionapi/build/model/transaction-delivery-cost-line-info.bo';
|
|
313
313
|
import { UserRoleType } from '@colijnit/ioneconnector/build/enum/user-role-type.enum';
|
|
@@ -367,7 +367,6 @@ import { QuantityInHistoricState } from '@colijnit/transactionapi/build/enum/qua
|
|
|
367
367
|
import { LogisticStickerRequest } from '@colijnit/transactionapi/build/model/logistic-sticker-request';
|
|
368
368
|
import { Payment } from '@colijnit/transactionapi/build/model/payment.bo';
|
|
369
369
|
import { WorkflowCategoryType } from '@colijnit/mainapi/build/enum/workflow-category.enum';
|
|
370
|
-
import { ActivityViewModel } from '@colijnit/mainapi/build/model/activity-view-model';
|
|
371
370
|
|
|
372
371
|
declare class Version {
|
|
373
372
|
name: string;
|
|
@@ -856,6 +855,7 @@ declare class TransactionEventService {
|
|
|
856
855
|
relationNr: number;
|
|
857
856
|
relationKind: RelationKind;
|
|
858
857
|
}>;
|
|
858
|
+
readonly cloneRelationCreated: Subject<boolean>;
|
|
859
859
|
readonly articleNavigation: Subject<string>;
|
|
860
860
|
readonly transactionNavigation: Subject<{
|
|
861
861
|
transactionNo: string;
|
|
@@ -1185,6 +1185,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1185
1185
|
changeHeaderTransactionDivideEvenly(uuid: string, divideEvenly: boolean): Promise<TransactionInfoResponse>;
|
|
1186
1186
|
changeHeaderTransactionAmountToSettle(uuid: string, amountToSettle: number): Promise<TransactionInfoResponse>;
|
|
1187
1187
|
changeHeaderTransactionPriceKind(uuid: string, priceKind: string): Promise<TransactionInfoResponse>;
|
|
1188
|
+
changeHeaderTransactionMontrieursFurnitureType(uuid: string, furnitureType: string): Promise<TransactionInfoResponse>;
|
|
1188
1189
|
changeHeaderTransactionPriceList(uuid: string, priceList: string): Promise<TransactionInfoResponse>;
|
|
1189
1190
|
changeHeaderTransactionAdmCoordinator(uuid: string, relation: number): Promise<TransactionInfoResponse>;
|
|
1190
1191
|
changeHeaderTransactionCurrency(uuid: string, currencyCode: string): Promise<TransactionInfoResponse>;
|
|
@@ -1378,6 +1379,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1378
1379
|
getDocsToSignForTrans(request: GetDocsToSignForTransRequest): Promise<ReportListObject[]>;
|
|
1379
1380
|
getYesNoCollection(languageCode: string): Promise<CoDomainValue[]>;
|
|
1380
1381
|
getPriceKindCollection(languageCode: string): Promise<CoDomainValue[]>;
|
|
1382
|
+
getMontrieursFurnitureTypeCollection(languageCode: string): Promise<CoDomainValue[]>;
|
|
1381
1383
|
getPriorityCollection(languageCode: string): Promise<CoDomainValue[]>;
|
|
1382
1384
|
getEntryTypes(languageCode: string): Promise<CoDomainValue[]>;
|
|
1383
1385
|
getDomainTypes(languageCode: string): Promise<CoDomainValue[]>;
|
|
@@ -1632,6 +1634,7 @@ declare class TransactionConnectorService {
|
|
|
1632
1634
|
getSLATypes(languageCode: string): Promise<CoDomainValue[]>;
|
|
1633
1635
|
getYesNoCollection(languageCode: string): Promise<CoDomainValue[]>;
|
|
1634
1636
|
getPriceKindCollection(languageCode: string): Promise<CoDomainValue[]>;
|
|
1637
|
+
getMontrieursFurnitureTypeCollection(languageCode: string): Promise<CoDomainValue[]>;
|
|
1635
1638
|
getPriorityCollection(languageCode: string): Promise<CoDomainValue[]>;
|
|
1636
1639
|
getEntryTypes(languageCode: string): Promise<CoDomainValue[]>;
|
|
1637
1640
|
getDomainTypes(languageCode: string): Promise<CoDomainValue[]>;
|
|
@@ -1697,6 +1700,7 @@ declare class TransactionConnectorService {
|
|
|
1697
1700
|
changeHeaderTransactionDivideEvenly(uuid: string, divideEvenly: boolean): Promise<TransactionInfoResponse>;
|
|
1698
1701
|
changeHeaderTransactionAmountToSettle(uuid: string, amountToSettle: number): Promise<TransactionInfoResponse>;
|
|
1699
1702
|
changeHeaderTransactionPriceKind(uuid: string, priceKind: string): Promise<TransactionInfoResponse>;
|
|
1703
|
+
changeHeaderTransactionMontrieursFurnitureType(uuid: string, furnitureType: string): Promise<TransactionInfoResponse>;
|
|
1700
1704
|
changeHeaderTransactionPriceList(uuid: string, priceList: string): Promise<TransactionInfoResponse>;
|
|
1701
1705
|
changeHeaderTransactionAdmCoordinator(uuid: string, relation: number): Promise<TransactionInfoResponse>;
|
|
1702
1706
|
changeHeaderTransactionCurrency(uuid: string, currencyCode: string): Promise<TransactionInfoResponse>;
|
|
@@ -2488,6 +2492,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2488
2492
|
updateHeaderContactPerson(uuid: string, relationId: number, saveTransaction: boolean): Promise<boolean>;
|
|
2489
2493
|
updateHeaderTransactionAmountToSettle(uuid: string, amountToSettle: number, saveTransaction: boolean): Promise<boolean>;
|
|
2490
2494
|
updateHeaderTransactionPriceKind(uuid: string, priceKind: string, saveTransaction: boolean): Promise<boolean>;
|
|
2495
|
+
updateHeaderTransactionMontrieursFurnitureType(uuid: string, furnitureType: string, saveTransaction: boolean): Promise<boolean>;
|
|
2491
2496
|
updateHeaderTransactionPriceList(uuid: string, PriceList: string, saveTransaction: boolean): Promise<boolean>;
|
|
2492
2497
|
updateHeaderTransactionAdmCoordinator(uuid: string, relation: number, saveTransaction: boolean): Promise<boolean>;
|
|
2493
2498
|
updateHeaderTransactionSalesPerson(uuid: string, relation: number, saveTransaction: boolean): Promise<boolean>;
|
|
@@ -2552,6 +2557,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2552
2557
|
getContactTypes(languageCode: string): Promise<CoDomainValue[]>;
|
|
2553
2558
|
getYesNo(languageCode: string): Promise<CoDomainValue[]>;
|
|
2554
2559
|
getPriceKind(languageCode: string): Promise<CoDomainValue[]>;
|
|
2560
|
+
getMontrieursFurnitureTypes(languageCode: string): Promise<CoDomainValue[]>;
|
|
2555
2561
|
getPriority(languageCode: string): Promise<CoDomainValue[]>;
|
|
2556
2562
|
getEntryTypes(languageCode: string): Promise<CoDomainValue[]>;
|
|
2557
2563
|
getDomainTypes(languageCode: string): Promise<CoDomainValue[]>;
|
|
@@ -2853,6 +2859,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2853
2859
|
cancelPspTransaction(pspTransactionUuid: string): Promise<boolean>;
|
|
2854
2860
|
createQRCode(width: number, height: number, data: string): Promise<string>;
|
|
2855
2861
|
roundUp(amount: number, paymentMethodCode: string, showLoader?: boolean): Promise<number>;
|
|
2862
|
+
getTitles(): Promise<Title[]>;
|
|
2856
2863
|
protected _handleBeforeRememberCurrentTransaction(transactionInfoResponse: TransactionInfoResponse): Promise<void>;
|
|
2857
2864
|
protected _handleAfterRememberCurrentTransaction(): Promise<void>;
|
|
2858
2865
|
private _checkAndSaveLinesForAIConfirmation;
|
|
@@ -3076,6 +3083,7 @@ declare class TransactionHeaderService {
|
|
|
3076
3083
|
getTransactionMargeInfoList(): Promise<void>;
|
|
3077
3084
|
createCloneRelation(): void;
|
|
3078
3085
|
getPlanOrder(): Promise<PlanOrder>;
|
|
3086
|
+
getTitles(): Promise<Title[]>;
|
|
3079
3087
|
getDistricts(): Promise<District[]>;
|
|
3080
3088
|
private _checkHeaderReadonly;
|
|
3081
3089
|
private _isSameDay;
|
|
@@ -5346,6 +5354,9 @@ declare class TransactionBaseLineComponent implements OnInit, OnDestroy {
|
|
|
5346
5354
|
set transaction(value: TransactionInfoResponse);
|
|
5347
5355
|
get transaction(): TransactionInfoResponse;
|
|
5348
5356
|
set transactionInfo(value: TransactionInfo);
|
|
5357
|
+
draggable: boolean;
|
|
5358
|
+
dragStart: EventEmitter<void>;
|
|
5359
|
+
dragEnd: EventEmitter<void>;
|
|
5349
5360
|
get transactionInfo(): TransactionInfo;
|
|
5350
5361
|
set transactionLine(value: TransactionLineInfo);
|
|
5351
5362
|
get transactionLine(): TransactionLineInfo;
|
|
@@ -5381,7 +5392,7 @@ declare class TransactionBaseLineComponent implements OnInit, OnDestroy {
|
|
|
5381
5392
|
deleteTransactionLineClick(event: MouseEvent): Promise<void>;
|
|
5382
5393
|
handleOpenArticleText(): void;
|
|
5383
5394
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionBaseLineComponent, never>;
|
|
5384
|
-
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>;
|
|
5395
|
+
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; }; "draggable": { "alias": "draggable"; "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; }; }, { "dragStart": "dragStart"; "dragEnd": "dragEnd"; "checkboxValueChanged": "checkboxValueChanged"; "waitingForUserAction": "waitingForUserAction"; }, never, ["*"], false, never>;
|
|
5385
5396
|
}
|
|
5386
5397
|
|
|
5387
5398
|
declare class TransactionBaseLineModule {
|
|
@@ -6081,6 +6092,8 @@ declare class TransactionHeaderPopupRelationComponent extends TransactionHeaderP
|
|
|
6081
6092
|
categories: string[];
|
|
6082
6093
|
customerGroup: string;
|
|
6083
6094
|
readonly icons: typeof Icon;
|
|
6095
|
+
titles: Title[];
|
|
6096
|
+
relationTitle: Title;
|
|
6084
6097
|
contactDetailsConfigNames: RelationContactDetailsCfgNames;
|
|
6085
6098
|
relationGeneralConfigNames: RelationGeneralCfgNames;
|
|
6086
6099
|
private _requestForSuggestions;
|
|
@@ -6103,6 +6116,7 @@ declare class TransactionHeaderPopupRelationComponent extends TransactionHeaderP
|
|
|
6103
6116
|
handleNavigationClick(nav: string): void;
|
|
6104
6117
|
handleChangeCustomGroup(group: string): void;
|
|
6105
6118
|
navigateToRelation(): void;
|
|
6119
|
+
titleNameForTitleId(titleId: number): string;
|
|
6106
6120
|
private _setFirstAddress;
|
|
6107
6121
|
private _lockRelation;
|
|
6108
6122
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderPopupRelationComponent, never>;
|
|
@@ -6361,6 +6375,7 @@ declare class RelationGeneralComponent extends RelationBaseComponent {
|
|
|
6361
6375
|
private _relationType;
|
|
6362
6376
|
showClass(): boolean;
|
|
6363
6377
|
dateOfBirth: Date;
|
|
6378
|
+
customerTitle: number;
|
|
6364
6379
|
constructor(transactionService: TransactionService, _dialogService: TransactionDialogService, relationService: TransactionRelationService, iconCacheService: IconCacheService);
|
|
6365
6380
|
firstNameChange(firstName: string): void;
|
|
6366
6381
|
familyNameChange(familyName: string): void;
|
|
@@ -6368,9 +6383,10 @@ declare class RelationGeneralComponent extends RelationBaseComponent {
|
|
|
6368
6383
|
typeOfCustomerFullObject(relation: Relation): relation is CustomerFullObject;
|
|
6369
6384
|
contactPersonForId(contactPersonId: number): RelationContactLink;
|
|
6370
6385
|
handleContactPersonChange(contactPerson: RelationContactLink): Promise<void>;
|
|
6386
|
+
handleCustomerTitleChange(title: number): void;
|
|
6371
6387
|
protected relationSet(): void;
|
|
6372
6388
|
static ɵfac: i0.ɵɵFactoryDeclaration<RelationGeneralComponent, never>;
|
|
6373
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RelationGeneralComponent, "co-relation-general", never, { "relationType": { "alias": "relationType"; "required": false; }; "configNames": { "alias": "configNames"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "relationKind": { "alias": "relationKind"; "required": false; }; "service": { "alias": "service"; "required": false; }; "contactPerson": { "alias": "contactPerson"; "required": false; }; }, { "contactPersonChangeEvent": "contactPersonChangeEvent"; "contactPersonInfoOpenEvent": "contactPersonInfoOpenEvent"; }, never, never, false, never>;
|
|
6389
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RelationGeneralComponent, "co-relation-general", never, { "relationType": { "alias": "relationType"; "required": false; }; "configNames": { "alias": "configNames"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "relationKind": { "alias": "relationKind"; "required": false; }; "service": { "alias": "service"; "required": false; }; "contactPerson": { "alias": "contactPerson"; "required": false; }; "customerTitle": { "alias": "customerTitle"; "required": false; }; }, { "contactPersonChangeEvent": "contactPersonChangeEvent"; "contactPersonInfoOpenEvent": "contactPersonInfoOpenEvent"; }, never, never, false, never>;
|
|
6374
6390
|
}
|
|
6375
6391
|
|
|
6376
6392
|
declare class RelationContactDetailsComponent extends RelationBaseComponent {
|
|
@@ -6402,7 +6418,7 @@ declare class RelationContactDetailsModule {
|
|
|
6402
6418
|
|
|
6403
6419
|
declare class RelationGeneralModule {
|
|
6404
6420
|
static ɵfac: i0.ɵɵFactoryDeclaration<RelationGeneralModule, never>;
|
|
6405
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RelationGeneralModule, [typeof RelationGeneralComponent], [typeof i2.CommonModule, typeof i3.InputTextModule, typeof PipeModule, typeof i3.InputRadioButtonModule, typeof i3.InputDatePickerModule, typeof RelationContactDetailsModule, typeof i3.ScreenConfigurationModule, typeof i3.ListOfValuesModule, typeof i3.IconModule], [typeof RelationGeneralComponent]>;
|
|
6421
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RelationGeneralModule, [typeof RelationGeneralComponent], [typeof i2.CommonModule, typeof i3.InputTextModule, typeof PipeModule, typeof i3.InputRadioButtonModule, typeof i3.InputDatePickerModule, typeof RelationContactDetailsModule, typeof i3.ScreenConfigurationModule, typeof i3.ListOfValuesModule, typeof i3.IconModule, typeof CoreModule], [typeof RelationGeneralComponent]>;
|
|
6406
6422
|
static ɵinj: i0.ɵɵInjectorDeclaration<RelationGeneralModule>;
|
|
6407
6423
|
}
|
|
6408
6424
|
|
|
@@ -6679,6 +6695,25 @@ declare class TransactionHeaderMarketingModule {
|
|
|
6679
6695
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderMarketingModule>;
|
|
6680
6696
|
}
|
|
6681
6697
|
|
|
6698
|
+
declare class TransactionHeaderMontrieursFurnitureTypeComponent extends TransactionFilterPopupHeaderBaseComponent<CoDomainValue> implements OnInit {
|
|
6699
|
+
furnitureTypeModel: CoDomainValue;
|
|
6700
|
+
montrieursHidden: boolean;
|
|
6701
|
+
private onlinePlanningDeliveryMethodCodes;
|
|
6702
|
+
ngOnInit(): void;
|
|
6703
|
+
commitMontrieursFurnitureType(furnitureType: CoDomainValue): Promise<boolean>;
|
|
6704
|
+
protected transactionInfoSet(): void;
|
|
6705
|
+
private _updateVisibility;
|
|
6706
|
+
private _setModel;
|
|
6707
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderMontrieursFurnitureTypeComponent, never>;
|
|
6708
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderMontrieursFurnitureTypeComponent, "co-transaction-header-montrieurs-furniture-type", never, {}, {}, never, never, false, never>;
|
|
6709
|
+
}
|
|
6710
|
+
|
|
6711
|
+
declare class TransactionHeaderMontrieursFurnitureTypeModule {
|
|
6712
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderMontrieursFurnitureTypeModule, never>;
|
|
6713
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderMontrieursFurnitureTypeModule, [typeof TransactionHeaderMontrieursFurnitureTypeComponent], [typeof i2.CommonModule, typeof PipeModule, typeof i3.InputTextareaModule, typeof i3.TooltipDirectiveModule, typeof i3.ListOfValuesModule, typeof i3.ScreenConfigurationModule], [typeof TransactionHeaderMontrieursFurnitureTypeComponent]>;
|
|
6714
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderMontrieursFurnitureTypeModule>;
|
|
6715
|
+
}
|
|
6716
|
+
|
|
6682
6717
|
declare class DepositPaymentViewModel {
|
|
6683
6718
|
depositPayment: DepositPayment;
|
|
6684
6719
|
paymentMethod: PaymentViewmodel;
|
|
@@ -7891,7 +7926,7 @@ declare class TransactionHeaderTargetWarehouseModule {
|
|
|
7891
7926
|
|
|
7892
7927
|
declare class TransactionHeaderPopupModule {
|
|
7893
7928
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderPopupModule, never>;
|
|
7894
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderPopupModule, [typeof TransactionHeaderPopupComponent, typeof TransactionHeaderPopupRelationComponent, typeof TransactionHeaderPopupOrderComponent, typeof TransactionHeaderPopupDeliveryComponent, typeof TransactionHeaderPopupPaymentComponent, typeof CashOnDeliveryModalComponent, typeof ProjectCodeyModalComponent, typeof DiscountCodesPopupComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof PipeModule, typeof TransactionFilterCategoriesModule, typeof i3.FormModule, typeof RelationTypeModule, typeof CoreModule, typeof RelationGeneralModule, typeof RelationAddressesModule, typeof DropShipmentModule, typeof i3.InputCheckboxModule, typeof RelationPreferencesModule, typeof TransactionHeaderBranchModule, typeof TransactionHeaderSalesPersonModule, typeof TransactionHeaderAdministrativeRelationModule, typeof TransactionHeaderPriceKindModule, typeof TransactionHeaderCurrencyModule, typeof TransactionHeaderTypeModule, typeof TransactionHeaderPaymentConditionModule, typeof TransactionHeaderHoldCodesModule, typeof TransactionHeaderMarketingModule, typeof DepositPaymentModule, typeof TransactionHeaderDeliveryOptionsModule, typeof TransactionHeaderRemarksModule, typeof TransactionHeaderReferenceModule, typeof TransactionHeaderRelationReferenceModule, typeof TransactionHeaderDeliveryMethodButtonModule, typeof i3.ButtonModule, typeof TransactionHeaderDefinitiveModule, typeof TransactionHeaderDeliveryDateModule, typeof TransactionHeaderPreferredDeliveryDateModule, typeof TransactionHeaderDeliverydateDefinitiveButtonModule, typeof TransactionHeaderDepositPercentageModule, typeof TransactionHeaderDepositAmountModule, typeof TransactionHeaderPaymentButtonModule, typeof i3.IconModule, typeof i3.TooltipDirectiveModule, typeof LoaderModule, typeof TransactionHeaderDivideEvenlyModule, typeof TransactionHeaderAmountToSettleModule, typeof i3.InputTextModule, typeof TransactionHeaderScoringChanceModule, typeof TransactionHeaderRetailStadiumModule, typeof TransactionHeaderScoringDateModule, typeof TransactionHeaderPartialDeliveryModule, typeof i3.ScreenConfigurationModule, typeof TransactionHeaderAutoRecalculateDepositModule, typeof TransactionHeaderUseDepositRuleModule, typeof TransactionHeaderPriceKindModule, typeof TransactionHeaderProjectCodeModule, typeof RelationContactDetailsModule, typeof i3.InputTextareaModule, typeof DialogCatalogModule, typeof i3.InputSearchModule, typeof ServiceWizardQaModule, typeof DialogHeaderSearchModule, typeof DialogTransactionSearchModule, typeof i6.FilesUploadModule, typeof i3.InputDatePickerModule, typeof TransactionHeaderPreferredDeliveryTimeModule, typeof i3.ImageModule, typeof PaymentModule, typeof i3.InputRadioButtonModule, typeof TransactionHeaderAssemblyDateModule, typeof TransactionHeaderTotalAssemblyTimeModule, typeof TransactionHeaderDistrictModule, typeof TransactionHeaderRelationDateModule, typeof TransactionHeaderTargetWarehouseModule, typeof i3.ListOfValuesModule], [typeof TransactionHeaderPopupComponent, typeof TransactionHeaderPopupRelationComponent, typeof DiscountCodesPopupComponent]>;
|
|
7929
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionHeaderPopupModule, [typeof TransactionHeaderPopupComponent, typeof TransactionHeaderPopupRelationComponent, typeof TransactionHeaderPopupOrderComponent, typeof TransactionHeaderPopupDeliveryComponent, typeof TransactionHeaderPopupPaymentComponent, typeof CashOnDeliveryModalComponent, typeof ProjectCodeyModalComponent, typeof DiscountCodesPopupComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof PipeModule, typeof TransactionFilterCategoriesModule, typeof i3.FormModule, typeof RelationTypeModule, typeof CoreModule, typeof RelationGeneralModule, typeof RelationAddressesModule, typeof DropShipmentModule, typeof i3.InputCheckboxModule, typeof RelationPreferencesModule, typeof TransactionHeaderBranchModule, typeof TransactionHeaderSalesPersonModule, typeof TransactionHeaderAdministrativeRelationModule, typeof TransactionHeaderPriceKindModule, typeof TransactionHeaderCurrencyModule, typeof TransactionHeaderTypeModule, typeof TransactionHeaderPaymentConditionModule, typeof TransactionHeaderHoldCodesModule, typeof TransactionHeaderMarketingModule, typeof TransactionHeaderMontrieursFurnitureTypeModule, typeof DepositPaymentModule, typeof TransactionHeaderDeliveryOptionsModule, typeof TransactionHeaderRemarksModule, typeof TransactionHeaderReferenceModule, typeof TransactionHeaderRelationReferenceModule, typeof TransactionHeaderDeliveryMethodButtonModule, typeof i3.ButtonModule, typeof TransactionHeaderDefinitiveModule, typeof TransactionHeaderDeliveryDateModule, typeof TransactionHeaderPreferredDeliveryDateModule, typeof TransactionHeaderDeliverydateDefinitiveButtonModule, typeof TransactionHeaderDepositPercentageModule, typeof TransactionHeaderDepositAmountModule, typeof TransactionHeaderPaymentButtonModule, typeof i3.IconModule, typeof i3.TooltipDirectiveModule, typeof LoaderModule, typeof TransactionHeaderDivideEvenlyModule, typeof TransactionHeaderAmountToSettleModule, typeof i3.InputTextModule, typeof TransactionHeaderScoringChanceModule, typeof TransactionHeaderRetailStadiumModule, typeof TransactionHeaderScoringDateModule, typeof TransactionHeaderPartialDeliveryModule, typeof i3.ScreenConfigurationModule, typeof TransactionHeaderAutoRecalculateDepositModule, typeof TransactionHeaderUseDepositRuleModule, typeof TransactionHeaderPriceKindModule, typeof TransactionHeaderProjectCodeModule, typeof RelationContactDetailsModule, typeof i3.InputTextareaModule, typeof DialogCatalogModule, typeof i3.InputSearchModule, typeof ServiceWizardQaModule, typeof DialogHeaderSearchModule, typeof DialogTransactionSearchModule, typeof i6.FilesUploadModule, typeof i3.InputDatePickerModule, typeof TransactionHeaderPreferredDeliveryTimeModule, typeof i3.ImageModule, typeof PaymentModule, typeof i3.InputRadioButtonModule, typeof TransactionHeaderAssemblyDateModule, typeof TransactionHeaderTotalAssemblyTimeModule, typeof TransactionHeaderDistrictModule, typeof TransactionHeaderRelationDateModule, typeof TransactionHeaderTargetWarehouseModule, typeof i3.ListOfValuesModule], [typeof TransactionHeaderPopupComponent, typeof TransactionHeaderPopupRelationComponent, typeof DiscountCodesPopupComponent]>;
|
|
7895
7930
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionHeaderPopupModule>;
|
|
7896
7931
|
}
|
|
7897
7932
|
|
|
@@ -8788,12 +8823,13 @@ declare class TransactionPlanningLineComponent extends TransactionLineBaseCompon
|
|
|
8788
8823
|
handleCheckBoxValueChanged(value: boolean, line: TransactionLineInfo): Promise<void>;
|
|
8789
8824
|
handleLineClicked(mouseClick: MouseEvent): void;
|
|
8790
8825
|
changeLineValue(value: boolean): void;
|
|
8791
|
-
dragStarted(ev: DragEvent):
|
|
8826
|
+
dragStarted(ev: DragEvent): void;
|
|
8792
8827
|
dragEnded(ev: DragEvent): void;
|
|
8793
8828
|
get linePlanned(): boolean;
|
|
8794
8829
|
get lineFullyPlanned(): boolean;
|
|
8795
8830
|
handleQuantityToPlanChange(amount: number): void;
|
|
8796
8831
|
handlePlannedResourceClicked(plannedResource: PlannedResourceForTransactionLine): Promise<void>;
|
|
8832
|
+
private _setDragImage;
|
|
8797
8833
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPlanningLineComponent, never>;
|
|
8798
8834
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionPlanningLineComponent, "co-transaction-planning-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; }, { "descriptionDblClick": "descriptionDblClick"; }, never, never, false, never>;
|
|
8799
8835
|
}
|
|
@@ -9975,7 +10011,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
9975
10011
|
showCategories: boolean;
|
|
9976
10012
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
9977
10013
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
9978
|
-
currentTitle(): "
|
|
10014
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
9979
10015
|
ngOnDestroy(): void;
|
|
9980
10016
|
handleClickWrapper(event: MouseEvent): void;
|
|
9981
10017
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -10001,7 +10037,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
10001
10037
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
10002
10038
|
ngOnDestroy(): void;
|
|
10003
10039
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10004
|
-
currentTitle(): "
|
|
10040
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
10005
10041
|
handleClickWrapper(event: MouseEvent): void;
|
|
10006
10042
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
10007
10043
|
private handleDocumentClick;
|
|
@@ -10053,7 +10089,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
10053
10089
|
showCategories: boolean;
|
|
10054
10090
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
10055
10091
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
10056
|
-
currentTitle(): "
|
|
10092
|
+
currentTitle(): "MARGINS" | "OVERVIEW";
|
|
10057
10093
|
ngOnDestroy(): void;
|
|
10058
10094
|
handleClickWrapper(event: MouseEvent): void;
|
|
10059
10095
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -10929,6 +10965,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
10929
10965
|
readonly planningActions: typeof DeliveryPlanningUpdateActions;
|
|
10930
10966
|
readonly tileModes: typeof DeliveryPlanningTileModes;
|
|
10931
10967
|
deliveryPlanningViewModes: typeof DeliveryPlanningViewModes;
|
|
10968
|
+
weekStart: typeof WeekStart;
|
|
10932
10969
|
availability: {
|
|
10933
10970
|
transportDay: PlanningTransportWeekDay;
|
|
10934
10971
|
available: boolean;
|
|
@@ -11289,6 +11326,7 @@ declare class TransactionSearchResultComponent implements OnInit, OnChanges, OnD
|
|
|
11289
11326
|
get activeContentViewMode(): ContentViewMode;
|
|
11290
11327
|
set fullscreen(value: boolean);
|
|
11291
11328
|
get fullscreen(): boolean;
|
|
11329
|
+
get selectedCount(): number;
|
|
11292
11330
|
transactionClick: EventEmitter<TransactionSearchView>;
|
|
11293
11331
|
containerChosen: EventEmitter<Container>;
|
|
11294
11332
|
showClass(): boolean;
|
|
@@ -14825,6 +14863,7 @@ declare class TransactionQuickAccessSalesQuotationComponent extends TransactionQ
|
|
|
14825
14863
|
private _transactionCreationService;
|
|
14826
14864
|
showConvertDialog: boolean;
|
|
14827
14865
|
creatingSalesOrder: boolean;
|
|
14866
|
+
allowMultiCreation: boolean;
|
|
14828
14867
|
refTransactions: TransactionRefTransaction[];
|
|
14829
14868
|
private _subscriptions;
|
|
14830
14869
|
showClass(): boolean;
|
|
@@ -16650,28 +16689,9 @@ declare class TransactionLineConversionAssistantModule {
|
|
|
16650
16689
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineConversionAssistantModule>;
|
|
16651
16690
|
}
|
|
16652
16691
|
|
|
16653
|
-
declare class TransactionLinePlanningTasksComponent {
|
|
16654
|
-
transactionService: TransactionService;
|
|
16655
|
-
deliveryPlanningService: DeliveryPlanningService;
|
|
16656
|
-
readonly tableNames: typeof TableName;
|
|
16657
|
-
transactionId: string;
|
|
16658
|
-
showClass(): boolean;
|
|
16659
|
-
constructor(transactionService: TransactionService, deliveryPlanningService: DeliveryPlanningService);
|
|
16660
|
-
ngOnInit(): void;
|
|
16661
|
-
handleDragStarted(activity: ActivityViewModel): void;
|
|
16662
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLinePlanningTasksComponent, never>;
|
|
16663
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLinePlanningTasksComponent, "co-transaction-line-planning-tasks", never, {}, {}, never, never, false, never>;
|
|
16664
|
-
}
|
|
16665
|
-
|
|
16666
|
-
declare class TransactionLinePlanningTasksModule {
|
|
16667
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLinePlanningTasksModule, never>;
|
|
16668
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLinePlanningTasksModule, [typeof TransactionLinePlanningTasksComponent], [typeof i2.CommonModule, typeof i6.ComponentActivityListModule], [typeof TransactionLinePlanningTasksComponent]>;
|
|
16669
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLinePlanningTasksModule>;
|
|
16670
|
-
}
|
|
16671
|
-
|
|
16672
16692
|
declare class TransactionInternalModule {
|
|
16673
16693
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInternalModule, never>;
|
|
16674
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionInternalModule, [typeof TransactionInternalComponent, typeof TransactionSalesReservationPopupComponent], [typeof i2.CommonModule, typeof TransactionHeaderModule, typeof TransactionQuickAccessModule, typeof TransactionButtonBarModule, typeof AvatarModule, typeof i3.ViewModeButtonsModule, typeof TransactionCardModule, typeof TransactionLinesModule, typeof AddProductModule, typeof TransactionTotalsModule, typeof TransactionLineSidePanelModule, typeof TransactionArticleTextOverviewModule, typeof TransactionArticleTextModule, typeof PipeModule, typeof TransactionCopyOrderModule, typeof i13.DragDropModule, typeof TransactionLinesSidePanelModule, typeof i3.ButtonModule, typeof i3.IconModule, typeof TransactionButtonModule, typeof i3.ScreenConfigurationModule, typeof TransactionServiceOverviewModule, typeof TransactionCardsModule, typeof TransactionMarginModule, typeof ClickBlockModule, typeof DialogTransactionLineWarehouseCcModule, typeof DialogTransactionHeaderBranchModule, typeof DialogBranchModule, typeof TransactionPurchaseReservationOrderTileModule, typeof i3.CoDialogModule, typeof i6.StockModule, typeof TransactionArticleStockModule, typeof TransactionOrderTileModule, typeof TransactionHeaderCustomerPortalModule, typeof TransactionSalesPersonInputModule, typeof TransactionHeaderSalesPersonModule, typeof i3.ClickoutsideModule, typeof i3.OverlayModule, typeof TransactionHeaderHandledByModule, typeof i6.FormBuilderUserFormModule, typeof DeliveryPlanningOverviewModule, typeof TransactionLineActivitiesModule, typeof TransactionLineConversionAssistantModule
|
|
16694
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionInternalModule, [typeof TransactionInternalComponent, typeof TransactionSalesReservationPopupComponent], [typeof i2.CommonModule, typeof TransactionHeaderModule, typeof TransactionQuickAccessModule, typeof TransactionButtonBarModule, typeof AvatarModule, typeof i3.ViewModeButtonsModule, typeof TransactionCardModule, typeof TransactionLinesModule, typeof AddProductModule, typeof TransactionTotalsModule, typeof TransactionLineSidePanelModule, typeof TransactionArticleTextOverviewModule, typeof TransactionArticleTextModule, typeof PipeModule, typeof TransactionCopyOrderModule, typeof i13.DragDropModule, typeof TransactionLinesSidePanelModule, typeof i3.ButtonModule, typeof i3.IconModule, typeof TransactionButtonModule, typeof i3.ScreenConfigurationModule, typeof TransactionServiceOverviewModule, typeof TransactionCardsModule, typeof TransactionMarginModule, typeof ClickBlockModule, typeof DialogTransactionLineWarehouseCcModule, typeof DialogTransactionHeaderBranchModule, typeof DialogBranchModule, typeof TransactionPurchaseReservationOrderTileModule, typeof i3.CoDialogModule, typeof i6.StockModule, typeof TransactionArticleStockModule, typeof TransactionOrderTileModule, typeof TransactionHeaderCustomerPortalModule, typeof TransactionSalesPersonInputModule, typeof TransactionHeaderSalesPersonModule, typeof i3.ClickoutsideModule, typeof i3.OverlayModule, typeof TransactionHeaderHandledByModule, typeof i6.FormBuilderUserFormModule, typeof DeliveryPlanningOverviewModule, typeof TransactionLineActivitiesModule, typeof TransactionLineConversionAssistantModule], [typeof TransactionInternalComponent, typeof TransactionSalesReservationPopupComponent]>;
|
|
16675
16695
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionInternalModule>;
|
|
16676
16696
|
}
|
|
16677
16697
|
|
|
@@ -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;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@include export-module('co-transaction-quick-access-interbranch-order-purchase-theme') {
|
|
2
|
-
.co-transaction-quick-access-interbranch-order-purchase {
|
|
3
|
-
}
|
|
4
|
-
}
|
|
1
|
+
@include export-module('co-transaction-quick-access-interbranch-order-purchase-theme') {
|
|
2
|
+
.co-transaction-quick-access-interbranch-order-purchase {
|
|
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";
|