2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/docs/models/formula.md

65 lines
1.3 KiB
Markdown
Raw Normal View History

2018-02-22 07:36:28 +00:00
# Formula
Formulas are dynamic document properties that can be set on the fields
Forumlas are defined as javascript functions and are called whenever any property of the document is updated using the `set` method, or just before inserting or updating the document.
### Example
```js
module.exports = {
name: "FormulaExample"
fields: [
{
fieldtype: "Float",
fieldname: "a"
},
{
fieldtype: "Float",
fieldname: "b"
}
{
fieldtype: "Float",
fieldname: "c",
formula: doc => doc.a + doc.b
}
]
}
```
## Formula on child tables
In child tables, both the parent and the child records are passed
### Example
```js
{
fieldname: "amount",
fieldtype: "Float",
formula: (doc, row) => row.qty * row.rate
}
```
## Sequence
All child tables are executed first and all fields are executed in the sequence as defined in the DocType
## Fetching Values
You can use the `getFrom` function to fetch values from another document
Example:
```
{
"fieldname": "rate",
"label": "Rate",
"fieldtype": "Currency",
formula: (row, doc) => row.rate || doc.getFrom('Item', row.item, 'rate')
}
```
## Async
Forumlas are evaluated as promises, so you can either directly pass a value or a `Promise`