2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00

feat: doc.push for adding children without change

This commit is contained in:
Faris Ansari 2019-12-20 11:56:52 +05:30
parent 75184d43c3
commit 6b596a4021

View File

@ -24,7 +24,7 @@ module.exports = class BaseDocument extends Observable {
this[fieldname] = value;
} else if (Array.isArray(value)) {
for (let row of value) {
this.append(fieldname, row);
this.push(fieldname, row);
}
} else {
this[fieldname] = value;
@ -146,12 +146,18 @@ module.exports = class BaseDocument extends Observable {
}
append(key, document = {}) {
// push child row and trigger change
this.push(key, document);
this._dirty = true;
this.applyChange(key);
}
push(key, document = {}) {
// push child row without triggering change
if (!this[key]) {
this[key] = [];
}
this[key].push(this._initChild(document, key));
this._dirty = true;
this.applyChange(key);
}
_initChild(data, key) {