Browse Source
[MIG] account_financial_report: Finalize migration to 12.0
[MIG] account_financial_report: Finalize migration to 12.0
* Move back to CSS and FIX NameError: variable @odoo-view-background-color is undefined in - on line 99, column 23: 98 .o_account_financial_reports_page { 99 background-color: @odoo-view-background-color; 100 color: @odoo-main-text-color; * Porting: parent_left does not exist anymore. Using parent_path + account code to sort report lines * FIX js error with date object not converted to string while clicking on initial balance amount See https://user-images.githubusercontent.com/1033131/58337566-5d525c80-7e46-11e9-913a-3c3e0115fb3e.gif * IMP style and metadata * FIX tests about new date format and partner_id computed field of account.move * FIX errors like 2019-06-03 16:11:51,406 17857 ERROR dev_12_account_financial_report odoo.sql_db: bad query: b"\nDELETE FROM 'report_vat_report_tax'\nWHERE COALESCE(\n write_date, create_date, (now() at time zone 'UTC'))::timestamp\n < ((now() at time zone 'UTC') - interval '3600.0 seconds')\n" ERROR: syntax error at or near "'report_vat_report_tax'" LINE 2: DELETE FROM 'report_vat_report_tax' ^ * IMP translation template and IMP Italian translation * Remove useless comments * Use AsIs to avoid SQL injection * Use fields.Date methods * Remove useless data from tests * Improve comments * Fix wizard.multi.charts.accounts * Move _get_partner_ids_domain to abstract wizard * Refactor default partners in wizard to use recordsets * Improve js stylepull/749/head
eLBati
6 years ago
committed by
João Marques
37 changed files with 11238 additions and 10920 deletions
-
12account_financial_report/README.rst
-
1752account_financial_report/i18n/account_financial_report.pot
-
1778account_financial_report/i18n/ar.po
-
1754account_financial_report/i18n/ca.po
-
1784account_financial_report/i18n/de.po
-
1793account_financial_report/i18n/es.po
-
1757account_financial_report/i18n/fr.po
-
1757account_financial_report/i18n/hr_HR.po
-
2232account_financial_report/i18n/it.po
-
1786account_financial_report/i18n/nl.po
-
1756account_financial_report/i18n/nl_NL.po
-
1757account_financial_report/i18n/pt.po
-
1779account_financial_report/i18n/ro.po
-
49account_financial_report/menuitems.xml
-
2account_financial_report/readme/CONTRIBUTORS.rst
-
15account_financial_report/report/abstract_report.py
-
5account_financial_report/report/abstract_report_xlsx.py
-
3account_financial_report/report/general_ledger.py
-
3account_financial_report/report/journal_ledger.py
-
94account_financial_report/report/open_items.py
-
12account_financial_report/report/templates/general_ledger.xml
-
58account_financial_report/report/templates/trial_balance.xml
-
13account_financial_report/report/trial_balance.py
-
8account_financial_report/static/description/index.html
-
2account_financial_report/static/src/css/report.css
-
43account_financial_report/static/src/js/account_financial_report_backend.js
-
27account_financial_report/tests/test_general_ledger.py
-
2account_financial_report/tests/test_journal_ledger.py
-
7account_financial_report/tests/test_trial_balance.py
-
17account_financial_report/tests/test_vat_report.py
-
3account_financial_report/view/report_template.xml
-
1account_financial_report/wizard/__init__.py
-
32account_financial_report/wizard/abstract_wizard.py
-
7account_financial_report/wizard/aged_partner_balance_wizard.py
-
25account_financial_report/wizard/general_ledger_wizard.py
-
20account_financial_report/wizard/open_items_wizard.py
-
13account_financial_report/wizard/trial_balance_wizard.py
1752
account_financial_report/i18n/account_financial_report.pot
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1778
account_financial_report/i18n/ar.po
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1754
account_financial_report/i18n/ca.po
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1784
account_financial_report/i18n/de.po
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1793
account_financial_report/i18n/es.po
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1757
account_financial_report/i18n/fr.po
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1757
account_financial_report/i18n/hr_HR.po
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
2232
account_financial_report/i18n/it.po
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1786
account_financial_report/i18n/nl.po
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1756
account_financial_report/i18n/nl_NL.po
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1757
account_financial_report/i18n/pt.po
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1779
account_financial_report/i18n/ro.po
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,32 @@ |
|||
# Copyright 2019 Lorenzo Battistini @ TAKOBI |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from odoo import models |
|||
|
|||
|
|||
class AbstractWizard(models.AbstractModel): |
|||
_name = 'account_financial_report_abstract_wizard' |
|||
_description = 'Abstract Wizard' |
|||
|
|||
def _get_partner_ids_domain(self): |
|||
return [ |
|||
'&', |
|||
'|', |
|||
('company_id', '=', self.company_id.id), |
|||
('company_id', '=', False), |
|||
'|', |
|||
('parent_id', '=', False), |
|||
('is_company', '=', True), |
|||
] |
|||
|
|||
def _default_partners(self): |
|||
context = self.env.context |
|||
if ( |
|||
context.get('active_ids') and |
|||
context.get('active_model') == 'res.partner' |
|||
): |
|||
partners = self.env['res.partner'].browse(context['active_ids']) |
|||
corp_partners = partners.filtered('parent_id') |
|||
partners -= corp_partners |
|||
partners |= corp_partners.mapped('commercial_partner_id') |
|||
return partners.ids |
Write
Preview
Loading…
Cancel
Save
Reference in new issue