2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00
books/client/desk/listpage.js
2018-02-08 12:16:38 +05:30

17 lines
405 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.getMeta(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();
});
}
}