mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
feat: aggregate rows on import feature
This commit is contained in:
@@ -7,12 +7,19 @@ import React, {
|
||||
useState,
|
||||
} from 'react';
|
||||
|
||||
export type EntityColumn = {
|
||||
export type EntityColumnField = {
|
||||
key: string;
|
||||
name: string;
|
||||
required?: boolean;
|
||||
hint?: string;
|
||||
group?: string;
|
||||
};
|
||||
|
||||
export interface EntityColumn {
|
||||
groupKey: string;
|
||||
groupName: string;
|
||||
fields: EntityColumnField[];
|
||||
}
|
||||
export type SheetColumn = string;
|
||||
export type SheetMap = { from: string; to: string };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user