mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
111 lines
2.1 KiB
JavaScript
111 lines
2.1 KiB
JavaScript
const Document = require('./document').Document;
|
|
const frappe = require('frappe-core');
|
|
|
|
class Meta extends Document {
|
|
constructor(data) {
|
|
super(data);
|
|
this.event_handlers = {};
|
|
this.list_options = {
|
|
fields: ['name', 'modified']
|
|
};
|
|
if (this.setup_meta) {
|
|
this.setup_meta();
|
|
}
|
|
}
|
|
|
|
get_field(fieldname) {
|
|
if (!this.field_map) {
|
|
this.field_map = {};
|
|
for (let df of this.fields) {
|
|
this.field_map[df.fieldname] = df;
|
|
}
|
|
}
|
|
return this.field_map[fieldname];
|
|
}
|
|
|
|
on(key, fn) {
|
|
if (!this.event_handlers[key]) {
|
|
this.event_handlers[key] = [];
|
|
}
|
|
this.event_handlers[key].push(fn);
|
|
}
|
|
|
|
async set(fieldname, value) {
|
|
this[fieldname] = value;
|
|
await this.trigger(fieldname);
|
|
}
|
|
|
|
get(fieldname) {
|
|
return this[fieldname];
|
|
}
|
|
|
|
get_valid_fields() {
|
|
if (!this._valid_fields) {
|
|
this._valid_fields = [];
|
|
|
|
// standard fields
|
|
for (let df of frappe.model.standard_fields) {
|
|
this._valid_fields.push(df);
|
|
}
|
|
|
|
// parent fields
|
|
if (this.istable) {
|
|
for (let df of frappe.model.child_fields) {
|
|
this._valid_fields.push(df);
|
|
}
|
|
}
|
|
|
|
// doctype fields
|
|
for (let df of this.fields) {
|
|
if (frappe.db.type_map[df.fieldtype]) {
|
|
this._valid_fields.push(df);
|
|
}
|
|
}
|
|
}
|
|
|
|
return this._valid_fields;
|
|
}
|
|
|
|
validate_select(df, value) {
|
|
let options = df.options;
|
|
if (typeof options === 'string') {
|
|
// values given as string
|
|
options = df.options.split('\n');
|
|
}
|
|
if (!options.includes(value)) {
|
|
throw new frappe.ValueError(`${value} must be one of ${options.join(", ")}`);
|
|
}
|
|
}
|
|
|
|
async trigger(key, event = {}) {
|
|
|
|
Object.assign(event, {
|
|
doc: this,
|
|
name: key
|
|
});
|
|
|
|
if (this.event_handlers[key]) {
|
|
for (var handler of this.event_handlers[key]) {
|
|
await handler(event);
|
|
}
|
|
}
|
|
}
|
|
|
|
// collections
|
|
async get_list({start, limit=20, filters}) {
|
|
return await frappe.db.get_all({
|
|
doctype: this.name,
|
|
fields: this.list_options.fields,
|
|
filters: filters,
|
|
start: start,
|
|
limit: limit
|
|
});
|
|
}
|
|
|
|
get_row_html(data) {
|
|
return `<a href="/view/${this.name}/${data.name}">${data.name}</a>`;
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = { Meta: Meta } |