@colijnit/transaction 261.20.13 → 261.20.15

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 (17) hide show
  1. package/fesm2022/colijnit-transaction.mjs +4491 -4261
  2. package/fesm2022/colijnit-transaction.mjs.map +1 -1
  3. package/index.d.ts +66 -42
  4. package/lib/component/transaction-line-interbranch-receive-goods/style/_layout.scss +78 -78
  5. package/lib/component/transaction-line-interbranch-receive-goods/style/_material-definition.scss +2 -2
  6. package/lib/component/transaction-line-interbranch-receive-goods/style/_theme.scss +4 -4
  7. package/lib/component/transaction-line-interbranch-receive-goods/style/material.scss +4 -4
  8. package/lib/component/transaction-line-purchase-receive-goods/style/_layout.scss +5 -0
  9. package/lib/component/transaction-print-package-sticker/style/_layout.scss +2 -2
  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/package.json +5 -5
package/index.d.ts CHANGED
@@ -2144,6 +2144,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
2144
2144
  applicationUser: boolean;
2145
2145
  invoiceAddressSameAsDelivery: boolean;
2146
2146
  afterSalesSystemParam: boolean;
2147
+ canChangeRelationParam: boolean;
2147
2148
  canChangeSalesOrderWhenFullyInvoiced: boolean;
2148
2149
  invalidTransaction: boolean;
2149
2150
  headerReadonly: boolean;
@@ -2229,6 +2230,7 @@ declare class TransactionBaseService extends BaseModuleService implements OnDest
2229
2230
  prepareJsPickingListInternalParam(): Promise<void>;
2230
2231
  prepareManualSaveInternalParam(): void;
2231
2232
  prepareAfterSalesSystemParam(): Promise<void>;
2233
+ prepareCanChangeRelationParam(): Promise<void>;
2232
2234
  prepareCanChangeSalesOrderWhenFullyInvoicedParam(): Promise<void>;
2233
2235
  logisticsButtonVisible: () => Promise<boolean>;
2234
2236
  prepareDropShipmentInternalParam(): void;
@@ -2793,9 +2795,50 @@ declare class RelationSuggestionsService implements OnDestroy {
2793
2795
  static ɵprov: i0.ɵɵInjectableDeclaration<RelationSuggestionsService>;
2794
2796
  }
2795
2797
 
