stores: move values store files in folder

This commit is contained in:
Chika 2022-04-29 22:06:52 +03:00
parent b95bc3eaa4
commit bdd84c7e59
2 changed files with 12 additions and 4 deletions

View File

@ -1,5 +1,5 @@
import { makeAutoObservable } from 'mobx';
import { RootStore } from '../root';
import { RootStore } from '../../root';
import { Values } from './types';
export type CalculationValues = Partial<Record<Values, any>>;

View File

@ -118,6 +118,11 @@ export type Values =
| 'subsidySum'
| 'fuelCard'
| 'minPriceChange'
| 'leaseObjectPriceWthtVAT'
| 'VATInLeaseObjectPrice'
| 'engineHours'
/** Result Values */
| 'resultTotalGraphwithNDS'
| 'resultPlPrice'
| 'resultPriceUpPr'
@ -136,6 +141,9 @@ export type Values =
| 'resultBonusDopProd'
| 'resultBonusSafeFinance'
| 'resultFirstPaymentRiskPolicy'
| 'leaseObjectPriceWthtVAT'
| 'VATInLeaseObjectPrice'
| 'engineHours';
/** Link Values */
| 'kpUrl'
| 'leadUrl'
| 'opportunityUrl'
| 'quoteUrl';