2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/README.md
2018-01-01 15:15:01 +05:30

412 B

Frappe Core

Core libs for Frappe Framework JS

Examples

const frappe = require('frappe-core);

# init database
frappe.init();

# make a new todo
let todo = frappe.get_doc({doctype: 'ToDo', subject: 'something'})
todo.insert()

# get all todos
let total_open = 0;
for (let d of frappe.get_all('ToDo')) {
	todo = frappe.get_doc('ToDo', d.name);
	if (todo.status == 'Open') total_open += 1;
}