You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Note: Business Odoo module can add "business functions".
66
+
This is currently the case for the accounting module, which adds the following features:
67
+
68
+
* ``ODOO.CREDIT(account_codes, date_range)``: Get the total credit for the specified account(s) and period.
69
+
* ``ODOO.DEBIT(account_codes, date_range)``: Get the total debit for the specified account(s) and period.
70
+
* ``ODOO.BALANCE(account_codes, date_range)``: Get the total balance for the specified account(s) and period.
71
+
* ``ODOO.FISCALYEAR.START(day)``: Returns the starting date of the fiscal year encompassing the provided date.
72
+
* ``ODOO.FISCALYEAR.END(day)``: Returns the ending date of the fiscal year encompassing the provided date.
73
+
* ``ODOO.ACCOUNT.GROUP(type)``: Returns the account ids of a given group where type should be a value of the ``account_type`` field of ``account.account`` model.
74
+
(``income``, ``asset_receivable``, etc.)
75
+
76
+
**Create a new dynamic spreadsheet from pivot**
77
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
78
+
* Go to any pivot
79
+
* Press on insert button
80
+
* Select the dynamic rows or dynamic columns option and set a number of rows/columns
81
+
82
+
A new table that will be updated with the actual or filtered values will be added.
83
+
84
+
* Note: When a pivot has multiple levels of aggrupations in the rows or the columns,
85
+
the number of rows/columns selected will be transfered to each level.
0 commit comments