[IMP] All accounts are for all reports
parent
c53093a170
commit
0787f3f0c3
|
@ -443,6 +443,17 @@ class account_balance(report_sxw.rml_parse):
|
||||||
[('id', 'in', [i[0] for i in account_ids]),
|
[('id', 'in', [i[0] for i in account_ids]),
|
||||||
('type', 'not in',
|
('type', 'not in',
|
||||||
('view', 'consolidation'))]))
|
('view', 'consolidation'))]))
|
||||||
|
|
||||||
|
account_not_black_ids = account_obj.search(self.cr, self.uid, ([('id', 'in', [
|
||||||
|
i[0] for i in account_ids]), ('type', 'in', ('view', 'consolidation'))]))
|
||||||
|
|
||||||
|
#This could be done quickly with a sql sentence
|
||||||
|
account_not_black = account_obj.browse(
|
||||||
|
self.cr, self.uid, account_not_black_ids, ctx_to_use)
|
||||||
|
account_not_black.sort(key=lambda x: x.level)
|
||||||
|
account_not_black.reverse()
|
||||||
|
account_not_black_ids = [i.id for i in account_not_black]
|
||||||
|
|
||||||
all_account_period = {} # todas las cuentas por periodo
|
all_account_period = {} # todas las cuentas por periodo
|
||||||
if form['columns'] == 'thirteen':
|
if form['columns'] == 'thirteen':
|
||||||
for p_act in range(0, 13):
|
for p_act in range(0, 13):
|
||||||
|
@ -465,14 +476,6 @@ class account_balance(report_sxw.rml_parse):
|
||||||
account_black_init = account_obj.browse(
|
account_black_init = account_obj.browse(
|
||||||
self.cr, self.uid, account_black_ids, ctx_i)
|
self.cr, self.uid, account_black_ids, ctx_i)
|
||||||
|
|
||||||
account_not_black_ids = account_obj.search(self.cr, self.uid, ([('id', 'in', [
|
|
||||||
i[0] for i in account_ids]), ('type', 'in', ('view', 'consolidation'))]))
|
|
||||||
account_not_black = account_obj.browse(
|
|
||||||
self.cr, self.uid, account_not_black_ids, ctx_to_use)
|
|
||||||
account_not_black.sort(key=lambda x: x.level)
|
|
||||||
account_not_black.reverse()
|
|
||||||
account_not_black_ids = [i.id for i in account_not_black]
|
|
||||||
|
|
||||||
#~ Negros
|
#~ Negros
|
||||||
dict_black = {}
|
dict_black = {}
|
||||||
for i in account_black:
|
for i in account_black:
|
||||||
|
|
Loading…
Reference in New Issue