@colijnit/transaction 300.1.17 → 300.1.18

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.
Files changed (22) hide show
  1. package/fesm2022/colijnit-transaction.mjs +2235 -2198
  2. package/fesm2022/colijnit-transaction.mjs.map +1 -1
  3. package/index.d.ts +48 -44
  4. package/lib/component/transaction-line/transaction-line/style/_layout.scss +24 -1
  5. package/lib/component/transaction-line/transaction-line/style/_material-definition.scss +7 -0
  6. package/lib/component/transaction-line-interbranch-receive-goods/style/_layout.scss +78 -78
  7. package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss +2 -2
  8. package/lib/component/transaction-line-interbranch-receive-goods/style/_theme.scss +4 -4
  9. package/lib/component/transaction-line-interbranch-receive-goods/style/material.scss +4 -4
  10. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_layout.scss +27 -27
  11. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_material-definition.scss +1 -1
  12. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/_theme.scss +4 -4
  13. package/lib/component/transaction-quick-access/transaction-quick-access-interbranch-order-purchase/style/material.scss +4 -4
  14. package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_layout.scss +73 -73
  15. package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/_theme.scss +6 -6
  16. package/lib/component/transaction-quick-access/transaction-quick-access-interrbranch-received-goods/style/material.scss +4 -4
  17. package/lib/component/transaction-search/transaction-search-tile/transaction-invoice-check-order-tile/style/_layout.scss +6 -1
  18. package/package.json +2 -2
  19. package/lib/component/transaction-line-planning-tasks/style/_layout.scss +0 -10
  20. package/lib/component/transaction-line-planning-tasks/style/_material-definition.scss +0 -0
  21. package/lib/component/transaction-line-planning-tasks/style/_theme.scss +0 -4
  22. package/lib/component/transaction-line-planning-tasks/style/material.scss +0 -4
package/index.d.ts CHANGED
@@ -332,7 +332,6 @@ import * as i13 from '@angular/cdk/drag-drop';
332
332
  import { CdkDrag, CdkDropList, CdkDragEnter, CdkDragDrop } from '@angular/cdk/drag-drop';
333
333
  import { TransactionLineType } from '@colijnit/transactionapi/build/enum/transaction-line-type.enum';
334
334
  import { TransactionLineMarginInfo } from '@colijnit/transactionapi/build/model/transaction-line-margin-info.bo';
335
- import { FormResponse as FormResponse$1 } from '@colijnit/transactionapi/build/model/form-response.bo';
336
335
  import { PaymentLineType } from '@colijnit/transactionapi/build/enum/payment-line-type';
337
336
  import * as i4 from '@angular/cdk/scrolling';
338
337
  import { RelationContactLink } from '@colijnit/relationapi/build/model/relation-contact-link.bo';
