mirror of
https://github.com/frappe/books.git
synced 2026-08-24 10:04:45 -05:00
17 lines
406 B
TypeScript
17 lines
406 B
TypeScript
import { Doc } from 'fyo/model/doc';
|
|
import { ListViewSettings } from 'fyo/model/types';
|
|
|
|
export class ItemEnquiry extends Doc {
|
|
item?: string;
|
|
customer?: string;
|
|
contact?: string;
|
|
description?: string;
|
|
similarProduct?: string;
|
|
|
|
static override getListViewSettings(): ListViewSettings {
|
|
return {
|
|
columns: ['item', 'customer', 'contact', 'description', 'similarProduct'],
|
|
};
|
|
}
|
|
}
|