mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-18 07:22:03 +02:00
26 lines
806 B
JavaScript
26 lines
806 B
JavaScript
/** @odoo-module **/
|
|
import { getOdooFunctions } from "@spreadsheet/helpers/odoo_functions_helpers";
|
|
|
|
/** @typedef {import("@spreadsheet/helpers/odoo_functions_helpers").OdooFunctionDescription} OdooFunctionDescription*/
|
|
|
|
/**
|
|
* @param {string} formula
|
|
* @returns {number}
|
|
*/
|
|
export function getNumberOfAccountFormulas(formula) {
|
|
return getOdooFunctions(formula, ["ODOO.BALANCE", "ODOO.CREDIT", "ODOO.DEBIT"]).filter(
|
|
(fn) => fn.isMatched
|
|
).length;
|
|
}
|
|
|
|
/**
|
|
* Get the first Account function description of the given formula.
|
|
*
|
|
* @param {string} formula
|
|
* @returns {OdooFunctionDescription | undefined}
|
|
*/
|
|
export function getFirstAccountFunction(formula) {
|
|
return getOdooFunctions(formula, ["ODOO.BALANCE", "ODOO.CREDIT", "ODOO.DEBIT"]).find(
|
|
(fn) => fn.isMatched
|
|
);
|
|
}
|