@@ -942,7 +941,7 @@ declare class TransactionEventService {
942
941
  readonly lockResetRequested: Subject<void>;
943
942
  readonly searchServiceTransactionTypeChanged: Subject<void>;
944
943
  readonly headerReadOnlyChange: BehaviorSubject<boolean>;
945
- readonly lineUserFormResponseRequest: BehaviorSubject<{
944
+ readonly lineUserFormResponseRequest: Subject<{
946
945
  formId: number;
947
946
  lineUUID: string;
948
947
  openUserForm: boolean;
@@ -1404,6 +1403,7 @@ declare class TransactionConnectorAdapterService {
1404
1403
  getPackageInformation(transactionUUID: string, lineUUID: string): Promise<PackageLSP[]>;
1405
1404
  getLogisticsPartners(): Promise<DeliveryMethod$1[]>;
1406
1405
  loadDocumentsOfTransaction(key: string): Promise<CoDocument[]>;
1406
+ loadDocumentsOfTransactionLine(key: string): Promise<CoDocument[]>;
1407
1407
  getDocumentsForCurrentUserByTransId(transId: number): Promise<CoDocument[]>;
1408
1408
  loadDocumentContent(docId: number): Promise<string>;
1409
1409
  mergeDocumentOnTransaction(key: string, document: CoDocument): Promise<CoDocument>;
@@ -1464,6 +1464,7 @@ declare class TransactionConnectorAdapterService {
1464
1464
  getVoucherInfo(voucherCode: string, toCurrencyCode?: string): Promise<Voucher>;
1465
1465
  getFirstConfirmedDeliveryDateForTransactionLine(transId: number, lineNr: number): Promise<Date>;
1466
1466
  getFormById(formId: number): Promise<Form>;
1467
+ getActiveReturnForm(): Promise<Form>;
1467
1468
  getAllFormResponsesForTableAndKey(table: TableName, key: string): Promise<FormResponse[]>;
1468
1469
  getFormResponse(formResponseId: number): Promise<FormResponse>;
1469
1470
  upsertTransactionLineFormResponse(transUUID: string, lineUUID: string, formResponse: FormResponse): Promise<TransactionInfoResponse>;
@@ -1906,6 +1907,7 @@ declare class TransactionConnectorService {
1906
1907
  getPlanTransportWeek(startDate: Date, planningId: number): Promise<PlanningTransportWeek[]>;
1907
1908
  updatePlanTransportWeek(planTransportWeek: PlanningTransportWeek): Promise<boolean>;
1908
1909
  loadDocumentsOfTransaction(key: string): Promise<CoDocument[]>;
1910
+ loadDocumentsOfTransactionLine(key: string, overrideOld?: boolean): Promise<CoDocument[]>;
1909
1911
  getDocumentsForCurrentUserByTransId(transId: number): Promise<CoDocument[]>;
1910
1912
  loadDocumentContent(docId: number, thumbnail?: boolean): Promise<string>;
1911
1913
  mergeDocumentOnTransaction(key: string, document: CoDocument): Promise<CoDocument>;
@@ -1952,6 +1954,7 @@ declare class TransactionConnectorService {
1952
1954
  getVoucherInfo(voucherCode: string, toCurrencyCode?: string): Promise<Voucher>;
1953
1955
  getFirstConfirmedDeliveryDateForTransactionLine(transId: number, lineNr: number): Promise<Date>;
1954
1956
  getFormById(formId: number): Promise<Form>;
1957
+ getActiveReturnForm(): Promise<Form>;
1955
1958
  getAllFormResponsesForTableAndKey(table: TableName, key: string): Promise<FormResponse[]>;
1956
1959
  upsertTransactionLineFormResponse(transUUID: string, lineUUID: string, formResponse: FormResponse): Promise<TransactionInfoResponse>;
1957
1960
  getFormResponse(responseId: number): Promise<FormResponse>;
@@ -2165,6 +2168,7 @@ declare enum Icon {
2165
2168
  PalletBoxesRotate = "pallet_boxes_rotate",
2166
2169
  PalletBoxesSharpRegular = "pallet_boxes_sharp_regular",
2167
2170
  PalletBoxesSolid = "pallet_boxes_solid",
2171
+ PaperclipVerticalLight = "paperclip_vertical_light",
2168
2172
  Pdf = "pdf",
2169
2173
  PencilRegularFull = "pencil_regular_full",
2170
2174
  PencilSolidFull = "pencil_solid_full",
@@ -2793,6 +2797,7 @@ declare class TransactionService extends PendingReasonService {
2793
2797
  getTransactionMarginInfo(transactionUUID: string): Promise<TransactionMarginInfo>;
2794
2798
  printSalesOrdersOverview(request: TransactionSearchViewRequest): Promise<PdfTransactionSearchOverviewResponse>;
2795
2799
  loadDocumentsOfTransaction(key: string): Promise<CoDocument[]>;
2800
+ loadDocumentsOfTransactionLine(key: string): Promise<CoDocument[]>;
2796
2801
  getDocumentsForCurrentUserByTransId(transId: number): Promise<CoDocument[]>;
2797
2802
  loadDocumentContent(docId: number, thumbnail?: boolean): Promise<string>;
2798
2803
  mergeDocumentOnTransaction(key: string, document: CoDocument): Promise<CoDocument>;
@@ -3930,6 +3935,7 @@ declare class ConfirmationDialogModule {
3930
3935
 
3931
3936
  declare class TransactionLineService {
3932
3937
  transactionLineSet: BehaviorSubject<boolean>;
3938
+ visibilityChange: BehaviorSubject<boolean>;
3933
3939
  set transactionLine(value: TransactionLineInfo);
3934
3940
  get transactionLine(): TransactionLineInfo;
3935
3941
  set selected(value: boolean);
@@ -3965,8 +3971,10 @@ declare class TransactionLineService {
3965
3971
  isText: boolean;
3966
3972
  isArticle: boolean;
3967
3973
  showingMargins: boolean;
3968
- lineVisible: boolean;
3974
+ set lineVisible(value: boolean);
3975
+ get lineVisible(): boolean;
3969
3976
  private _transactionLine;
3977
+ private _lineVisible;
3970
3978
  constructor();
3971
3979
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineService, never>;
3972
3980
  static ɵprov: i0.ɵɵInjectableDeclaration<TransactionLineService>;
@@ -5033,10 +5041,6 @@ declare class TransactionOverviewLineComponent extends TransactionLineBaseCompon
5033
5041
  protected changeDetector: ChangeDetectorRef;
5034
5042
  readonly category: typeof TransactionTypeCategory;
5035
5043
  readonly icons: typeof Icon;
5036
- formKey: string;
5037
- formResponse: FormResponse$1[];
5038
- form: Form;
5039
- formTable: TableName;
5040
5044
  transactionLineActionButtons: TransactionLineActionButtonsComponent;
5041
5045
  lineIndex: number;
5042
5046
  descriptionDblClick: EventEmitter<void>;
@@ -5055,7 +5059,7 @@ declare class TransactionOverviewLineComponent extends TransactionLineBaseCompon
5055
5059
  handleCheckBoxValueChanged(value: boolean): void;
5056
5060
  handleServiceExistingOrderNavigation(ref: TransactionRefTransaction): void;
5057
5061
  onDescriptionDblClick(): void;
5058
- openForm(): Promise<void>;
5062
+ openForm(mouseEvent: MouseEvent): void;
5059
5063
  protected readonly isNaN: typeof isNaN;
5060
5064
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionOverviewLineComponent, never>;
5061
5065
  static ɵcmp: i0.ɵɵComponentDeclaration<TransactionOverviewLineComponent, "co-transaction-overview-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; }, { "descriptionDblClick": "descriptionDblClick"; }, never, never, false, never>;
@@ -5390,21 +5394,16 @@ declare class TransactionLinePriceModule {
5390
5394
  }
5391
5395
 
5392
5396
  declare class TransactionBaseLineComponent implements OnInit, OnDestroy {
5397
+ iconCacheService: IconCacheService;
5393
5398
  private _transactionService;
5394
5399
  private _transactionEventService;
5395
5400
  private _screenConfigService;
5396
5401
  private _changeDetector;
5402
+ private _transactionHeaderService;
5403
+ private _transactionLineService;
5397
5404
  readonly cfgNames: typeof TransactionCfgName;
5398
5405
  lineIndex: number;
5399
- set transaction(value: TransactionInfoResponse);
5400
- get transaction(): TransactionInfoResponse;
5401
- set transactionInfo(value: TransactionInfo);
5402
5406
  draggable: boolean;
5403
- dragStart: EventEmitter<void>;
5404
- dragEnd: EventEmitter<void>;
5405
- get transactionInfo(): TransactionInfo;
5406
- set transactionLine(value: TransactionLineInfo);
5407
- get transactionLine(): TransactionLineInfo;
5408
5407
  set selected(value: boolean);
5409
5408
  get selected(): boolean;
5410
5409
  preview: boolean;
@@ -5420,24 +5419,35 @@ declare class TransactionBaseLineComponent implements OnInit, OnDestroy {
5420
5419
  showArticleNr: boolean;
5421
5420
  customerPortal: boolean;
5422
5421
  showPriceAmount: boolean;
5422
+ handleDocuments: boolean;
5423
5423
  checkboxValueChanged: EventEmitter<boolean>;
5424
5424
  waitingForUserAction: EventEmitter<boolean>;
5425
+ dragStart: EventEmitter<void>;
5426
+ dragEnd: EventEmitter<void>;
5425
5427
  showClass(): boolean;
5428
+ get transactionInfo(): TransactionInfo;
5429
+ get orderLineSets(): OrderLineSetInfo[];
5430
+ get transactionLine(): TransactionLineInfo;
5426
5431
  showActionsButton: boolean;
5432
+ documentsCollection: CoDocument[];
5433
+ key: string;
5434
+ documentCount: number;
5435
+ protected readonly icons: typeof Icon;
5427
5436
  actionButtonsConfigNames: ActionButtonsCfgNames;
5428
5437
  private _checkboxValue;
5429
5438
  private _subs;
5430
- private _transaction;
5431
- private _transactionInfo;
5432
- private _transactionLine;
5433
5439
  private _selected;
5434
- constructor(_transactionService: TransactionService, _transactionEventService: TransactionEventService, _screenConfigService: TransactionScreenConfigurationService, _changeDetector: ChangeDetectorRef);
5440
+ constructor(iconCacheService: IconCacheService, _transactionService: TransactionService, _transactionEventService: TransactionEventService, _screenConfigService: TransactionScreenConfigurationService, _changeDetector: ChangeDetectorRef, _transactionHeaderService: TransactionHeaderService, _transactionLineService: TransactionLineService);
5435
5441
  ngOnInit(): void;
5436
5442
  ngOnDestroy(): void;
5443
+ loadDocuments(): Promise<void>;
5437
5444
  deleteTransactionLineClick(event: MouseEvent): Promise<void>;
5438
5445
  handleOpenArticleText(): void;
5446
+ handleAddDocumentButtonClick(): void;
5447
+ protected transactionLineSet(): void;
5448
+ private _tryLoadDocuments;
5439
5449
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionBaseLineComponent, never>;
5440
- static ɵcmp: i0.ɵɵComponentDeclaration<TransactionBaseLineComponent, "co-transaction-base-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; "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>;
5450
+ static ɵcmp: i0.ɵɵComponentDeclaration<TransactionBaseLineComponent, "co-transaction-base-line", never, { "lineIndex": { "alias": "lineIndex"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "preview": { "alias": "preview"; "required": false; }; "isFirst": { "alias": "isFirst"; "required": false; }; "checkboxValue": { "alias": "checkboxValue"; "required": false; }; "showColorIndicator": { "alias": "showColorIndicator"; "required": false; }; "colorIndicatorColor": { "alias": "colorIndicatorColor"; "required": false; }; "checkboxReadonly": { "alias": "checkboxReadonly"; "required": false; }; "checkbox": { "alias": "checkbox"; "required": false; }; "actionButtons": { "alias": "actionButtons"; "required": false; }; "showPurchaseDescAndPrice": { "alias": "showPurchaseDescAndPrice"; "required": false; }; "showArticleNr": { "alias": "showArticleNr"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; "showPriceAmount": { "alias": "showPriceAmount"; "required": false; }; "handleDocuments": { "alias": "handleDocuments"; "required": false; }; }, { "checkboxValueChanged": "checkboxValueChanged"; "waitingForUserAction": "waitingForUserAction"; "dragStart": "dragStart"; "dragEnd": "dragEnd"; }, never, ["*"], false, never>;
5441
5451
  }
5442
5452
 
5443
5453
  declare class TransactionBaseLineModule {
@@ -9819,13 +9829,14 @@ declare class TransactionLineSidePanelDefaultModule {
9819
9829
  declare class TransactionReceivingGoodsHistoryComponent {
9820
9830
  readonly SimpleGridColumnTemplateType: typeof SimpleGridColumnTemplateType;
9821
9831
  showDeleteButton: boolean;
9832
+ disableDeleteButton: boolean;
9822
9833
  set goodsReceiptHistory(value: LogisticalStateDetail[]);
9823
9834
  get goodsReceiptHistory(): LogisticalStateDetail[];
9824
- private _goodsReceiptHistory;
9825
9835
  deleteRow: EventEmitter<LogisticalStateDetail>;
9826
9836
  showClass(): boolean;
9837
+ private _goodsReceiptHistory;
9827
9838
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionReceivingGoodsHistoryComponent, never>;
9828
- static ɵcmp: i0.ɵɵComponentDeclaration<TransactionReceivingGoodsHistoryComponent, "co-transaction-receiving-goods-history", never, { "showDeleteButton": { "alias": "showDeleteButton"; "required": false; }; "goodsReceiptHistory": { "alias": "goodsReceiptHistory"; "required": false; }; }, { "deleteRow": "deleteRow"; }, never, never, false, never>;
9839
+ static ɵcmp: i0.ɵɵComponentDeclaration<TransactionReceivingGoodsHistoryComponent, "co-transaction-receiving-goods-history", never, { "showDeleteButton": { "alias": "showDeleteButton"; "required": false; }; "disableDeleteButton": { "alias": "disableDeleteButton"; "required": false; }; "goodsReceiptHistory": { "alias": "goodsReceiptHistory"; "required": false; }; }, { "deleteRow": "deleteRow"; }, never, never, false, never>;
9829
9840
  }
9830
9841
 
9831
9842
  declare enum StatusType {
@@ -9844,6 +9855,7 @@ declare class TransactionHistoryGridComponent {
9844
9855
  set collection(collection: any);
9845
9856
  get collection(): any;
9846
9857
  showDeleteButton: boolean;
9858
+ disableDeleteButton: boolean;
9847
9859
  deleteSelectedRow: EventEmitter<any>;
9848
9860
  showClass(): boolean;
9849
9861
  extraColumns: SimpleGridColumnDirective[];
@@ -9854,7 +9866,7 @@ declare class TransactionHistoryGridComponent {
9854
9866
  handleSelectRow(row: any): void;
9855
9867
  handleDeleteClick(): void;
9856
9868
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHistoryGridComponent, never>;
9857
- static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHistoryGridComponent, "co-transaction-history-grid", never, { "collection": { "alias": "collection"; "required": false; }; "showDeleteButton": { "alias": "showDeleteButton"; "required": false; }; }, { "deleteSelectedRow": "deleteSelectedRow"; }, ["content"], never, false, never>;
9869
+ static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHistoryGridComponent, "co-transaction-history-grid", never, { "collection": { "alias": "collection"; "required": false; }; "showDeleteButton": { "alias": "showDeleteButton"; "required": false; }; "disableDeleteButton": { "alias": "disableDeleteButton"; "required": false; }; }, { "deleteSelectedRow": "deleteSelectedRow"; }, ["content"], never, false, never>;
9858
9870
  }
9859
9871
 
9860
9872
  declare class TransactionHistoryGridStatusComponent implements AfterViewInit {
@@ -10092,7 +10104,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
10092
10104
  showCategories: boolean;
10093
10105
  constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
10094
10106
  currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
10095
- currentTitle(): "MARGINS" | "OVERVIEW";
10107
+ currentTitle(): "OVERVIEW" | "MARGINS";
10096
10108
  ngOnDestroy(): void;
10097
10109
  handleClickWrapper(event: MouseEvent): void;
10098
10110
  handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
@@ -10118,7 +10130,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
10118
10130
  constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
10119
10131
  ngOnDestroy(): void;
10120
10132
  currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
10121
- currentTitle(): "MARGINS" | "OVERVIEW";
10133
+ currentTitle(): "OVERVIEW" | "MARGINS";
10122
10134
  handleClickWrapper(event: MouseEvent): void;
10123
10135
  handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
10124
10136
  private handleDocumentClick;
@@ -10170,7 +10182,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
10170
10182
  showCategories: boolean;
10171
10183
  constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
10172
10184
  currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
10173
- currentTitle(): "MARGINS" | "OVERVIEW";
10185
+ currentTitle(): "OVERVIEW" | "MARGINS";
10174
10186
  ngOnDestroy(): void;
10175
10187
  handleClickWrapper(event: MouseEvent): void;
10176
10188
  handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
@@ -10291,6 +10303,7 @@ declare class TransactionLinePurchaseReceiveGoodsComponent extends TransactionLi
10291
10303
  quantityToReceive: number;
10292
10304
  calculatedStickerAmount: number;
10293
10305
  showLocation: boolean;
10306
+ deleting: boolean;
10294
10307
  private _subs;
10295
10308
  private _defaultReportId;
10296
10309
  constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _formMaster: FormMasterService);
@@ -14075,7 +14088,7 @@ declare class StepperStepModule {
14075
14088
  static ɵinj: i0.ɵɵInjectorDeclaration<StepperStepModule>;
14076
14089
  }
14077
14090
 
14078
- declare class TransactionManualCreateDialogComponent {
14091
+ declare class TransactionManualCreateDialogComponent implements OnInit {
14079
14092
  iconCacheService: IconCacheService;
14080
14093
  service: TransactionService;
14081
14094
  readonly icons: typeof Icon;
@@ -14083,9 +14096,11 @@ declare class TransactionManualCreateDialogComponent {
14083
14096
  saveEvent: EventEmitter<void>;
14084
14097
  showClass(): boolean;
14085
14098
  constructor(iconCacheService: IconCacheService, service: TransactionService);
14099
+ ngOnInit(): void;
14086
14100
  handleCloseClick(): void;
14087
14101
  handleCommitClick(): void;
14088
14102
  handleCancelClick(): void;
14103
+ private _resetManualData;
14089
14104
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionManualCreateDialogComponent, never>;
14090
14105
  static ɵcmp: i0.ɵɵComponentDeclaration<TransactionManualCreateDialogComponent, "co-transaction-manual-create-dialog", never, {}, { "closeEvent": "closeEvent"; "saveEvent": "saveEvent"; }, never, never, false, never>;
14091
14106
  }
@@ -16332,7 +16347,7 @@ declare class TransactionServiceOverviewComponent extends TransactionHeaderBaseC
16332
16347
  protected changeDetector: ChangeDetectorRef;
16333
16348
  private _dialogService;
16334
16349
  readonly TableName: typeof TableName;
16335
- readonly WorkflowCategoryType: typeof WorkflowCategoryType;
16350
+ readonly WorkflowCategoryType: any;
16336
16351
  readonly cfgNames: typeof TransactionCfgName;
16337
16352
  openActivities: ComponentActivityListComponent;
16338
16353
  activityTimeline: ActivityTimelineComponent;
@@ -17640,14 +17655,16 @@ declare class TransactionInvoiceCheckOrderTileComponent {
17640
17655
  }>;
17641
17656
  selectAllLinesEvent: EventEmitter<void>;
17642
17657
  openTransactionEvent: EventEmitter<number>;
17658
+ selectTransactionEvent: EventEmitter<InvoiceCheckOrderInterface>;
17643
17659
  selected: boolean;
17644
17660
  constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef);
17645
17661
  showClass(): boolean;
17646
17662
  handleLineSelected(selected: boolean, line: InvoiceCheckOrderLineInterface): void;
17647
17663
  handleSaveRow(data: InvoiceCheckOrderLineInterface | {}): void;
17648
17664
  handleOpenTransaction(transNo: number): void;
17665
+ handleOrderSelected(selected: boolean, data: InvoiceCheckOrderInterface): void;
17649
17666
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionInvoiceCheckOrderTileComponent, never>;
17650
- static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInvoiceCheckOrderTileComponent, "co-transaction-invoice-check-order-tile", never, { "invoiceCheckOrder": { "alias": "invoiceCheckOrder"; "required": false; }; }, { "lineSelectedEvent": "lineSelectedEvent"; "saveRowEvent": "saveRowEvent"; "selectAllLinesEvent": "selectAllLinesEvent"; "openTransactionEvent": "openTransactionEvent"; }, never, never, false, never>;
17667
+ static ɵcmp: i0.ɵɵComponentDeclaration<TransactionInvoiceCheckOrderTileComponent, "co-transaction-invoice-check-order-tile", never, { "invoiceCheckOrder": { "alias": "invoiceCheckOrder"; "required": false; }; }, { "lineSelectedEvent": "lineSelectedEvent"; "saveRowEvent": "saveRowEvent"; "selectAllLinesEvent": "selectAllLinesEvent"; "openTransactionEvent": "openTransactionEvent"; "selectTransactionEvent": "selectTransactionEvent"; }, never, never, false, never>;
17651
17668
  }
17652
17669
 
17653
17670
  declare class TransactionInvoiceCheckOrderTileModule {
@@ -17669,18 +17686,5 @@ declare class TransactionInvoiceCheckOrder {
17669
17686
  customerName: string;
17670
17687
  }
17671
17688
 
17672
- declare class SharedConnectorService {
17673
- private _optionsService;
17674
- connector: Sharedapi;
17675
- private _boFactory;
17676
- constructor(_optionsService: TransactionSettingsService);
17677
- connect(): Promise<void>;
17678
- selectDocsByTableKey(table: string, key: string): Promise<CoDocument[]>;
17679
- getDocumentContent(id: number, thumbnail?: boolean): Promise<string>;
17680
- storeSignedDoc(documentId: number, documentBody: string): Promise<void>;
17681
- static ɵfac: i0.ɵɵFactoryDeclaration<SharedConnectorService, never>;
17682
- static ɵprov: i0.ɵɵInjectableDeclaration<SharedConnectorService>;
17683
- }
17684
-
17685
- export { AddProductComponent, AddProductModule, ArticleConnectorService, ArticleService, BatchProcessDialogComponent, BatchProcessDialogModule, CharacteristicAnswerComponent, CharacteristicAnswerModule, CheckoutComponent, CheckoutModule, CheckoutOverviewDeliveryEditComponent, CheckoutOverviewRelationEditComponent, DatePeriod, DeliveryPlanningCalendarModes, DeliveryPlanningComponent, DeliveryPlanningModes, DeliveryPlanningModule, DeliveryPlanningService, DeliveryPlanningTileDropdownActions, DeliveryPlanningViewModes, DialogBranchComponent, DialogBranchModule, DialogTransactionLineWarehouseCcComponent, DialogTransactionLineWarehouseCcModule, DialogTransactionLineWarehouseLocationComponent, DialogTransactionLineWarehouseLocationModule, FastDateRangePickerComponent, FastDateRangePickerModule, FilterRequestService, LineSelectionService, LoaderComponent, LoaderModule, LspDialogType, PosOrderData, PurchaseConfirmationService, QuickSendButtonComponent, QuickSendButtonModule, SearchViewMode, SearchbarViewMode, SharedConnectorService, ShippingMethodDialogComponent, ShippingMethodDialogModule, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, StepperComponent, StepperModule, StepperStepComponent, StepperStepModule, TRANSACTION_BUTTON_BAR_MAPPING_CONFIG, TRANSACTION_CARD_MAPPING_CONFIG, TRANSACTION_DIALOG_MAPPING_CONFIG, TRANSACTION_FILTER_MAPPING_CONFIG, TRANSACTION_LINE_MAPPING_CONFIG, TRANSACTION_QUICK_ACCESS_MAPPING_CONFIG, TRANSACTION_SEARCH_MAPPING_CONFIG, TRANSACTION_SIDE_PANEL_MAPPING_CONFIG, TransactionBusinessObjectCacheManagerService, TransactionCashRegisterDialogComponent, TransactionCashRegisterDialogModule, TransactionCashRegisterOrderReceiptDialogComponent, TransactionCashRegisterOrderReceiptDialogModule, TransactionCfgName, TransactionComponent, TransactionConfirmTotalsComponent, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionConnectorAdapterService, TransactionConnectorService, TransactionCreateDateLabelComponent, TransactionCreateDateLabelModule, TransactionCreateWizardComponent, TransactionCreateWizardModule, TransactionDatePickDialogComponent, TransactionDatePickDialogModule, TransactionDialogService, TransactionEventService, TransactionFilterComponent, TransactionFilterContentService, TransactionFilterModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionInvoiceCheckOrder, TransactionInvoiceCheckOrderTileComponent, TransactionInvoiceCheckOrderTileModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineSidePanelArticleDetailsComponent, TransactionLineSidePanelArticleDetailsModule, TransactionLineSidePanelReplenishmentArticleDetailsComponent, TransactionLineSidePanelReplenishmentArticleDetailsModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionMappingService, TransactionMarginComponent, TransactionMarginModule, TransactionModule, TransactionNotificationLineSelectionService, TransactionNumberLabelComponent, TransactionNumberLabelModule, TransactionPaymentConnectorService, TransactionPaymentService, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessPlanningComponent, TransactionQuickAccessPlanningModule, TransactionQuickAccessPlanningPopupComponent, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionRelationConnectorService, TransactionRelationService, TransactionScreenConfigurationService, TransactionSearchComponent, TransactionSearchModule, TransactionSearchResultComponent, TransactionSearchResultModule, TransactionSearchService, TransactionSelectMultipleCacheService, TransactionSelectMultipleParameterizedCacheService, TransactionSelectSingleCacheService, TransactionSelectSingleParameterizedCacheService, TransactionService, TransactionSettings, TransactionSettingsOptions, TransactionSettingsService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTagComponent, TransactionTagsComponent, TransactionTagsModule, TransactionTotalsComponent, TransactionTotalsModule, Version, VoucherCodePendingReasonDialogComponent, VoucherCodePendingReasonDialogModule, WarehouseCCTab };
17689
+ export { AddProductComponent, AddProductModule, ArticleConnectorService, ArticleService, BatchProcessDialogComponent, BatchProcessDialogModule, CharacteristicAnswerComponent, CharacteristicAnswerModule, CheckoutComponent, CheckoutModule, CheckoutOverviewDeliveryEditComponent, CheckoutOverviewRelationEditComponent, DatePeriod, DeliveryPlanningCalendarModes, DeliveryPlanningComponent, DeliveryPlanningModes, DeliveryPlanningModule, DeliveryPlanningService, DeliveryPlanningTileDropdownActions, DeliveryPlanningViewModes, DialogBranchComponent, DialogBranchModule, DialogTransactionLineWarehouseCcComponent, DialogTransactionLineWarehouseCcModule, DialogTransactionLineWarehouseLocationComponent, DialogTransactionLineWarehouseLocationModule, FastDateRangePickerComponent, FastDateRangePickerModule, FilterRequestService, LineSelectionService, LoaderComponent, LoaderModule, LspDialogType, PosOrderData, PurchaseConfirmationService, QuickSendButtonComponent, QuickSendButtonModule, SearchViewMode, SearchbarViewMode, ShippingMethodDialogComponent, ShippingMethodDialogModule, ShoppingCartComponent, ShoppingCartModule, ShoppingCartPreviewComponent, ShoppingCartPreviewModule, StepperComponent, StepperModule, StepperStepComponent, StepperStepModule, TRANSACTION_BUTTON_BAR_MAPPING_CONFIG, TRANSACTION_CARD_MAPPING_CONFIG, TRANSACTION_DIALOG_MAPPING_CONFIG, TRANSACTION_FILTER_MAPPING_CONFIG, TRANSACTION_LINE_MAPPING_CONFIG, TRANSACTION_QUICK_ACCESS_MAPPING_CONFIG, TRANSACTION_SEARCH_MAPPING_CONFIG, TRANSACTION_SIDE_PANEL_MAPPING_CONFIG, TransactionBusinessObjectCacheManagerService, TransactionCashRegisterDialogComponent, TransactionCashRegisterDialogModule, TransactionCashRegisterOrderReceiptDialogComponent, TransactionCashRegisterOrderReceiptDialogModule, TransactionCfgName, TransactionComponent, TransactionConfirmTotalsComponent, TransactionConfirmationHistoryComponent, TransactionConfirmationHistoryModule, TransactionConnectorAdapterService, TransactionConnectorService, TransactionCreateDateLabelComponent, TransactionCreateDateLabelModule, TransactionCreateWizardComponent, TransactionCreateWizardModule, TransactionDatePickDialogComponent, TransactionDatePickDialogModule, TransactionDialogService, TransactionEventService, TransactionFilterComponent, TransactionFilterContentService, TransactionFilterModule, TransactionHeaderComponent, TransactionHeaderDeliveryComponent, TransactionHeaderDeliveryModule, TransactionHeaderModule, TransactionHeaderOrderComponent, TransactionHeaderOrderModule, TransactionHeaderRelationComponent, TransactionHeaderRelationModule, TransactionInvoiceCheckOrder, TransactionInvoiceCheckOrderTileComponent, TransactionInvoiceCheckOrderTileModule, TransactionLineGridComponent, TransactionLineGridModule, TransactionLineSidePanelArticleDetailsComponent, TransactionLineSidePanelArticleDetailsModule, TransactionLineSidePanelReplenishmentArticleDetailsComponent, TransactionLineSidePanelReplenishmentArticleDetailsModule, TransactionLineStatusbarComponent, TransactionLineStatusbarModule, TransactionLinesComponent, TransactionLinesModule, TransactionMappingService, TransactionMarginComponent, TransactionMarginModule, TransactionModule, TransactionNotificationLineSelectionService, TransactionNumberLabelComponent, TransactionNumberLabelModule, TransactionPaymentConnectorService, TransactionPaymentService, TransactionQuickAccessComponent, TransactionQuickAccessModule, TransactionQuickAccessOrderConfirmationComponent, TransactionQuickAccessOrderConfirmationModule, TransactionQuickAccessPlanningComponent, TransactionQuickAccessPlanningModule, TransactionQuickAccessPlanningPopupComponent, TransactionQuickAccessReceivedGoodsComponent, TransactionQuickAccessReceivedGoodsModule, TransactionRelationConnectorService, TransactionRelationService, TransactionScreenConfigurationService, TransactionSearchComponent, TransactionSearchModule, TransactionSearchResultComponent, TransactionSearchResultModule, TransactionSearchService, TransactionSelectMultipleCacheService, TransactionSelectMultipleParameterizedCacheService, TransactionSelectSingleCacheService, TransactionSelectSingleParameterizedCacheService, TransactionService, TransactionSettings, TransactionSettingsOptions, TransactionSettingsService, TransactionStatusbarComponent, TransactionStatusbarModule, TransactionTagComponent, TransactionTagsComponent, TransactionTagsModule, TransactionTotalsComponent, TransactionTotalsModule, Version, VoucherCodePendingReasonDialogComponent, VoucherCodePendingReasonDialogModule, WarehouseCCTab };
17686
17690
  export type { AddArticleInterface, DeliveryMethod, InvoiceCheckOrderInterface, InvoiceCheckOrderLineInterface, TransactionButtonBarMappingConfig, TransactionCardMappingConfig, TransactionDialogMappingConfig, TransactionFilterMappingConfig, TransactionLineMappingConfig, TransactionQuickAccessMappingConfig, TransactionSearchMappingConfig, TransactionSidePanelMappingConfig, steps };
@@ -79,7 +79,8 @@
79
79
  align-items: baseline;
80
80
  flex-shrink: 0;
81
81
  position: relative;
82
- height: $tp-transaction-line-amount-height;
82
+ margin: $tp-transaction-line-buttons-margin;
83
+ gap: $tp-transaction-line-buttons-gap;
83
84
  .transaction-field-label {
84
85
  text-overflow: clip;
85
86
  overflow: visible;
@@ -88,6 +89,28 @@
88
89
  display: flex;
89
90
  flex-direction: column;
90
91
  }
92
+ .transaction-line-documents {
93
+ cursor: pointer;
94
+ .co-icon {
95
+ width: $tp-transaction-line-buttons-document-icon-size;
96
+ height: $tp-transaction-line-buttons-document-icon-size;
97
+ }
98
+ .transaction-line-documents-count {
99
+ position: absolute;
100
+ top: 0;
101
+ right: -3px;
102
+ background: $tp-transaction-line-buttons-document-count-background;
103
+ width: $tp-transaction-line-buttons-document-count-size;
104
+ height: $tp-transaction-line-buttons-document-count-size;
105
+ border-radius: 50%;
106
+ display: flex;
107
+ align-items: center;
108
+ justify-content: center;
109
+ font-size: $tp-transaction-line-buttons-document-count-font-size;
110
+ color: $tp-transaction-line-buttons-document-count-font-color;
111
+ line-height: normal;
112
+ }
113
+ }
91
114
  }
92
115
  .transaction-field-wrapper {
93
116
  flex: 1;
@@ -32,6 +32,13 @@ $tp-transaction-line-buttons-overview-background-color: #030D3C !default;
32
32
  $tp-transaction-line-buttons-overview-text-color: $tp-color-light !default;
33
33
  $tp-transaction-line-buttons-add-text-background-color: $tp-color-action !default;
34
34
  $tp-transaction-line-buttons-add-text-text-color: $tp-color-light !default;
35
+ $tp-transaction-line-buttons-margin: 2px 0 0 0 !default;
36
+ $tp-transaction-line-buttons-gap: 2px !default;
37
+ $tp-transaction-line-buttons-document-icon-size: 16px !default;
38
+ $tp-transaction-line-buttons-document-count-size: 10px !default;
39
+ $tp-transaction-line-buttons-document-count-background: #5fdcb3 !default;
40
+ $tp-transaction-line-buttons-document-count-font-size: 7px !default;
41
+ $tp-transaction-line-buttons-document-count-font-color: #ffffff !default;
35
42
  $tp-transaction-line-price-font-weight: bold !default;
36
43
  $tp-transaction-line-discount-background-color: $tp-default-background-accent !default;
37
44
  $tp-transaction-line-discount-color: $tp-color-active-light !default;
@@ -1,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
+ }
@@ -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";