mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
258 lines
6.8 KiB
JavaScript
258 lines
6.8 KiB
JavaScript
const frappe = require('frappejs');
|
|
const Observable = require('frappejs/utils/observable');
|
|
const model = require('./index');
|
|
|
|
module.exports = class BaseDocument extends Observable {
|
|
constructor(data) {
|
|
super();
|
|
this.fetchValues = {};
|
|
this.setup();
|
|
Object.assign(this, data);
|
|
}
|
|
|
|
setup() {
|
|
// add listeners
|
|
}
|
|
|
|
get meta() {
|
|
if (!this._meta) {
|
|
this._meta = frappe.getMeta(this.doctype);
|
|
}
|
|
return this._meta;
|
|
}
|
|
|
|
async getSettings() {
|
|
if (!this._settings) {
|
|
this._settings = await frappe.getSingle(this.meta.settings);
|
|
}
|
|
return this._settings;
|
|
}
|
|
|
|
get(fieldname) {
|
|
return this[fieldname];
|
|
}
|
|
|
|
// set value and trigger change
|
|
async set(fieldname, value) {
|
|
this[fieldname] = await this.validateField(fieldname, value);
|
|
await this.applyChange(fieldname);
|
|
}
|
|
|
|
async applyChange(fieldname) {
|
|
if (await this.applyFormula()) {
|
|
// multiple changes
|
|
await this.trigger('change', { doc: this });
|
|
} else {
|
|
// no other change, trigger control refresh
|
|
await this.trigger('change', { doc: this, fieldname: fieldname });
|
|
}
|
|
}
|
|
|
|
async setName() {
|
|
if (this.name) {
|
|
return;
|
|
}
|
|
|
|
// name === doctype for Single
|
|
if (this.meta.isSingle) {
|
|
this.name = this.meta.name;
|
|
return;
|
|
}
|
|
|
|
if (this.meta.settings) {
|
|
const numberSeries = (await this.getSettings()).numberSeries;
|
|
if(numberSeries) {
|
|
this.name = await model.getSeriesNext(numberSeries);
|
|
}
|
|
}
|
|
|
|
// assign a random name by default
|
|
// override this to set a name
|
|
if (!this.name) {
|
|
this.name = frappe.getRandomName();
|
|
}
|
|
}
|
|
|
|
setDefaults() {
|
|
for (let field of this.meta.fields) {
|
|
if (field.fieldtype === 'Date') {
|
|
this[field.fieldname] = (new Date()).toISOString().substr(0, 10);
|
|
} else if (!this[field.fieldname]) {
|
|
if(field.default) {
|
|
this[field.fieldname] = field.default;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
setKeywords() {
|
|
let keywords = [];
|
|
for (let fieldname of this.meta.getKeywordFields()) {
|
|
keywords.push(this[fieldname]);
|
|
}
|
|
this.keywords = keywords.join(', ');
|
|
}
|
|
|
|
append(key, document) {
|
|
if (!this[key]) {
|
|
this[key] = [];
|
|
}
|
|
this[key].push(this.initDoc(document));
|
|
}
|
|
|
|
initDoc(data) {
|
|
if (data.prototype instanceof Document) {
|
|
return data;
|
|
} else {
|
|
return new Document(data);
|
|
}
|
|
}
|
|
|
|
async validateField(key, value) {
|
|
let field = this.meta.getField(key);
|
|
if (field && field.fieldtype == 'Select') {
|
|
return this.meta.validateSelect(field, value);
|
|
}
|
|
return value;
|
|
}
|
|
|
|
getValidDict() {
|
|
let data = {};
|
|
for (let field of this.meta.getValidFields()) {
|
|
data[field.fieldname] = this[field.fieldname];
|
|
}
|
|
return data;
|
|
}
|
|
|
|
setStandardValues() {
|
|
let now = new Date();
|
|
if (this.docstatus === null || this.docstatus === undefined) {
|
|
this.docstatus = 0;
|
|
}
|
|
if (!this.owner) {
|
|
this.owner = frappe.session.user;
|
|
this.creation = now;
|
|
}
|
|
this.modified_by = frappe.session.user;
|
|
this.modified = now;
|
|
}
|
|
|
|
async load() {
|
|
let data = await frappe.db.get(this.doctype, this.name);
|
|
if (data.name) {
|
|
this.syncValues(data);
|
|
} else {
|
|
throw new frappe.errors.NotFound(`Not Found: ${this.doctype} ${this.name}`);
|
|
}
|
|
}
|
|
|
|
syncValues(data) {
|
|
this.clearValues();
|
|
Object.assign(this, data);
|
|
}
|
|
|
|
clearValues() {
|
|
for (let field of this.meta.getValidFields()) {
|
|
if(this[field.fieldname]) {
|
|
delete this[field.fieldname];
|
|
}
|
|
}
|
|
}
|
|
|
|
setChildIdx() {
|
|
// renumber children
|
|
for (let field of this.meta.getValidFields()) {
|
|
if (field.fieldtype==='Table') {
|
|
for(let i=0; i < (this[field.fieldname] || []).length; i++) {
|
|
this[field.fieldname][i].idx = i;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
async applyFormula() {
|
|
if (!this.meta.hasFormula()) {
|
|
return false;
|
|
}
|
|
|
|
let doc = this;
|
|
|
|
// children
|
|
for (let tablefield of this.meta.getTableFields()) {
|
|
let formulaFields = frappe.getMeta(tablefield.childtype).getFormulaFields();
|
|
if (formulaFields.length) {
|
|
|
|
// for each row
|
|
for (let row of this[tablefield.fieldname]) {
|
|
for (let field of formulaFields) {
|
|
row[field.fieldname] = await field.formula(row, doc);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// parent
|
|
for (let field of this.meta.getFormulaFields()) {
|
|
doc[field.fieldname] = await field.formula(doc);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
async commit() {
|
|
// re-run triggers
|
|
await this.setName();
|
|
this.setStandardValues();
|
|
this.setKeywords();
|
|
this.setChildIdx();
|
|
await this.applyFormula();
|
|
await this.trigger('validate');
|
|
}
|
|
|
|
async insert() {
|
|
await this.commit();
|
|
await this.trigger('before_insert');
|
|
this.syncValues(await frappe.db.insert(this.doctype, this.getValidDict()));
|
|
await this.trigger('after_insert');
|
|
await this.trigger('after_save');
|
|
|
|
return this;
|
|
}
|
|
|
|
async update() {
|
|
await this.commit();
|
|
await this.trigger('before_update');
|
|
this.syncValues(await frappe.db.update(this.doctype, this.getValidDict()));
|
|
await this.trigger('after_update');
|
|
await this.trigger('after_save');
|
|
|
|
return this;
|
|
}
|
|
|
|
async delete() {
|
|
await this.trigger('before_delete');
|
|
await frappe.db.delete(this.doctype, this.name);
|
|
await this.trigger('after_delete');
|
|
}
|
|
|
|
async trigger(event, params) {
|
|
if (this[event]) {
|
|
await this[event](params);
|
|
}
|
|
await super.trigger(event, params);
|
|
}
|
|
|
|
// helper functions
|
|
getSum(tablefield, childfield) {
|
|
return this[tablefield].map(d => (d[childfield] || 0)).reduce((a, b) => a + b, 0);
|
|
}
|
|
|
|
async getFrom(doctype, name, fieldname) {
|
|
if (!name) return '';
|
|
let key = `${doctype}:${name}:${fieldname}`;
|
|
if (!this.fetchValues[key]) {
|
|
this.fetchValues[key] = await frappe.db.getValue(doctype, name, fieldname);
|
|
}
|
|
return this.fetchValues[key];
|
|
}
|
|
}; |