21 lines
725 B
JavaScript
21 lines
725 B
JavaScript
/** @odoo-module */
|
|
|
|
import { registry } from "@web/core/registry";
|
|
|
|
registry
|
|
.category("mock_server")
|
|
.add("account.account/spreadsheet_fetch_debit_credit", function (route, args) {
|
|
return new Array(args.args[0].length).fill({ credit: 0, debit: 0 });
|
|
})
|
|
.add("account.account/get_account_group", function (route, args, performRPC) {
|
|
const accountTypes = args.args[0];
|
|
const data = accountTypes.map((accountType) => {
|
|
const records = this.mockSearchRead("account.account", [
|
|
[["account_type", "=", accountType]],
|
|
["code"],
|
|
], {});
|
|
return records.map((record) => record.code);
|
|
});
|
|
return data;
|
|
});
|