mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
add server to monorepo.
This commit is contained in:
44
packages/server/src/interfaces/FinancialStatements.ts
Normal file
44
packages/server/src/interfaces/FinancialStatements.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
export interface INumberFormatQuery {
|
||||
precision: number;
|
||||
divideOn1000: boolean;
|
||||
showZero: boolean;
|
||||
formatMoney: 'total' | 'always' | 'none';
|
||||
negativeFormat: 'parentheses' | 'mines';
|
||||
}
|
||||
|
||||
export interface IFormatNumberSettings {
|
||||
precision?: number;
|
||||
divideOn1000?: boolean;
|
||||
excerptZero?: boolean;
|
||||
negativeFormat?: 'parentheses' | 'mines';
|
||||
thousand?: string;
|
||||
decimal?: string;
|
||||
zeroSign?: string;
|
||||
currencyCode?: string;
|
||||
money?: boolean;
|
||||
}
|
||||
|
||||
export enum ReportsAction {
|
||||
READ_BALANCE_SHEET = 'read-balance-sheet',
|
||||
READ_TRIAL_BALANCE_SHEET = 'read-trial-balance-sheet',
|
||||
READ_PROFIT_LOSS = 'read-profit-loss',
|
||||
READ_JOURNAL = 'read-journal',
|
||||
READ_GENERAL_LEDGET = 'read-general-ledger',
|
||||
READ_CASHFLOW = 'read-cashflow',
|
||||
READ_AR_AGING_SUMMARY = 'read-ar-aging-summary',
|
||||
READ_AP_AGING_SUMMARY = 'read-ap-aging-summary',
|
||||
READ_PURCHASES_BY_ITEMS = 'read-purchases-by-items',
|
||||
READ_SALES_BY_ITEMS = 'read-sales-by-items',
|
||||
READ_CUSTOMERS_TRANSACTIONS = 'read-customers-transactions',
|
||||
READ_VENDORS_TRANSACTIONS = 'read-vendors-transactions',
|
||||
READ_CUSTOMERS_SUMMARY_BALANCE = 'read-customers-summary-balance',
|
||||
READ_VENDORS_SUMMARY_BALANCE = 'read-vendors-summary-balance',
|
||||
READ_INVENTORY_VALUATION_SUMMARY = 'read-inventory-valuation-summary',
|
||||
READ_INVENTORY_ITEM_DETAILS = 'read-inventory-item-details',
|
||||
READ_CASHFLOW_ACCOUNT_TRANSACTION = 'read-cashflow-account-transactions',
|
||||
READ_PROJECT_PROFITABILITY_SUMMARY = 'read-project-profitability-summary',
|
||||
}
|
||||
|
||||
export interface IFinancialSheetBranchesQuery {
|
||||
branchesIds?: number[];
|
||||
}
|
||||
Reference in New Issue
Block a user