mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
17 lines
406 B
JavaScript
17 lines
406 B
JavaScript
const Page = require('frappejs/client/view/page');
|
|
const view = require('frappejs/client/view');
|
|
|
|
module.exports = class FormPage extends Page {
|
|
constructor(doctype) {
|
|
let meta = frappe.get_meta(doctype);
|
|
super(`List ${meta.name}`);
|
|
this.list = new (view.get_list_class(doctype))({
|
|
doctype: doctype,
|
|
parent: this.body
|
|
});
|
|
this.on('show', async () => {
|
|
await this.list.run();
|
|
});
|
|
}
|
|
}
|