show init balance, delete init credit, debit

pull/367/head
Leonardo Pistone 2016-06-07 14:16:35 +02:00 committed by Jordi Ballester
parent 9a7e6d43ec
commit 330abb71ae
2 changed files with 2 additions and 4 deletions

View File

@ -8,8 +8,6 @@ WITH view_q as (
ml.ref, ml.ref,
ml.journal_id, ml.journal_id,
ml.partner_id, ml.partner_id,
SUM(debit) OVER w_account - debit AS init_debit,
SUM(credit) OVER w_account - credit AS init_credit,
SUM(debit - credit) OVER w_account - (debit - credit) AS init_balance, SUM(debit - credit) OVER w_account - (debit - credit) AS init_balance,
SUM(debit - credit) OVER w_account AS cumul_balance SUM(debit - credit) OVER w_account AS cumul_balance
FROM account_account AS acc FROM account_account AS acc
@ -32,6 +30,7 @@ INSERT INTO ledger_report_wizard_line (
ref, ref,
label, label,
--counterpart --counterpart
init_balance,
debit, debit,
credit, credit,
cumul_balance, cumul_balance,
@ -46,6 +45,7 @@ SELECT
ref, ref,
' TODO label ' AS label, ' TODO label ' AS label,
--counterpart --counterpart
init_balance,
debit, debit,
credit, credit,
cumul_balance, cumul_balance,

View File

@ -177,8 +177,6 @@ class LedgerReportWizardLine(models.TransientModel):
cumul_debit = fields.Float() cumul_debit = fields.Float()
cumul_balance = fields.Float() cumul_balance = fields.Float()
init_credit = fields.Float()
init_debit = fields.Float()
init_balance = fields.Float() init_balance = fields.Float()
move_name = fields.Char() move_name = fields.Char()