mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
15 lines
344 B
JavaScript
15 lines
344 B
JavaScript
const frappe = require('frappejs');
|
|
const registerReportMethods = require('../reports');
|
|
|
|
module.exports = function registerServerMethods() {
|
|
registerReportMethods();
|
|
|
|
frappe.registerMethod({
|
|
method: 'import-coa',
|
|
async handler() {
|
|
const importCOA = require('../accounting/importCOA');
|
|
await importCOA();
|
|
}
|
|
});
|
|
};
|