mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
feat: inventory valuation csv and xlsx export (#308)
* feat: inventory valuation csv and xlsx export * feat(server): inventory valuation sheet exporting * feat(webapp): inventory valuation sheet dyanmic columns * feat: inventory valuation dynamic columns * feat: inventory valuation TS types
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import { INumberFormatQuery } from './FinancialStatements';
|
||||
import { IFinancialTable } from './Table';
|
||||
|
||||
export interface IInventoryValuationReportQuery {
|
||||
asDate: Date | string;
|
||||
@@ -39,9 +40,19 @@ export interface IInventoryValuationTotal {
|
||||
quantityFormatted: string;
|
||||
}
|
||||
|
||||
export type IInventoryValuationStatement =
|
||||
| {
|
||||
items: IInventoryValuationItem[];
|
||||
total: IInventoryValuationTotal;
|
||||
}
|
||||
| {};
|
||||
export type IInventoryValuationStatement = {
|
||||
items: IInventoryValuationItem[];
|
||||
total: IInventoryValuationTotal;
|
||||
};
|
||||
export type IInventoryValuationSheetData = IInventoryValuationStatement;
|
||||
|
||||
export interface IInventoryValuationSheet {
|
||||
data: IInventoryValuationStatement;
|
||||
meta: IInventoryValuationSheetMeta;
|
||||
query: IInventoryValuationReportQuery;
|
||||
}
|
||||
|
||||
export interface IInventoryValuationTable extends IFinancialTable {
|
||||
meta: IInventoryValuationSheetMeta;
|
||||
query: IInventoryValuationReportQuery;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user