mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
33 lines
905 B
JavaScript
33 lines
905 B
JavaScript
const frappe = require('frappejs');
|
|
const registerReportMethods = require('../reports');
|
|
const sender = require('../email/sender');
|
|
|
|
module.exports = function registerServerMethods() {
|
|
registerReportMethods();
|
|
|
|
frappe.registerMethod({
|
|
method: 'send-mail',
|
|
handler: sender.sendMail
|
|
});
|
|
|
|
frappe.registerMethod({
|
|
method: 'import-coa',
|
|
async handler() {
|
|
const importCOA = require('../models/doctype/Account/importCOA');
|
|
await importCOA();
|
|
}
|
|
});
|
|
|
|
frappe.registerMethod({
|
|
method: 'print-pdf',
|
|
handler({doctype, name, html}) {
|
|
if (frappe.isElectron) {
|
|
const path = require('path');
|
|
const { getPDFForElectron } = require('frappejs/server/pdf');
|
|
const { getSettings } = require('../electron/settings');
|
|
const destination = path.resolve('.')
|
|
getPDFForElectron(doctype, name, destination, html);
|
|
}
|
|
}
|
|
})
|
|
} |