mirror of
https://github.com/frappe/books.git
synced 2024-11-13 00:46:28 +00:00
9 lines
257 B
TypeScript
9 lines
257 B
TypeScript
import Doc from 'frappe/model/doc';
|
|
import { ListViewSettings } from 'frappe/model/types';
|
|
|
|
export class AccountingLedgerEntry extends Doc {
|
|
static listSettings: ListViewSettings = {
|
|
columns: ['account', 'party', 'debit', 'credit', 'balance'],
|
|
};
|
|
}
|