mirror of
https://github.com/frappe/books.git
synced 2026-08-28 10:04:58 -05:00
12 lines
282 B
JavaScript
12 lines
282 B
JavaScript
module.exports = {
|
|
ledgerLink: {
|
|
label: 'Ledger Entries',
|
|
condition: form => form.doc.submitted,
|
|
action: form => {
|
|
form.$router.push({
|
|
path: `/report/general-ledger?referenceType=${form.doc.doctype}&referenceName=${form.doc.name}`
|
|
});
|
|
}
|
|
}
|
|
};
|