mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +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'],
|
||
|
};
|
||
|
}
|