Browse Source
Merge pull request #516 from etobella/11.0-fix-activity_statneemt
[FIX] customer_activity_statement: reference table on the query
pull/524/head
Jordi Ballester Alomar
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
5 additions and
4 deletions
-
customer_activity_statement/__manifest__.py
-
customer_activity_statement/report/customer_activity_statement.py
|
@ -4,7 +4,7 @@ |
|
|
|
|
|
|
|
|
{ |
|
|
{ |
|
|
'name': 'Partner Activity Statement', |
|
|
'name': 'Partner Activity Statement', |
|
|
'version': '11.0.2.1.0', |
|
|
|
|
|
|
|
|
'version': '11.0.2.1.1', |
|
|
'category': 'Accounting & Finance', |
|
|
'category': 'Accounting & Finance', |
|
|
'summary': 'OCA Financial Reports', |
|
|
'summary': 'OCA Financial Reports', |
|
|
'author': "Eficent, Odoo Community Association (OCA)", |
|
|
'author': "Eficent, Odoo Community Association (OCA)", |
|
|
|
@ -92,8 +92,9 @@ class CustomerActivityStatement(models.AbstractModel): |
|
|
|
|
|
|
|
|
def _display_lines_sql_q2(self, company_id): |
|
|
def _display_lines_sql_q2(self, company_id): |
|
|
return """ |
|
|
return """ |
|
|
SELECT Q1.partner_id, move_id, date, date_maturity, Q1.name, ref, |
|
|
|
|
|
debit, credit, debit-credit as amount, blocked, |
|
|
|
|
|
|
|
|
SELECT Q1.partner_id, Q1.move_id, Q1.date, Q1.date_maturity, |
|
|
|
|
|
Q1.name, Q1.ref, Q1.debit, Q1.credit, |
|
|
|
|
|
Q1.debit-Q1.credit as amount, Q1.blocked, |
|
|
COALESCE(Q1.currency_id, c.currency_id) AS currency_id |
|
|
COALESCE(Q1.currency_id, c.currency_id) AS currency_id |
|
|
FROM Q1 |
|
|
FROM Q1 |
|
|
JOIN res_company c ON (c.id = Q1.company_id) |
|
|
JOIN res_company c ON (c.id = Q1.company_id) |
|
|