-
-
Notifications
You must be signed in to change notification settings - Fork 617
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[16.0][mig] mis_builder_cash_flow #1046
Conversation
For mis_builder to compute correctly bale we need accounts with user type include_initial_balance. We use receivable type which is the more accurate for this purpose
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-mis_builder_cash_flow/
Currently translated at 100.0% (52 of 52 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-mis_builder_cash_flow/pt/
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: account-financial-reporting-13.0/account-financial-reporting-13.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-13-0/account-financial-reporting-13-0-mis_builder_cash_flow/
Currently translated at 100.0% (53 of 53 strings) Translation: account-financial-reporting-13.0/account-financial-reporting-13.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-13-0/account-financial-reporting-13-0-mis_builder_cash_flow/es_AR/
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: account-financial-reporting-13.0/account-financial-reporting-13.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-13-0/account-financial-reporting-13-0-mis_builder_cash_flow/
Currently translated at 37.7% (20 of 53 strings) Translation: account-financial-reporting-13.0/account-financial-reporting-13.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-13-0/account-financial-reporting-13-0-mis_builder_cash_flow/nl/
Currently translated at 81.1% (43 of 53 strings) Translation: account-financial-reporting-13.0/account-financial-reporting-13.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-13-0/account-financial-reporting-13-0-mis_builder_cash_flow/es/
- On v13, invoices are journal entries, so we have to explicitly exclude cancelled invoices from the expression. We leave draft ones, as they are good for forecasting. - Default value for the company of the forecast line doesn't follow new specification, putting an incorrect value. - Extra improvement: avoid a non needed casting of the fixed column type.
"Target Moves" option in MIS report instance was previously ignored. Now it's taken into account, but still excluding cancelled entries.
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: account-financial-reporting-13.0/account-financial-reporting-13.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-13-0/account-financial-reporting-13-0-mis_builder_cash_flow/
Currently translated at 100.0% (55 of 55 strings) Translation: account-financial-reporting-13.0/account-financial-reporting-13.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-13-0/account-financial-reporting-13-0-mis_builder_cash_flow/es_AR/
Currently translated at 100.0% (55 of 55 strings) Translation: account-financial-reporting-14.0/account-financial-reporting-14.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-14-0/account-financial-reporting-14-0-mis_builder_cash_flow/it/
Currently translated at 100.0% (55 of 55 strings) Translation: account-financial-reporting-15.0/account-financial-reporting-15.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-15-0/account-financial-reporting-15-0-mis_builder_cash_flow/es/
/ocabot migration mis_builder_cash_flow |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why use account_internal_type and not account_type in the related field?
account_internal_type = fields.Selection(
related="account_id.account_type", readonly=True
)
and change also in mis_builder_cash_flow/data/mis_report.xml from account_internal_type to account_type
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in data/mis_report.xml
('account_internal_type', '=', 'liquidity') -> ('account_type', '=', 'asset_cash')
('account_internal_type', '=', 'receivable') -> ('account_type', '=', 'asset_receivable')
('account_internal_type', '=', 'payable') -> ('account_type', '=', 'liability_payable')
Superseded by #1049 |
No description provided.