2798
+ declare class PaymentViewmodel {
2799
+ payment: PaymentMethod;
2800
+ image: string;
2801
+ constructor(method: PaymentMethod);
2802
+ }
2803
+
2804
+ declare class TransactionPaymentConnectorService implements OnDestroy {
2805
+ private _adapterService;
2806
+ private _selectMultipleCacheService;
2807
+ private _selectMultipleParameterizedCacheService;
2808
+ private _transactionService;
2809
+ private _transactionEventService;
2810
+ readonly transKind: typeof TransactionKind;
2811
+ amountPaid: number;
2812
+ private _subs;
2813
+ constructor(_adapterService: TransactionConnectorAdapterService, _selectMultipleCacheService: TransactionSelectMultipleCacheService, _selectMultipleParameterizedCacheService: TransactionSelectMultipleParameterizedCacheService, _transactionService: TransactionService, _transactionEventService: TransactionEventService);
2814
+ ngOnDestroy(): void;
2815
+ createIonePaymentLinkAndQRCode(uuid: string, amount: number, paymentMethodCode: string): Promise<CreatePaymentLinkResult>;
2816
+ doPayment(doPaymentRequest: DoPaymentRequest): Promise<string>;
2817
+ getPaymentLinkStatus(paymentLinkUUID: string): Promise<PaymentLinkStatus>;
2818
+ getPspTransactionStatus(pspTransactionUuid: string): Promise<PspTransactionStatus>;
2819
+ getDepositPaymentInfo(uuid: string): Promise<TransactionDepositPaymentInfo>;
2820
+ getOutstandingCustomerAmounts(request: OutstandingAmountFilterCustomer): Promise<OutstandingAmountCustomer[]>;
2821
+ getSalesOrderPaymentAnalysis(request: OrderPaymentAnalysisFilter): Promise<OrderPaymentAnalysis[]>;
2822
+ getPaymentAnalysis(uuid: string): Promise<PaymentAnalysis>;
2823
+ getRegisteredPaymentInfo(uuid: string): Promise<TransactionRegisteredPaymentInfo>;
2824
+ calculateAmountToPay(calculateAmountToPayRequest: CalculateAmountToPayRequest): Promise<AmountToPay>;
2825
+ calculateAmountToPayWithLineSelection(calculateAmountToPayRequest: CalculateAmountToPayRequest): Promise<AmountToPay>;
2826
+ getPaymentMethodsForSalesOrder(branchNr: string): Promise<PaymentMethod[]>;
2827
+ getPaymentMethodsForCashRegister(branchNr: string): Promise<PaymentMethod[]>;
2828
+ processPosTransactionByUuid(uuid: string): Promise<boolean>;
2829
+ openDrawer(printerName: string): Promise<boolean>;
2830
+ getPaymentMethodsViewModels(branchNr: string, transactionKind?: TransactionKind): Promise<PaymentViewmodel[]>;
2831
+ getPaymentMethodsViewModelsForSalesOrCashDeskOrder(cashRegisterGroupId: number, transactionKind?: TransactionKind): Promise<PaymentViewmodel[]>;
2832
+ getPaymentMethodsByCashRegisterGroupForSalesOrder(cashRegisterGroupId: number): Promise<PaymentMethod[]>;
2833
+ getPaymentMethodsByCashRegisterGroupForCashRegister(cashRegisterGroupId: number): Promise<PaymentMethod[]>;
2834
+ static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPaymentConnectorService, never>;
2835
+ static ɵprov: i0.ɵɵInjectableDeclaration<TransactionPaymentConnectorService>;
2836
+ }
2837
+
2796
2838
  declare class TransactionHeaderService {
2797
2839
  private _transactionService;
2798
2840
  private _relationService;
2841
+ private _transactionPaymentConnectorService;
2799
2842
  private _dictionaryService;
2800
2843
  private _transactionEventService;
2801
2844
  transactionKind: TransactionKind;
@@ -2813,7 +2856,12 @@ declare class TransactionHeaderService {
2813
2856
  showingMargins: boolean;
2814
2857
  orderLineSets: OrderLineSetInfo[];
2815
2858
  fullyInvoiced: boolean;
2859
+ partiallyOrFullyInvoiced: boolean;
2816
2860
  fullyDelivered: boolean;
2861
+ partiallyOrFullyOrdered: boolean;
2862
+ partiallyOrFullyInvoiceControl: boolean;
2863
+ partiallyOrFullyReceived: boolean;
2864
+ partiallyOrFullyReceivedNotProcessed: boolean;
2817
2865
  headerTooltipMessages: string[];
2818
2866
  isService: boolean;
2819
2867
  isPurchaseOrder: boolean;
@@ -2840,7 +2888,8 @@ declare class TransactionHeaderService {
2840
2888
  private _transactionInfo;
2841
2889
  private _relation;
2842
2890
  private _readOnly;
2843
- constructor(_transactionService: TransactionService, _relationService: TransactionRelationService, _dictionaryService: DictionaryService, _transactionEventService: TransactionEventService);
2891
+ constructor(_transactionService: TransactionService, _relationService: TransactionRelationService, _transactionPaymentConnectorService: TransactionPaymentConnectorService, _dictionaryService: DictionaryService, _transactionEventService: TransactionEventService);
2892
+ canAlterRelationForTransaction(): boolean;
2844
2893
  getTransactionMargeInfoList(): Promise<void>;
2845
2894
  createCloneRelation(): void;
2846
2895
  getPlanOrder(): Promise<PlanOrder>;
@@ -3021,46 +3070,6 @@ declare class StepperStepComponent {
3021
3070
  static ɵcmp: i0.ɵɵComponentDeclaration<StepperStepComponent, "co-stepper-step", never, { "index": { "alias": "index"; "required": false; }; "label": { "alias": "label"; "required": false; }; "completed": { "alias": "completed"; "required": false; }; "show": { "alias": "show"; "required": false; }; }, { "validateStep": "validateStep"; }, never, ["*"], false, never>;
3022
3071
  }
3023
3072
 
3024
- declare class PaymentViewmodel {
3025
- payment: PaymentMethod;
3026
- image: string;
3027
- constructor(method: PaymentMethod);
3028
- }
3029
-
3030
- declare class TransactionPaymentConnectorService implements OnDestroy {
3031
- private _adapterService;
3032
- private _selectMultipleCacheService;
3033
- private _selectMultipleParameterizedCacheService;
3034
- private _transactionService;
3035
- private _transactionEventService;
3036
- readonly transKind: typeof TransactionKind;
3037
- amountPaid: number;
3038
- private _subs;
3039
- constructor(_adapterService: TransactionConnectorAdapterService, _selectMultipleCacheService: TransactionSelectMultipleCacheService, _selectMultipleParameterizedCacheService: TransactionSelectMultipleParameterizedCacheService, _transactionService: TransactionService, _transactionEventService: TransactionEventService);
3040
- ngOnDestroy(): void;
3041
- createIonePaymentLinkAndQRCode(uuid: string, amount: number, paymentMethodCode: string): Promise<CreatePaymentLinkResult>;
3042
- doPayment(doPaymentRequest: DoPaymentRequest): Promise<string>;
3043
- getPaymentLinkStatus(paymentLinkUUID: string): Promise<PaymentLinkStatus>;
3044
- getPspTransactionStatus(pspTransactionUuid: string): Promise<PspTransactionStatus>;
3045
- getDepositPaymentInfo(uuid: string): Promise<TransactionDepositPaymentInfo>;
3046
- getOutstandingCustomerAmounts(request: OutstandingAmountFilterCustomer): Promise<OutstandingAmountCustomer[]>;
3047
- getSalesOrderPaymentAnalysis(request: OrderPaymentAnalysisFilter): Promise<OrderPaymentAnalysis[]>;
3048
- getPaymentAnalysis(uuid: string): Promise<PaymentAnalysis>;
3049
- getRegisteredPaymentInfo(uuid: string): Promise<TransactionRegisteredPaymentInfo>;
3050
- calculateAmountToPay(calculateAmountToPayRequest: CalculateAmountToPayRequest): Promise<AmountToPay>;
3051
- calculateAmountToPayWithLineSelection(calculateAmountToPayRequest: CalculateAmountToPayRequest): Promise<AmountToPay>;
3052
- getPaymentMethodsForSalesOrder(branchNr: string): Promise<PaymentMethod[]>;
3053
- getPaymentMethodsForCashRegister(branchNr: string): Promise<PaymentMethod[]>;
3054
- processPosTransactionByUuid(uuid: string): Promise<boolean>;
3055
- openDrawer(printerName: string): Promise<boolean>;
3056
- getPaymentMethodsViewModels(branchNr: string, transactionKind?: TransactionKind): Promise<PaymentViewmodel[]>;
3057
- getPaymentMethodsViewModelsForSalesOrCashDeskOrder(cashRegisterGroupId: number, transactionKind?: TransactionKind): Promise<PaymentViewmodel[]>;
3058
- getPaymentMethodsByCashRegisterGroupForSalesOrder(cashRegisterGroupId: number): Promise<PaymentMethod[]>;
3059
- getPaymentMethodsByCashRegisterGroupForCashRegister(cashRegisterGroupId: number): Promise<PaymentMethod[]>;
3060
- static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPaymentConnectorService, never>;
3061
- static ɵprov: i0.ɵɵInjectableDeclaration<TransactionPaymentConnectorService>;
3062
- }
3063
-
3064
3073
  declare class TransactionPaymentService implements OnDestroy {
3065
3074
  private _transactionEventService;
3066
3075
  private _paymentConnectorService;
@@ -6750,6 +6759,7 @@ declare abstract class TransactionReceiveGoodsLineBaseComponent extends Transact
6750
6759
  warehouseLocationButtonDisabled: boolean;
6751
6760
  showCheckboxForLine: boolean;
6752
6761
  returnStockMode: boolean;
6762
+ calculatedStickerAmount: number;
6753
6763
  private _subscriptions;
6754
6764
  ngOnInit(): Promise<void>;
6755
6765
  ngOnDestroy(): void;
@@ -6766,6 +6776,7 @@ declare class TransactionReceiveGoodsLineComponent extends TransactionReceiveGoo
6766
6776
  showClass(): boolean;
6767
6777
  statusBarConfigNames: StatusBarCfgNames;
6768
6778
  changeNrPackagesNotAllowed(): boolean;
6779
+ changeAmountPerUnitNotAllowed(): boolean;
6769
6780
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionReceiveGoodsLineComponent, never>;
6770
6781
  static ɵcmp: i0.ɵɵComponentDeclaration<TransactionReceiveGoodsLineComponent, "co-transaction-receive-goods-line", never, {}, {}, never, never, false, never>;
6771
6782
  }
@@ -7201,6 +7212,7 @@ declare class TransactionPurchaseOrderStickersLineComponent extends TransactionP
7201
7212
  showClass(): boolean;
7202
7213
  statusBarConfigNames: StatusBarCfgNames;
7203
7214
  changeNrPackagesNotAllowed(): boolean;
7215
+ changeAmountPerUnitNotAllowed(): boolean;
7204
7216
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionPurchaseOrderStickersLineComponent, never>;
7205
7217
  static ɵcmp: i0.ɵɵComponentDeclaration<TransactionPurchaseOrderStickersLineComponent, "co-transaction-purchase-order-stickers-line", never, {}, {}, never, never, false, never>;
7206
7218
  }
@@ -7857,6 +7869,7 @@ declare class TransactionLinePurchaseReceiveGoodsComponent extends TransactionLi
7857
7869
  availableStockCollection: AvailableStock[];
7858
7870
  warehouseLocationButtonDisabled: boolean;
7859
7871
  quantityToReceive: number;
7872
+ calculatedStickerAmount: number;
7860
7873
  private _subs;
7861
7874
  private _defaultReportId;
7862
7875
  constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _formMaster: FormMasterService);
@@ -7868,8 +7881,10 @@ declare class TransactionLinePurchaseReceiveGoodsComponent extends TransactionLi
7868
7881
  handleSaveDetailsEdit(): void;
7869
7882
  handleDeleteSelectedRow(row: LogisticalStateDetail): Promise<void>;
7870
7883
  handleSelectStock(availableStock: AvailableStock): void;
7884
+ handleAmountToReceiveChanged(): void;
7871
7885
  calcStickerAmount(): void;
7872
7886
  changeNrPackagesNotAllowed(): boolean;
7887
+ changeAmountPerUnitNotAllowed(): boolean;
7873
7888
  protected transactionLineSet(): void;
7874
7889
  private _handleTransactionLineSet;
7875
7890
  private _getAvailableStock;
@@ -11302,6 +11317,7 @@ declare class TransactionLineInterbranchReceiveGoodsComponent extends Transactio
11302
11317
  availableStockCollection: AvailableStock[];
11303
11318
  warehouseLocationButtonDisabled: boolean;
11304
11319
  quantityToReceive: number;
11320
+ calculatedStickerAmount: number;
11305
11321
  private _subs;
11306
11322
  private _defaultReportId;
11307
11323
  constructor(transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef, _formMaster: FormMasterService);
@@ -11312,8 +11328,10 @@ declare class TransactionLineInterbranchReceiveGoodsComponent extends Transactio
11312
11328
  getGoodsReceiptHistory(): Promise<void>;
11313
11329
  handleSaveDetailsEdit(): void;
11314
11330
  handleSelectStock(availableStock: AvailableStock): void;
11331
+ handleAmountToReceiveChanged(): void;
11315
11332
  calcStickerAmount(): void;
11316
11333
  changeNrPackagesNotAllowed(): boolean;
11334
+ changeAmountPerUnitNotAllowed(): boolean;
11317
11335
  protected transactionLineSet(): void;
11318
11336
  private _handleTransactionLineSet;
11319
11337
  private _getAvailableStock;
@@ -11942,6 +11960,7 @@ declare class TransactionHeaderBlockComponent {
11942
11960
  secondBlockTemplate: TemplateRef<any>;
11943
11961
  thirdBlockTemplate: TemplateRef<any>;
11944
11962
  hiddenBlockTemplate: TemplateRef<any>;
11963
+ dontShowEditIcon: boolean;
11945
11964
  headerClick: EventEmitter<MouseEvent>;
11946
11965
  showClass(): boolean;
11947
11966
  handleHostClick(event: MouseEvent): void;
@@ -11949,7 +11968,7 @@ declare class TransactionHeaderBlockComponent {
11949
11968
  constructor(iconCacheService: IconCacheService);
11950
11969
  onHeaderClick(event: MouseEvent): void;
11951
11970
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionHeaderBlockComponent, never>;
11952
- static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderBlockComponent, "co-transaction-header-block", never, { "headerBlockTemplate": { "alias": "headerBlockTemplate"; "required": false; }; "firstBlockTemplate": { "alias": "firstBlockTemplate"; "required": false; }; "secondBlockTemplate": { "alias": "secondBlockTemplate"; "required": false; }; "thirdBlockTemplate": { "alias": "thirdBlockTemplate"; "required": false; }; "hiddenBlockTemplate": { "alias": "hiddenBlockTemplate"; "required": false; }; }, { "headerClick": "headerClick"; }, never, never, false, never>;
11971
+ static ɵcmp: i0.ɵɵComponentDeclaration<TransactionHeaderBlockComponent, "co-transaction-header-block", never, { "headerBlockTemplate": { "alias": "headerBlockTemplate"; "required": false; }; "firstBlockTemplate": { "alias": "firstBlockTemplate"; "required": false; }; "secondBlockTemplate": { "alias": "secondBlockTemplate"; "required": false; }; "thirdBlockTemplate": { "alias": "thirdBlockTemplate"; "required": false; }; "hiddenBlockTemplate": { "alias": "hiddenBlockTemplate"; "required": false; }; "dontShowEditIcon": { "alias": "dontShowEditIcon"; "required": false; }; }, { "headerClick": "headerClick"; }, never, never, false, never>;
11953
11972
  }
11954
11973
 
11955
11974
  declare class TransactionHeaderBlockModule {
@@ -12175,6 +12194,8 @@ declare class TransactionHeaderPopupRelationComponent extends TransactionHeaderP
12175
12194
  mainItems: ElementRef;
12176
12195
  preferenceItems: ElementRef;
12177
12196
  showClass(): boolean;
12197
+ set readonly(value: boolean);
12198
+ get readonly(): boolean;
12178
12199
  deliveryAddressNawNr: number;
12179
12200
  invoiceAddressNawNr: number;
12180
12201
  canChangeRelationParam: boolean;
@@ -13450,6 +13471,8 @@ declare class TransactionHeaderRelationComponent extends TransactionHeaderBaseCo
13450
13471
  typeOfCustomerFullObject(relation: Relation): boolean;
13451
13472
  get relationAsCustomer(): CustomerFullObject;
13452
13473
  contactPersonForId(relationId: number): RelationContactLink;
13474
+ determineDontAllowPopup(): boolean;
13475
+ handleHeaderClick(): void;
13453
13476
  protected relationSet(): void;
13454
13477
  protected transactionInfoSet(): void;
13455
13478
  private _setRelationAddress;
@@ -14854,6 +14877,7 @@ declare class TransactionCardPurchaseOrderStickersComponent extends TransactionP
14854
14877
  showClass(): boolean;
14855
14878
  statusBarConfigNames: StatusBarCfgNames;
14856
14879
  changeNrPackagesNotAllowed(): boolean;
14880
+ changeAmountPerUnitNotAllowed(): boolean;
14857
14881
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCardPurchaseOrderStickersComponent, never>;
14858
14882
  static ɵcmp: i0.ɵɵComponentDeclaration<TransactionCardPurchaseOrderStickersComponent, "co-transaction-card-purchase-order-stickers", never, {}, {}, never, never, false, never>;
14859
14883
  }
@@ -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,5 +1,10 @@
1
1
  @include export-module('co-transaction-line-purchase-receive-goods-layout') {
2
2
  .co-transaction-line-purchase-receive-goods {
3
+ .full-width-field {
4
+ max-width: 100%;
5
+ width: 425px;
6
+ }
7
+
3
8
  .columns-wrapper {
4
9
  display: flex;
5
10
  }
@@ -1,7 +1,7 @@
1
1
  @include export-module('cc-transaction-print-package-sticker-layout') {
2
2
  .co-transaction-print-package-sticker {
3
-
4
- co-input-number-picker {
3
+ max-width: 90px;
4
+ co-input-text {
5
5
  height: 100%;
6
6
  co-icon {
7
7
  width: 17px;
@@ -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";